(0.1ms) DROP TABLE IF EXISTS "users"  (0.1ms) SELECT sqlite_version(*)  (1.0ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES (20190815114303)  (1.1ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2019-08-24 17:28:15.770709"], ["updated_at", "2019-08-24 17:28:15.770709"]]  (0.6ms) commit transaction ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 12:31:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.1ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) DROP TABLE IF EXISTS "users"  (0.0ms) SELECT sqlite_version(*)  (1.1ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar DEFAULT 'email' NOT NULL, "uid" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "allow_password_change" boolean DEFAULT 0, "remember_created_at" datetime, "confirmation_token" varchar, "confirmed_at" datetime, "confirmation_sent_at" datetime, "unconfirmed_email" varchar, "failed_attempts" integer DEFAULT 0 NOT NULL, "unlock_token" varchar, "locked_at" datetime, "name" varchar, "email" varchar, "tokens" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.8ms) CREATE UNIQUE INDEX "index_users_on_confirmation_token" ON "users" ("confirmation_token")  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.7ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.7ms) CREATE UNIQUE INDEX "index_users_on_uid_and_provider" ON "users" ("uid", "provider")  (0.9ms) CREATE UNIQUE INDEX "index_users_on_unlock_token" ON "users" ("unlock_token")  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815114303)  (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2019-08-24 20:09:47.462051"], ["updated_at", "2019-08-24 20:09:47.462051"]]  (0.6ms) commit transaction ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "codyprice@zboncak.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "codyprice@zboncak.org"], ["encrypted_password", "$2a$04$Tub9RelAk6CrrUQ7oA2nWOpfli9bBHiuv5Fj8zSbJ0z9rum8kBzlu"], ["confirmation_token", "shfsK6ZfszisqbTVuiGy"], ["confirmation_sent_at", "2019-08-24 20:09:48.147551"], ["email", "codyprice@zboncak.org"], ["created_at", "2019-08-24 20:09:48.147431"], ["updated_at", "2019-08-24 20:09:48.147431"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kristaltoy@dickimcclure.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kristaltoy@dickimcclure.biz"], ["encrypted_password", "$2a$04$vC1gRmYfeGuvgd1nsOzzLedhUQQ7kKCdqahWsyQywbFfEi/D81KOa"], ["confirmation_token", "ybRE4Vz27yscRhQJWdcb"], ["confirmation_sent_at", "2019-08-24 20:14:29.159504"], ["email", "kristaltoy@dickimcclure.biz"], ["created_at", "2019-08-24 20:14:29.159389"], ["updated_at", "2019-08-24 20:14:29.159389"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nH0WAItH4PIQKHYy3QqMYQ\":{\"token\":\"$2a$04$whOBfjMFTGKI/0LIOU8bgur74teAc3kqCqnWqokqMwdDwH2O9n2Ja\",\"expiry\":1567887269,\"updated_at\":\"2019-08-24 20:14:29 UTC\"}}"], ["updated_at", "2019-08-24 20:14:29.162272"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 15:14:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kristaltoy@dickimcclure.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 24ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.8ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rey@gradyohara.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rey@gradyohara.co"], ["encrypted_password", "$2a$04$gtZVihcnQ32tWhJLoXGT1uNAm5zaDu9LOc86W2TOzAfIVp.yHwcgu"], ["confirmation_token", "zaB13nDNC-A_AeiVqgMc"], ["confirmation_sent_at", "2019-08-24 20:30:19.101512"], ["email", "rey@gradyohara.co"], ["created_at", "2019-08-24 20:30:19.101393"], ["updated_at", "2019-08-24 20:30:19.101393"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 15:30:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"rey@gradyohara.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rey@gradyohara.co"], ["LIMIT", 1]] Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "toby@connellylarson.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "toby@connellylarson.info"], ["encrypted_password", "$2a$04$NDilIDhOSpSiD8ZkezOiF.SLBSyHcbfJzGQQ.ptg8/LuNT8JUquKi"], ["confirmation_token", "UfJRQmKKgNnQyiC4ZfCs"], ["confirmation_sent_at", "2019-08-24 20:31:02.798525"], ["email", "toby@connellylarson.info"], ["created_at", "2019-08-24 20:31:02.798412"], ["updated_at", "2019-08-24 20:31:02.798412"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 15:31:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"toby@connellylarson.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "toby@connellylarson.info"], ["LIMIT", 1]] Completed 200 OK in 43ms (Views: 2.9ms | ActiveRecord: 0.2ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "winnifred@sanford.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "winnifred@sanford.info"], ["encrypted_password", "$2a$04$tzcAwLE2aoypxHlvceRoduHx.6n4HQ/BSPcWbhUJpBLV92SCyk2Le"], ["confirmed_at", "2019-08-24 20:31:28.620931"], ["email", "winnifred@sanford.info"], ["created_at", "2019-08-24 20:31:28.622841"], ["updated_at", "2019-08-24 20:31:28.622841"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 15:31:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"winnifred@sanford.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "winnifred@sanford.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CcDcBz6Xd3E3pH-AaTkyUw\":{\"token\":\"$2a$04$9Ald2GdKy1IFzmQBbrL8b.Z2zIlO6B861wjQqupJFfBhsJS0z.1d6\",\"expiry\":1567888288,\"updated_at\":\"2019-08-24 20:31:28 UTC\"}}"], ["updated_at", "2019-08-24 20:31:28.643362"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "theodorewalker@schiller.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "theodorewalker@schiller.biz"], ["encrypted_password", "$2a$04$nc.rOarTLdAJ/rHkEn/pO.ZkwvmqDwVHyFeFGUjuAYe1jebBZNeCK"], ["confirmed_at", "2019-08-24 20:34:32.551223"], ["email", "theodorewalker@schiller.biz"], ["created_at", "2019-08-24 20:34:32.553216"], ["updated_at", "2019-08-24 20:34:32.553216"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 15:34:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"theodorewalker@schiller.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "theodorewalker@schiller.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"JaqE-wxz6ccP71J7Tl8eLA\":{\"token\":\"$2a$04$/NN/Jecz39q2JO7hDDjvweznyAldH9MMOHL.d6LJT1twS0x.EAgda\",\"expiry\":1567888472,\"updated_at\":\"2019-08-24 20:34:32 UTC\"}}"], ["updated_at", "2019-08-24 20:34:32.576422"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.1ms) DROP TABLE IF EXISTS "users"  (0.1ms) SELECT sqlite_version(*)  (1.2ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar DEFAULT 'email' NOT NULL, "uid" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "allow_password_change" boolean DEFAULT 0, "remember_created_at" datetime, "confirmation_token" varchar, "confirmed_at" datetime, "confirmation_sent_at" datetime, "unconfirmed_email" varchar, "failed_attempts" integer DEFAULT 0 NOT NULL, "unlock_token" varchar, "locked_at" datetime, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "last_sign_in_ip" varchar, "sign_in_count" integer, "name" varchar, "email" varchar, "tokens" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.7ms) CREATE UNIQUE INDEX "index_users_on_confirmation_token" ON "users" ("confirmation_token")  (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.7ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.6ms) CREATE UNIQUE INDEX "index_users_on_uid_and_provider" ON "users" ("uid", "provider")  (0.7ms) CREATE UNIQUE INDEX "index_users_on_unlock_token" ON "users" ("unlock_token")  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (20190815114303)  (0.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2019-08-24 20:41:05.042214"], ["updated_at", "2019-08-24 20:41:05.042214"]]  (0.6ms) commit transaction ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kerryschmitt@harris.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "kerryschmitt@harris.info"], ["encrypted_password", "$2a$04$LY8KJccbkTWIG/cQsFGQ/.uEuQe4.hCOB959oVqMkC5aXoalf81km"], ["confirmed_at", "2019-08-24 20:41:05.808897"], ["email", "kerryschmitt@harris.info"], ["created_at", "2019-08-24 20:41:05.811022"], ["updated_at", "2019-08-24 20:41:05.811022"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 15:41:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kerryschmitt@harris.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kerryschmitt@harris.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kus0sC5GoB7Y64sPHNqGMw\":{\"token\":\"$2a$04$YXXuOJe/v6oQwgDCwrCW0u/F7hdwJ.KQ5H.6YAV7AzLK4XBf3JVo2\",\"expiry\":1567888865,\"updated_at\":\"2019-08-24 20:41:05 UTC\"}}"], ["updated_at", "2019-08-24 20:41:05.836730"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.4ms)  (0.3ms) rollback transaction  (0.1ms) DROP TABLE IF EXISTS "users"  (0.1ms) SELECT sqlite_version(*)  (1.2ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar DEFAULT 'email' NOT NULL, "uid" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "allow_password_change" boolean DEFAULT 0, "remember_created_at" datetime, "confirmation_token" varchar, "confirmed_at" datetime, "confirmation_sent_at" datetime, "unconfirmed_email" varchar, "failed_attempts" integer DEFAULT 0 NOT NULL, "unlock_token" varchar, "locked_at" datetime, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "last_sign_in_ip" varchar, "current_sign_in_ip" varchar, "sign_in_count" integer, "name" varchar, "email" varchar, "tokens" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.8ms) CREATE UNIQUE INDEX "index_users_on_confirmation_token" ON "users" ("confirmation_token")  (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.6ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.7ms) CREATE UNIQUE INDEX "index_users_on_uid_and_provider" ON "users" ("uid", "provider")  (0.6ms) CREATE UNIQUE INDEX "index_users_on_unlock_token" ON "users" ("unlock_token")  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815114303)  (0.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2019-08-24 20:42:21.192128"], ["updated_at", "2019-08-24 20:42:21.192128"]]  (0.6ms) commit transaction ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "will@glover.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "will@glover.info"], ["encrypted_password", "$2a$04$egMVdl62s6/xlEcFqsXpJu3stDltRJVK0V2wCIgohJfTFijKf.ep6"], ["confirmed_at", "2019-08-24 20:42:21.928666"], ["email", "will@glover.info"], ["created_at", "2019-08-24 20:42:21.930855"], ["updated_at", "2019-08-24 20:42:21.930855"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 15:42:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"will@glover.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "will@glover.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OSX7q4GxcHFJuarPki8fGg\":{\"token\":\"$2a$04$OFy8i6x3ZJGCG5JbiJVMRez3xIo0xjLPk28HX67Zhs2tpcuvFOuve\",\"expiry\":1567888941,\"updated_at\":\"2019-08-24 20:42:21 UTC\"}}"], ["updated_at", "2019-08-24 20:42:21.957538"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 20:42:21.958668"], ["last_sign_in_at", "2019-08-24 20:42:21.958668"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 20:42:21.958987"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 0.5ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gary@quigley.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "gary@quigley.org"], ["encrypted_password", "$2a$04$s2xf5VUVH6/2AjsKm9Y92ehtJiYK9GPf1CtyYky9IZeP/x.eNLuDC"], ["confirmed_at", "2019-08-24 20:42:47.810483"], ["email", "gary@quigley.org"], ["created_at", "2019-08-24 20:42:47.812513"], ["updated_at", "2019-08-24 20:42:47.812513"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 15:42:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"gary@quigley.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gary@quigley.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"FwLVndU0h5M09YyHzbyPpg\":{\"token\":\"$2a$04$jNSMQoaivKopwkRgOJprK.JE0Aa54uQeaXs7KFMz.CckVOW6vR2pu\",\"expiry\":1567888967,\"updated_at\":\"2019-08-24 20:42:47 UTC\"}}"], ["updated_at", "2019-08-24 20:42:47.838287"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 20:42:47.839403"], ["last_sign_in_at", "2019-08-24 20:42:47.839403"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 20:42:47.839728"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeniffer@murazikhane.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jeniffer@murazikhane.org"], ["encrypted_password", "$2a$04$nxqqSapoYkZHeb9gFEg0/OxfD.Jd29oeukdC.3swliwe94edEV6ou"], ["confirmed_at", "2019-08-24 20:43:07.935569"], ["email", "jeniffer@murazikhane.org"], ["created_at", "2019-08-24 20:43:07.937765"], ["updated_at", "2019-08-24 20:43:07.937765"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 15:43:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jeniffer@murazikhane.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jeniffer@murazikhane.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NubmMMmD5Q52BHZRE9hePw\":{\"token\":\"$2a$04$ahm8eEWrtabFRc1O3lRrCOXPJHGnfxPzhKqBTNyXEAtJZ77FVKtC6\",\"expiry\":1567888987,\"updated_at\":\"2019-08-24 20:43:07 UTC\"}}"], ["updated_at", "2019-08-24 20:43:07.965432"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 20:43:07.966497"], ["last_sign_in_at", "2019-08-24 20:43:07.966497"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 20:43:07.966829"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 16ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gayla@feeney.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "gayla@feeney.biz"], ["encrypted_password", "$2a$04$FrOXDQZEG3DZbsHuTxKJNehr6In6QmcerRo/Hi8wiYYDcHCWshGE."], ["confirmed_at", "2019-08-24 20:47:55.836654"], ["email", "gayla@feeney.biz"], ["created_at", "2019-08-24 20:47:55.838634"], ["updated_at", "2019-08-24 20:47:55.838634"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 15:47:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"gayla@feeney.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gayla@feeney.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EjIEjnPK2ZTgIaLwjxhezQ\":{\"token\":\"$2a$04$Ocq.6rL24tFw8fbmOzNJ4.MET2bYWta2MEnuY1xpWehnQ.5ayD/XO\",\"expiry\":1567889275,\"updated_at\":\"2019-08-24 20:47:55 UTC\"}}"], ["updated_at", "2019-08-24 20:47:55.865667"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 20:47:55.866919"], ["last_sign_in_at", "2019-08-24 20:47:55.866919"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 20:47:55.867264"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 16ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lakendradietrich@huelspagac.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "lakendradietrich@huelspagac.io"], ["encrypted_password", "$2a$04$WneMNP3yw8TGnLK.IrSqFOCsWt5PmO1an3H23Yoz22n4Cw1.YCaPm"], ["confirmed_at", "2019-08-24 20:52:39.383570"], ["email", "lakendradietrich@huelspagac.io"], ["created_at", "2019-08-24 20:52:39.385498"], ["updated_at", "2019-08-24 20:52:39.385498"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 15:52:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lakendradietrich@huelspagac.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lakendradietrich@huelspagac.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"cCv4W-219bYJoCstC-OOIA\":{\"token\":\"$2a$04$dSxe3H7lky6O8eFdqlkRS.ij/RAxlcIZj71hoJpCu3aoUcHQHBNaS\",\"expiry\":1567889559,\"updated_at\":\"2019-08-24 20:52:39 UTC\"}}"], ["updated_at", "2019-08-24 20:52:39.411100"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 20:52:39.412364"], ["last_sign_in_at", "2019-08-24 20:52:39.412364"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 20:52:39.412727"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.5ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "catricetorphy@bergstrom.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "catricetorphy@bergstrom.io"], ["encrypted_password", "$2a$04$VX7syL0JXXjctYrBzSmNsua9uXCpTS6Ora6SKSrQjJMVLJyaQneQC"], ["confirmed_at", "2019-08-24 20:53:53.385646"], ["email", "catricetorphy@bergstrom.io"], ["created_at", "2019-08-24 20:53:53.387916"], ["updated_at", "2019-08-24 20:53:53.387916"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 15:53:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"catricetorphy@bergstrom.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "catricetorphy@bergstrom.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"oOiczr2AN5NU6QMXpJb_Pw\":{\"token\":\"$2a$04$YxUzIOc/NYaKBTmTOGkYx.A7a8u/xijLyAga5/Jbj90K3dhxr0n.q\",\"expiry\":1567889633,\"updated_at\":\"2019-08-24 20:53:53 UTC\"}}"], ["updated_at", "2019-08-24 20:53:53.414154"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 20:53:53.415253"], ["last_sign_in_at", "2019-08-24 20:53:53.415253"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 20:53:53.415592"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gregg@faheylowe.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "gregg@faheylowe.name"], ["encrypted_password", "$2a$04$aXu7oRTiM8bHDYyWbotxruSAfkyiMcQPgIGOd525bUJguUULbC9Ly"], ["confirmed_at", "2019-08-24 20:55:11.020160"], ["email", "gregg@faheylowe.name"], ["created_at", "2019-08-24 20:55:11.022476"], ["updated_at", "2019-08-24 20:55:11.022476"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 15:55:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"gregg@faheylowe.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gregg@faheylowe.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 20:55:11.048390"], ["last_sign_in_at", "2019-08-24 20:55:11.048390"], ["current_sign_in_ip", "127.0.0.1"], ["last_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 20:55:11.048836"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nona@jacobs.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "nona@jacobs.co"], ["encrypted_password", "$2a$04$rEUyD/64zrQgrO2KXjY64eecfVMdVuNJPNxnGNQhzPGK0vLFVnBBW"], ["confirmed_at", "2019-08-24 20:55:23.593134"], ["email", "nona@jacobs.co"], ["created_at", "2019-08-24 20:55:23.595432"], ["updated_at", "2019-08-24 20:55:23.595432"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 15:55:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"nona@jacobs.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nona@jacobs.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nQuEQI6rcZk0pN4iN7fJbg\":{\"token\":\"$2a$04$PuM8QA3AV9BRAtusymNjR.4LFh2MiFg7U5thoQv3uO5o/1v0wAhdG\",\"expiry\":1567889723,\"updated_at\":\"2019-08-24 20:55:23 UTC\"}}"], ["updated_at", "2019-08-24 20:55:23.628168"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 20:55:23.629423"], ["last_sign_in_at", "2019-08-24 20:55:23.629423"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 20:55:23.629809"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 18ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "phylis@nolan.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "phylis@nolan.info"], ["encrypted_password", "$2a$04$hbXD38Pwk/JB0KqQPGo3Refu1qrsMGB3xHc1tzRFU1/9sr5FDe3Qm"], ["confirmed_at", "2019-08-24 21:07:49.871416"], ["email", "phylis@nolan.info"], ["created_at", "2019-08-24 21:07:49.873302"], ["updated_at", "2019-08-24 21:07:49.873302"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:07:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"phylis@nolan.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "phylis@nolan.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mOxp6SabsuUEImyWzveM5g\":{\"token\":\"$2a$04$qd56m3ZRAOH44WRDIGyTv.EUfNMb0lftxLPCvgn6AEQRDMkTpPdyG\",\"expiry\":1567890469,\"updated_at\":\"2019-08-24 21:07:49 UTC\"}}"], ["updated_at", "2019-08-24 21:07:49.898459"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:07:49.899561"], ["last_sign_in_at", "2019-08-24 21:07:49.899561"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:07:49.900096"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ashleyboehm@nolanturcotte.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ashleyboehm@nolanturcotte.name"], ["encrypted_password", "$2a$04$tDvecilElyw5wYthQqd5Ke7azH5..jTydgP2eZm803XViti0UNBnq"], ["confirmation_token", "xxhy1WdWJ7PKcMNbFmti"], ["confirmation_sent_at", "2019-08-24 21:07:49.909969"], ["email", "ashleyboehm@nolanturcotte.name"], ["created_at", "2019-08-24 21:07:49.909845"], ["updated_at", "2019-08-24 21:07:49.909845"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:07:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ashleyboehm@nolanturcotte.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ashleyboehm@nolanturcotte.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hellenschultz@gaylord.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "hellenschultz@gaylord.info"], ["encrypted_password", "$2a$04$tsUhv7yDKQ1.rfWpoGiDY.cGlsYrACUKuK7nSA.V7ZpcdZ.sOTtbG"], ["confirmed_at", "2019-08-24 21:19:21.236029"], ["email", "hellenschultz@gaylord.info"], ["created_at", "2019-08-24 21:19:21.239219"], ["updated_at", "2019-08-24 21:19:21.239219"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:19:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"hellenschultz@gaylord.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hellenschultz@gaylord.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"UNjsHab5zzU7h_0qbmOjmw\":{\"token\":\"$2a$04$y7rYUZQ9rp6fBSOBZS5IzOGXS92C3Vcg190PxmGMSYwZZRUpMGhpe\",\"expiry\":1567891161,\"updated_at\":\"2019-08-24 21:19:21 UTC\"}}"], ["updated_at", "2019-08-24 21:19:21.273431"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:19:21.274875"], ["last_sign_in_at", "2019-08-24 21:19:21.274875"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:19:21.275267"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 19ms (Views: 0.3ms | ActiveRecord: 0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "enda@graham.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "enda@graham.io"], ["encrypted_password", "$2a$04$JNjOGoLLfZxycISkPTVAqe5IMJ1POp8n1qxKImG6ex/pRElhKHJ2u"], ["confirmation_token", "WzxDZRBzfm4Lr3xFASzd"], ["confirmation_sent_at", "2019-08-24 21:19:21.287069"], ["email", "enda@graham.io"], ["created_at", "2019-08-24 21:19:21.286948"], ["updated_at", "2019-08-24 21:19:21.286948"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:19:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"enda@graham.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "enda@graham.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "geriullrich@lowe.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "geriullrich@lowe.net"], ["encrypted_password", "$2a$04$d5ARGJSH1wwhUnFGlvbwlOE5murZuHEA6Pm2x/r3Dc5ZMCfaHUcMq"], ["confirmed_at", "2019-08-24 21:19:21.297889"], ["locked_at", "2019-08-24 21:19:21.297912"], ["email", "geriullrich@lowe.net"], ["created_at", "2019-08-24 21:19:21.299237"], ["updated_at", "2019-08-24 21:19:21.299237"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:19:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"geriullrich@lowe.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "geriullrich@lowe.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"A3ES6eMBKLoBdjJd_5yZsw\":{\"token\":\"$2a$04$Qse1gaaWPcl4DmniMRumFe8.lNyZiTLnir9chJ8MTLmLJjIsoQf6a\",\"expiry\":1567891161,\"updated_at\":\"2019-08-24 21:19:21 UTC\"}}"], ["updated_at", "2019-08-24 21:19:21.314022"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:19:21.315814"], ["last_sign_in_at", "2019-08-24 21:19:21.315814"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:19:21.316543"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 0.8ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "monika@murrayjohnson.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "monika@murrayjohnson.name"], ["encrypted_password", "$2a$04$RYnw1B93IF.AGqDo82X4M.KBmP1ZzcdUcXKstqhF2ljTKaPJpxVhu"], ["confirmed_at", "2019-08-24 21:28:21.738027"], ["email", "monika@murrayjohnson.name"], ["created_at", "2019-08-24 21:28:21.740283"], ["updated_at", "2019-08-24 21:28:21.740283"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:28:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"monika@murrayjohnson.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "monika@murrayjohnson.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LFkuC4w87RROUUDCGGbKQw\":{\"token\":\"$2a$04$EGh5LEM/isKBr34CAEUL/uwOpWtjCnqhPat.ONabe.Vo8h1bTMW4G\",\"expiry\":1567891701,\"updated_at\":\"2019-08-24 21:28:21 UTC\"}}"], ["updated_at", "2019-08-24 21:28:21.767749"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:28:21.768900"], ["last_sign_in_at", "2019-08-24 21:28:21.768900"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:28:21.769287"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 16ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jaye@weinat.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jaye@weinat.info"], ["encrypted_password", "$2a$04$EPn9O01bB4lgJtFNIBKlq.JcXhA2N0GsMUTQbBzXRJQmZmLGGAiXy"], ["confirmation_token", "Vz97oPEzGEZsg7Kb2R5a"], ["confirmation_sent_at", "2019-08-24 21:28:21.778161"], ["email", "jaye@weinat.info"], ["created_at", "2019-08-24 21:28:21.778061"], ["updated_at", "2019-08-24 21:28:21.778061"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:28:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jaye@weinat.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jaye@weinat.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stefanconroy@kuhic.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "stefanconroy@kuhic.info"], ["encrypted_password", "$2a$04$UOYeSGZoSGgKJ4WraexUNeQpcTPxDqc9R0XEWHUgoUCAJ6CxKCWYW"], ["confirmed_at", "2019-08-24 21:28:21.784757"], ["locked_at", "2019-08-24 21:28:21.784767"], ["email", "stefanconroy@kuhic.info"], ["created_at", "2019-08-24 21:28:21.785567"], ["updated_at", "2019-08-24 21:28:21.785567"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:28:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"stefanconroy@kuhic.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stefanconroy@kuhic.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"XTtbrSJDnmGDlZvgajAvrw\":{\"token\":\"$2a$04$VGdIvAU5kyBZ8mRkAu4e0eWn7ATWJ4HhPQX/DfaoRVhgdKHU24ypu\",\"expiry\":1567891701,\"updated_at\":\"2019-08-24 21:28:21 UTC\"}}"], ["updated_at", "2019-08-24 21:28:21.792041"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:28:21.793068"], ["last_sign_in_at", "2019-08-24 21:28:21.793068"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:28:21.793527"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.5ms)  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "migdaliadibbert@white.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "migdaliadibbert@white.net"], ["encrypted_password", "$2a$04$9SWy202C6Di08S6FQZqBvejuS3AKov3KLsq8pltwV7Wt/xoTCbSea"], ["confirmed_at", "2019-08-24 21:28:58.171265"], ["email", "migdaliadibbert@white.net"], ["created_at", "2019-08-24 21:28:58.173233"], ["updated_at", "2019-08-24 21:28:58.173233"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:28:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"migdaliadibbert@white.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "migdaliadibbert@white.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"XV4wlJ1diZp0y8nL-ahGbA\":{\"token\":\"$2a$04$bSnQIcMMTN3a8qj.cZYn4.TJlxpwnNqrKJsWetwpOjGFSALK4/uI6\",\"expiry\":1567891738,\"updated_at\":\"2019-08-24 21:28:58 UTC\"}}"], ["updated_at", "2019-08-24 21:28:58.199837"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:28:58.200863"], ["last_sign_in_at", "2019-08-24 21:28:58.200863"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:28:58.201186"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dong@oreilly.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dong@oreilly.name"], ["encrypted_password", "$2a$04$DbqSZu8MMYE7wgtcR3Sfm.RXT9cinSmvafsH/4RlAYeotAXS9MbLq"], ["confirmation_token", "pC5d-YsDt4erMPxYCmmM"], ["confirmation_sent_at", "2019-08-24 21:28:58.210866"], ["email", "dong@oreilly.name"], ["created_at", "2019-08-24 21:28:58.210753"], ["updated_at", "2019-08-24 21:28:58.210753"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:28:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"dong@oreilly.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dong@oreilly.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chu@ziemehirthe.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "chu@ziemehirthe.com"], ["encrypted_password", "$2a$04$bZh0px.2zi6dSe9MVMgEf.CHsfgY3plIUgYWku0.oAonXjaj3kOfa"], ["confirmed_at", "2019-08-24 21:28:58.219333"], ["locked_at", "2019-08-24 21:28:58.219349"], ["email", "chu@ziemehirthe.com"], ["created_at", "2019-08-24 21:28:58.220384"], ["updated_at", "2019-08-24 21:28:58.220384"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:28:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"chu@ziemehirthe.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "chu@ziemehirthe.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"8jljPTQOpj6cgZOo5HkzBA\":{\"token\":\"$2a$04$TRs7gHsQf8MU4VAz82Zrruaq3kVg3XvOEvxyHJvW7j611ZItoL/c6\",\"expiry\":1567891738,\"updated_at\":\"2019-08-24 21:28:58 UTC\"}}"], ["updated_at", "2019-08-24 21:28:58.227497"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:28:58.228806"], ["last_sign_in_at", "2019-08-24 21:28:58.228806"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:28:58.229221"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marieleannon@quigleydonnelly.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "marieleannon@quigleydonnelly.co"], ["encrypted_password", "$2a$04$fhuuCGauFfvnwcm8j3gk8uB6zT86pLYW7K8y04QC1vEB1ZPk6Ao6O"], ["confirmed_at", "2019-08-24 21:30:19.099769"], ["email", "marieleannon@quigleydonnelly.co"], ["created_at", "2019-08-24 21:30:19.101885"], ["updated_at", "2019-08-24 21:30:19.101885"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:30:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"marieleannon@quigleydonnelly.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marieleannon@quigleydonnelly.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"B4r5k_kSd93y2Qgv7nfS6g\":{\"token\":\"$2a$04$7qQ1JGJhu0yFTIuHpkVVHuk/k6QTF3w1baPLfsT754UiiUuQiglCm\",\"expiry\":1567891819,\"updated_at\":\"2019-08-24 21:30:19 UTC\"}}"], ["updated_at", "2019-08-24 21:30:19.127495"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:30:19.128664"], ["last_sign_in_at", "2019-08-24 21:30:19.128664"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:30:19.128992"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 0.1ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chung@johnston.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "chung@johnston.org"], ["encrypted_password", "$2a$04$UdJBe6YGVEW0JYIpQDvdiugcYEVDzKE5sr/ZBwXL367srGtyKSfN6"], ["confirmation_token", "B5G_ZjehbTr_afBEm5S2"], ["confirmation_sent_at", "2019-08-24 21:30:19.138877"], ["email", "chung@johnston.org"], ["created_at", "2019-08-24 21:30:19.138748"], ["updated_at", "2019-08-24 21:30:19.138748"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:30:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"chung@johnston.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "chung@johnston.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marcelaufderhar@collierschmidt.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marcelaufderhar@collierschmidt.name"], ["encrypted_password", "$2a$04$s5FGwZB9Kw5Dt7emxfE/G.aWOrokX2A..SnyJQ0eafuAnKpQ8n9PK"], ["confirmed_at", "2019-08-24 21:30:19.148513"], ["locked_at", "2019-08-24 21:30:19.148534"], ["email", "marcelaufderhar@collierschmidt.name"], ["created_at", "2019-08-24 21:30:19.149712"], ["updated_at", "2019-08-24 21:30:19.149712"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:30:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"marcelaufderhar@collierschmidt.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marcelaufderhar@collierschmidt.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"l82jNPJYPFpPfwPVF5g7sg\":{\"token\":\"$2a$04$YflD.HUOBfmLCrTh3vYp0uCe9yg808ZdsOHeqBnihpVRjnmNsLJNC\",\"expiry\":1567891819,\"updated_at\":\"2019-08-24 21:30:19 UTC\"}}"], ["updated_at", "2019-08-24 21:30:19.156686"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:30:19.157739"], ["last_sign_in_at", "2019-08-24 21:30:19.157739"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:30:19.158091"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "floiejerde@brekke.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "floiejerde@brekke.biz"], ["encrypted_password", "$2a$04$WoOaAS9CnwnVW0G3x4pu..h9FU0A5CW3IRvp7QAXUmJhLX/SsiHOC"], ["confirmed_at", "2019-08-24 21:31:17.774574"], ["email", "floiejerde@brekke.biz"], ["created_at", "2019-08-24 21:31:17.777430"], ["updated_at", "2019-08-24 21:31:17.777430"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:31:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"floiejerde@brekke.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "floiejerde@brekke.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CC0PWfuN8Y9DbOvuWpECrA\":{\"token\":\"$2a$04$llflG0sInIh7mxPz5g6M7eY3aYZ8pvQiYXg6xAsZcWQVUndF1/3kW\",\"expiry\":1567891877,\"updated_at\":\"2019-08-24 21:31:17 UTC\"}}"], ["updated_at", "2019-08-24 21:31:17.805101"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:31:17.806671"], ["last_sign_in_at", "2019-08-24 21:31:17.806671"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:31:17.807109"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 16ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "beula@moriette.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "beula@moriette.org"], ["encrypted_password", "$2a$04$y0DZYnvTdzXv/OJGBq9w0uVAkSzr.gMk1xSmFt7TgFhvR2WP8vkRi"], ["confirmation_token", "WxNLHEW9dGRzSUZJdsYY"], ["confirmation_sent_at", "2019-08-24 21:31:17.819703"], ["email", "beula@moriette.org"], ["created_at", "2019-08-24 21:31:17.819581"], ["updated_at", "2019-08-24 21:31:17.819581"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:31:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"beula@moriette.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "beula@moriette.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "terranceblanda@osinskiokuneva.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "terranceblanda@osinskiokuneva.org"], ["encrypted_password", "$2a$04$4jwldFc/mKopxripfyRKcesSBO5L1bOpgOP4dS1jmg18xDzx4Lm2G"], ["confirmed_at", "2019-08-24 21:31:17.829559"], ["locked_at", "2019-08-24 21:31:17.829595"], ["email", "terranceblanda@osinskiokuneva.org"], ["created_at", "2019-08-24 21:31:17.831334"], ["updated_at", "2019-08-24 21:31:17.831334"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:31:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"terranceblanda@osinskiokuneva.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "terranceblanda@osinskiokuneva.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms) User Update All (0.2ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jerroddach@ullrich.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jerroddach@ullrich.org"], ["encrypted_password", "$2a$04$quimoRz5L7I3tAgTOgza5eB9b1tIaelDk4rknapOi0ful4ksaK7nO"], ["confirmed_at", "2019-08-24 21:31:35.832353"], ["email", "jerroddach@ullrich.org"], ["created_at", "2019-08-24 21:31:35.834910"], ["updated_at", "2019-08-24 21:31:35.834910"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:31:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jerroddach@ullrich.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jerroddach@ullrich.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BqzS_gwlJ5W3OmbcMTcyBA\":{\"token\":\"$2a$04$/isaOb5p3eCDaVHhtOTOp.WGFg2g.TDvn3zaRlpW3R88C6YtP0nZi\",\"expiry\":1567891895,\"updated_at\":\"2019-08-24 21:31:35 UTC\"}}"], ["updated_at", "2019-08-24 21:31:35.861817"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:31:35.862822"], ["last_sign_in_at", "2019-08-24 21:31:35.862822"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:31:35.863154"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fredricklein@jacobson.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "fredricklein@jacobson.biz"], ["encrypted_password", "$2a$04$V7J0j44WKICC2U64aMU1Kej78O.DdeAJfp43qh3ZgRlU2VDArr2vq"], ["confirmation_token", "FRMDGpmweJpSbYfoQpwy"], ["confirmation_sent_at", "2019-08-24 21:31:35.873134"], ["email", "fredricklein@jacobson.biz"], ["created_at", "2019-08-24 21:31:35.873007"], ["updated_at", "2019-08-24 21:31:35.873007"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:31:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"fredricklein@jacobson.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "fredricklein@jacobson.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sheldon@rodriguez.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sheldon@rodriguez.co"], ["encrypted_password", "$2a$04$s0Q7Enz6ABH7Vth3hZsMLuX4MiUcIJ4n5g7L3XA1ldtxtYF/C.Zea"], ["confirmed_at", "2019-08-24 21:31:35.882951"], ["locked_at", "2019-08-24 21:31:35.882980"], ["email", "sheldon@rodriguez.co"], ["created_at", "2019-08-24 21:31:35.884564"], ["updated_at", "2019-08-24 21:31:35.884564"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:31:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"sheldon@rodriguez.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sheldon@rodriguez.co"], ["LIMIT", 1]] Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sallygutmann@hills.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "sallygutmann@hills.com"], ["encrypted_password", "$2a$04$NTnVCRCZQQJxwS0RxYp69.l8aDbzPZPI6fkf32iUPTPdUBFhdMbg2"], ["confirmed_at", "2019-08-24 21:34:20.340783"], ["email", "sallygutmann@hills.com"], ["created_at", "2019-08-24 21:34:20.342686"], ["updated_at", "2019-08-24 21:34:20.342686"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:34:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"sallygutmann@hills.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sallygutmann@hills.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nIctDoR2cDjM8HxDRSVehQ\":{\"token\":\"$2a$04$WmNeVhVwiccAzl98VEYe1unnZYg2nZbJ8T59CyFF5zw0VcLZzVLQu\",\"expiry\":1567892060,\"updated_at\":\"2019-08-24 21:34:20 UTC\"}}"], ["updated_at", "2019-08-24 21:34:20.369066"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:34:20.370139"], ["last_sign_in_at", "2019-08-24 21:34:20.370139"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:34:20.370471"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wandakub@ledner.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "wandakub@ledner.org"], ["encrypted_password", "$2a$04$V1vDBeErW0JhqUDhBf79q.wvBRbV///jyimv.EhHWn1q4FK9HNaSS"], ["confirmed_at", "2019-08-24 21:34:20.378822"], ["email", "wandakub@ledner.org"], ["created_at", "2019-08-24 21:34:20.379697"], ["updated_at", "2019-08-24 21:34:20.379697"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:34:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"wandakub@ledner.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "wandakub@ledner.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"G1YLHdO_rrBGbD_uGce6Ng\":{\"token\":\"$2a$04$cDgxZRYdlwB8gGUS.6AKyOgL4I0aCOooNR1dIPGuQA8DJDAW3RpLK\",\"expiry\":1567892060,\"updated_at\":\"2019-08-24 21:34:20 UTC\"}}"], ["updated_at", "2019-08-24 21:34:20.386351"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:34:20.387437"], ["last_sign_in_at", "2019-08-24 21:34:20.387437"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:34:20.387774"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lillarau@stokescremin.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lillarau@stokescremin.biz"], ["encrypted_password", "$2a$04$q9pVOIsRNMSYYxsxRsxcPOigYQc6EZAAPN77904igT7IVqFAK9YtS"], ["confirmation_token", "ztbocSRb7GQ47tN7zwBz"], ["confirmation_sent_at", "2019-08-24 21:34:20.403470"], ["email", "lillarau@stokescremin.biz"], ["created_at", "2019-08-24 21:34:20.403321"], ["updated_at", "2019-08-24 21:34:20.403321"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:34:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lillarau@stokescremin.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lillarau@stokescremin.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ahmadgislason@paucek.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ahmadgislason@paucek.io"], ["encrypted_password", "$2a$04$wxUGvA9fqWIH.6ZF3ltVsewx0BrqQ69oUn/4XD/8HXAweQBl6r2FK"], ["confirmed_at", "2019-08-24 21:34:20.413159"], ["locked_at", "2019-08-24 21:34:20.413182"], ["email", "ahmadgislason@paucek.io"], ["created_at", "2019-08-24 21:34:20.414450"], ["updated_at", "2019-08-24 21:34:20.414450"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:34:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ahmadgislason@paucek.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ahmadgislason@paucek.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "corrine@rogahnwilliamson.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "corrine@rogahnwilliamson.info"], ["encrypted_password", "$2a$04$p2ZKw1xLCM1Nn97a8n.irOwdVC2ztW50chvjODFgNaMtL0ehN2V9m"], ["confirmed_at", "2019-08-24 21:35:34.878620"], ["email", "corrine@rogahnwilliamson.info"], ["created_at", "2019-08-24 21:35:34.880862"], ["updated_at", "2019-08-24 21:35:34.880862"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:35:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"corrine@rogahnwilliamson.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "corrine@rogahnwilliamson.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Zen7gQb_I7NNXzlDsSsWsw\":{\"token\":\"$2a$04$z19PQEKE7O.9pCLD1Zq.lOdhz7ffYs.MY/gvE2izqVMwHpmL8mzgq\",\"expiry\":1567892134,\"updated_at\":\"2019-08-24 21:35:34 UTC\"}}"], ["updated_at", "2019-08-24 21:35:34.908258"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:35:34.909413"], ["last_sign_in_at", "2019-08-24 21:35:34.909413"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:35:34.909779"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tandrarempel@flatleygoodwin.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "tandrarempel@flatleygoodwin.org"], ["encrypted_password", "$2a$04$kO77xJdPKitp.UkqSQzLP.J05zZFtXP/ArSo8yzg4kUAJUh4OEIP2"], ["confirmed_at", "2019-08-24 21:35:34.918980"], ["email", "tandrarempel@flatleygoodwin.org"], ["created_at", "2019-08-24 21:35:34.919892"], ["updated_at", "2019-08-24 21:35:34.919892"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:35:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"tandrarempel@flatleygoodwin.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tandrarempel@flatleygoodwin.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "patrina@stantonlittel.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "patrina@stantonlittel.info"], ["encrypted_password", "$2a$04$X7IiyUzhJVs0C26KyR39r.wuwQB99Q/Z.1XYeVxS1KE/ubQrdQMT2"], ["confirmation_token", "Msh2c9yot14azx4UxGst"], ["confirmation_sent_at", "2019-08-24 21:35:34.930284"], ["email", "patrina@stantonlittel.info"], ["created_at", "2019-08-24 21:35:34.930176"], ["updated_at", "2019-08-24 21:35:34.930176"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:35:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"patrina@stantonlittel.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "patrina@stantonlittel.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "liviagrady@green.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "liviagrady@green.org"], ["encrypted_password", "$2a$04$PaZdwtGzzpWrz8rwPWyc9egh87V0eGhkYKir25AKQAU2oT77GS2QW"], ["confirmed_at", "2019-08-24 21:35:34.937875"], ["locked_at", "2019-08-24 21:35:34.937890"], ["email", "liviagrady@green.org"], ["created_at", "2019-08-24 21:35:34.939021"], ["updated_at", "2019-08-24 21:35:34.939021"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:35:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"liviagrady@green.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "liviagrady@green.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "virgil@leschhansen.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "virgil@leschhansen.info"], ["encrypted_password", "$2a$04$rcvuTSPtSI7RbH25FgiLk.1p8Gngx6QNlSQM4.iB7Cs0ksInUX1Dy"], ["confirmed_at", "2019-08-24 21:46:43.553966"], ["email", "virgil@leschhansen.info"], ["created_at", "2019-08-24 21:46:43.555962"], ["updated_at", "2019-08-24 21:46:43.555962"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:46:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"virgil@leschhansen.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "virgil@leschhansen.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Tota2GKYMI28CYKk26FcNg\":{\"token\":\"$2a$04$Suqn5ZSiKxuG51chcZkMaeUGhszuRAWtyRYn3xqVkdOd0h53AdMpW\",\"expiry\":1567892803,\"updated_at\":\"2019-08-24 21:46:43 UTC\"}}"], ["updated_at", "2019-08-24 21:46:43.582515"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:46:43.583740"], ["last_sign_in_at", "2019-08-24 21:46:43.583740"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:46:43.584077"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ernestorunolfon@hills.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "ernestorunolfon@hills.io"], ["encrypted_password", "$2a$04$lWUeXkNd45nuIYptht.uzuasECh6BcuXQrZ1Pe2K7zVmeuEbR9/EK"], ["confirmed_at", "2019-08-24 21:47:35.831898"], ["email", "ernestorunolfon@hills.io"], ["created_at", "2019-08-24 21:47:35.833862"], ["updated_at", "2019-08-24 21:47:35.833862"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:47:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ernestorunolfon@hills.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ernestorunolfon@hills.io"], ["LIMIT", 1]]  (0.2ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"R2CMbYkIH0RD-f5aVo0W9g\":{\"token\":\"$2a$04$uXEhI0Yx6tQkmLgUDbXsXurW5zIj7ildLcnG85CVqtNmGKaCCRJfa\",\"expiry\":1567892855,\"updated_at\":\"2019-08-24 21:47:35 UTC\"}}"], ["updated_at", "2019-08-24 21:47:35.860010"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:47:35.861425"], ["last_sign_in_at", "2019-08-24 21:47:35.861425"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:47:35.861860"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 16ms (Views: 0.2ms | ActiveRecord: 0.7ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jedconnelly@wisoky.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jedconnelly@wisoky.co"], ["encrypted_password", "$2a$04$uIVRaXd5ON4NDt3NIDyuCezvUSy6oV6xz/9Vfo8y5GXu9Cbk.bcle"], ["confirmed_at", "2019-08-24 21:49:40.362215"], ["email", "jedconnelly@wisoky.co"], ["created_at", "2019-08-24 21:49:40.364137"], ["updated_at", "2019-08-24 21:49:40.364137"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:49:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jedconnelly@wisoky.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jedconnelly@wisoky.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bEm4Jo-lHcRPAoR0vJxFIw\":{\"token\":\"$2a$04$sygBYvl2U9WM3O06Eoept.AS.cNEp5SjKLwueRwvK8.mgvwA6Rj42\",\"expiry\":1567892980,\"updated_at\":\"2019-08-24 21:49:40 UTC\"}}"], ["updated_at", "2019-08-24 21:49:40.389602"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:49:40.390667"], ["last_sign_in_at", "2019-08-24 21:49:40.390667"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:49:40.391011"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "blair@bashirian.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "blair@bashirian.com"], ["encrypted_password", "$2a$04$EWem70k376AU3HzFG/8Nmes8.71RzORV4VqWCPy9h5HFX99zroyii"], ["confirmed_at", "2019-08-24 21:49:40.399475"], ["email", "blair@bashirian.com"], ["created_at", "2019-08-24 21:49:40.400389"], ["updated_at", "2019-08-24 21:49:40.400389"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:49:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"blair@bashirian.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "blair@bashirian.com"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "christopher@beer.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "christopher@beer.io"], ["encrypted_password", "$2a$04$f01iXqqMenT/tyg6jeDKUe2.AoxBblOrPxy1YSrB76niiOektdhA6"], ["confirmation_token", "L2BzeMynrMNLaiqwfzxv"], ["confirmation_sent_at", "2019-08-24 21:49:40.412210"], ["email", "christopher@beer.io"], ["created_at", "2019-08-24 21:49:40.412087"], ["updated_at", "2019-08-24 21:49:40.412087"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:49:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"christopher@beer.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "christopher@beer.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "holliehilll@huelshudson.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "holliehilll@huelshudson.co"], ["encrypted_password", "$2a$04$QjUT1Ex2dPrL7qCNNFfrrOAagM4Ggw65GCb/L/YtJb3Cc8Ucb.igS"], ["confirmed_at", "2019-08-24 21:49:40.421197"], ["locked_at", "2019-08-24 21:49:40.421219"], ["email", "holliehilll@huelshudson.co"], ["created_at", "2019-08-24 21:49:40.422413"], ["updated_at", "2019-08-24 21:49:40.422413"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:49:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"holliehilll@huelshudson.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "holliehilll@huelshudson.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mi@borerframi.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "mi@borerframi.com"], ["encrypted_password", "$2a$04$dBYpLjwMU9aEFzIzReCMyeg0t8SxYU6.RvcHBy4nLZyqTH4ijJxZS"], ["confirmed_at", "2019-08-24 21:49:55.804867"], ["email", "mi@borerframi.com"], ["created_at", "2019-08-24 21:49:55.806803"], ["updated_at", "2019-08-24 21:49:55.806803"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:49:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"mi@borerframi.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mi@borerframi.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BDpYWuNlzxl3t3oHWXtMLw\":{\"token\":\"$2a$04$2Dzgwx8ilo4btjVYr4wl1OWFjNAoXoglqg0fdeprSO/21ixqIGJXS\",\"expiry\":1567892995,\"updated_at\":\"2019-08-24 21:49:55 UTC\"}}"], ["updated_at", "2019-08-24 21:49:55.831931"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:49:55.833009"], ["last_sign_in_at", "2019-08-24 21:49:55.833009"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:49:55.833344"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elmerondricka@kerlukeparisian.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "elmerondricka@kerlukeparisian.name"], ["encrypted_password", "$2a$04$WC1wu9qT1iOSxHDQu7JtSe7kXRkGOLBSbYcUwmmz.ESbpNIU3bzd."], ["confirmed_at", "2019-08-24 21:49:55.841488"], ["email", "elmerondricka@kerlukeparisian.name"], ["created_at", "2019-08-24 21:49:55.842744"], ["updated_at", "2019-08-24 21:49:55.842744"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:49:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"elmerondricka@kerlukeparisian.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elmerondricka@kerlukeparisian.name"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kathline@vonlegros.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kathline@vonlegros.org"], ["encrypted_password", "$2a$04$xinPs6B3PSWG3mkBKhpqIuO.1GwR3n1NhBjXi1ivb7s/fHP6akzxG"], ["confirmation_token", "tf5oCeC4s_dfrL4TJg2a"], ["confirmation_sent_at", "2019-08-24 21:49:55.856080"], ["email", "kathline@vonlegros.org"], ["created_at", "2019-08-24 21:49:55.855954"], ["updated_at", "2019-08-24 21:49:55.855954"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:49:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kathline@vonlegros.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kathline@vonlegros.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "warnercartwright@gottliebpaucek.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "warnercartwright@gottliebpaucek.com"], ["encrypted_password", "$2a$04$Obc5QSsLW0MIGBV8XJpRieLQHEiqVjv5UMdVWhQGTZHf2zcHZX/0m"], ["confirmed_at", "2019-08-24 21:49:55.865391"], ["locked_at", "2019-08-24 21:49:55.865413"], ["email", "warnercartwright@gottliebpaucek.com"], ["created_at", "2019-08-24 21:49:55.866734"], ["updated_at", "2019-08-24 21:49:55.866734"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:49:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"warnercartwright@gottliebpaucek.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "warnercartwright@gottliebpaucek.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"M5_CTzdUQpCagyfu5MxDOg\":{\"token\":\"$2a$04$qSEF/KHnt20EFSklzThBtejcIzkScqNBZOGGMqHjxBtG4qLqTZPdq\",\"expiry\":1567892995,\"updated_at\":\"2019-08-24 21:49:55 UTC\"}}"], ["updated_at", "2019-08-24 21:49:55.873912"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "margie@weinatwalsh.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "margie@weinatwalsh.co"], ["encrypted_password", "$2a$04$zLdKd6AbvhacoR0yJv5wMejl5mTCkcY8mQ.xzrueoBSbdb5P4qtJa"], ["confirmed_at", "2019-08-24 21:51:29.277958"], ["email", "margie@weinatwalsh.co"], ["created_at", "2019-08-24 21:51:29.280157"], ["updated_at", "2019-08-24 21:51:29.280157"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:51:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"margie@weinatwalsh.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "margie@weinatwalsh.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CF_n236nU7sOj1JkJShA6g\":{\"token\":\"$2a$04$CMMtwhBWULun.q/eMevQ.OyWUmqujUATt/4g2sENKZxr8/BhMujoa\",\"expiry\":1567893089,\"updated_at\":\"2019-08-24 21:51:29 UTC\"}}"], ["updated_at", "2019-08-24 21:51:29.306366"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 21:51:29.307398"], ["last_sign_in_at", "2019-08-24 21:51:29.307398"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 21:51:29.307718"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeiebailey@damore.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jeiebailey@damore.com"], ["encrypted_password", "$2a$04$wz2.fO/HKaMjC34KyQ6ziO.qzY7hqiOicZohI82s5BVHs.Rmxx2I2"], ["confirmed_at", "2019-08-24 21:51:29.315448"], ["email", "jeiebailey@damore.com"], ["created_at", "2019-08-24 21:51:29.316471"], ["updated_at", "2019-08-24 21:51:29.316471"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:51:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jeiebailey@damore.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jeiebailey@damore.com"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ramiromuller@feest.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ramiromuller@feest.io"], ["encrypted_password", "$2a$04$ZPDtUh5qcRdn5H2SB9Bg5el3Ly5GYH10ZUZcFLMfmHRRBV9R9HW/y"], ["confirmation_token", "qAcs-KnzLDVsYm7ooaqk"], ["confirmation_sent_at", "2019-08-24 21:51:29.328538"], ["email", "ramiromuller@feest.io"], ["created_at", "2019-08-24 21:51:29.328428"], ["updated_at", "2019-08-24 21:51:29.328428"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:51:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ramiromuller@feest.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ramiromuller@feest.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bruce@kuhlmanrunte.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bruce@kuhlmanrunte.io"], ["encrypted_password", "$2a$04$OA8iek78RtMGvca9lFr62.OTChfLm8menEck9e0MmVw16vXnqM2X2"], ["confirmed_at", "2019-08-24 21:51:29.336991"], ["locked_at", "2019-08-24 21:51:29.337014"], ["email", "bruce@kuhlmanrunte.io"], ["created_at", "2019-08-24 21:51:29.338221"], ["updated_at", "2019-08-24 21:51:29.338221"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 16:51:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"bruce@kuhlmanrunte.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bruce@kuhlmanrunte.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) DROP TABLE IF EXISTS "users"  (0.0ms) SELECT sqlite_version(*)  (1.1ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar DEFAULT 'email' NOT NULL, "uid" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "allow_password_change" boolean DEFAULT 0, "remember_created_at" datetime, "confirmation_token" varchar, "confirmed_at" datetime, "confirmation_sent_at" datetime, "unconfirmed_email" varchar, "failed_attempts" integer DEFAULT 0 NOT NULL, "unlock_token" varchar, "locked_at" datetime, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "last_sign_in_ip" varchar, "current_sign_in_ip" varchar, "sign_in_count" integer, "name" varchar, "email" varchar, "tokens" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "auth_available" boolean DEFAULT 1 NOT NULL)  (0.7ms) CREATE UNIQUE INDEX "index_users_on_confirmation_token" ON "users" ("confirmation_token")  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.7ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.6ms) CREATE UNIQUE INDEX "index_users_on_uid_and_provider" ON "users" ("uid", "provider")  (0.7ms) CREATE UNIQUE INDEX "index_users_on_unlock_token" ON "users" ("unlock_token")  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (20190824215150)  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES (20190815114303);   (0.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2019-08-24 22:02:08.069699"], ["updated_at", "2019-08-24 22:02:08.069699"]]  (0.6ms) commit transaction ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "crysta@howell.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "crysta@howell.biz"], ["encrypted_password", "$2a$04$GSqjPl881i7ixUouqOOHyOAUcpullQH8ZvTt/cXrNq/HvYS/8j5sm"], ["confirmed_at", "2019-08-24 22:02:08.859009"], ["email", "crysta@howell.biz"], ["created_at", "2019-08-24 22:02:08.861212"], ["updated_at", "2019-08-24 22:02:08.861212"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"crysta@howell.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "crysta@howell.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nqdUZBK4KumVqQQieCtw1A\":{\"token\":\"$2a$04$UiLLdnBEcZa8JrdyNW0seeVpOfIA7cMzWAdtyaCvUHgMUVV5LzbLK\",\"expiry\":1567893728,\"updated_at\":\"2019-08-24 22:02:08 UTC\"}}"], ["updated_at", "2019-08-24 22:02:08.894899"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 22:02:08.906864"], ["last_sign_in_at", "2019-08-24 22:02:08.906864"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 22:02:08.912118"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 39ms (Views: 0.3ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (6.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lizbethconnelly@okuneva.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "lizbethconnelly@okuneva.com"], ["encrypted_password", "$2a$04$kv5d75IV77BaIUaUQdQ2IO1N.wGGfZZfuGhz3Lse9sdqeuzOZGp.O"], ["confirmed_at", "2019-08-24 22:02:08.936744"], ["email", "lizbethconnelly@okuneva.com"], ["created_at", "2019-08-24 22:02:08.937806"], ["updated_at", "2019-08-24 22:02:08.937806"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lizbethconnelly@okuneva.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lizbethconnelly@okuneva.com"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eltonblanda@schmitt.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "eltonblanda@schmitt.net"], ["encrypted_password", "$2a$04$qacU0LgvC4tCVkjhrKxJLexApXtL4L0oXIStmsiTUH0YJAa9TimIC"], ["confirmation_token", "sVJBB_ErBnnmSsPfk_H9"], ["confirmation_sent_at", "2019-08-24 22:02:08.949088"], ["email", "eltonblanda@schmitt.net"], ["created_at", "2019-08-24 22:02:08.948951"], ["updated_at", "2019-08-24 22:02:08.948951"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"eltonblanda@schmitt.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "eltonblanda@schmitt.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tylabadie@macgyver.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tylabadie@macgyver.co"], ["encrypted_password", "$2a$04$qzB7wVWM9nBGncFGKx3BGeqFBr8POcU912aAwoGpcooH5Ct2yFXNm"], ["confirmed_at", "2019-08-24 22:02:08.956510"], ["locked_at", "2019-08-24 22:02:08.956523"], ["email", "tylabadie@macgyver.co"], ["created_at", "2019-08-24 22:02:08.957490"], ["updated_at", "2019-08-24 22:02:08.957490"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"tylabadie@macgyver.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tylabadie@macgyver.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rolandlangosh@lefflerconsidine.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rolandlangosh@lefflerconsidine.com"], ["encrypted_password", "$2a$04$nqNLtRTIiPYshdxAOhKiq.Dp9KnfRcnV1wxEkumYiTl8GekMPcJ26"], ["confirmed_at", "2019-08-24 22:02:08.967041"], ["email", "rolandlangosh@lefflerconsidine.com"], ["created_at", "2019-08-24 22:02:08.968117"], ["updated_at", "2019-08-24 22:02:08.968117"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"rolandlangosh@lefflerconsidine.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rolandlangosh@lefflerconsidine.com"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leonardazieme@orn.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "leonardazieme@orn.info"], ["encrypted_password", "$2a$04$K6znt9snGuHVgCdTVP1zt.sgawrJdJHI3lF2wBIg3QLTsDjAPHAiu"], ["confirmed_at", "2019-08-24 22:02:19.707904"], ["email", "leonardazieme@orn.info"], ["created_at", "2019-08-24 22:02:19.709952"], ["updated_at", "2019-08-24 22:02:19.709952"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"leonardazieme@orn.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leonardazieme@orn.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DD1As9DA-RR2md1idpXNsA\":{\"token\":\"$2a$04$WXLMj6cw/kl4TGvwGTjxfOU5ubeN4nw0Ae.aMEO/1BN4ZWy92Cn1m\",\"expiry\":1567893739,\"updated_at\":\"2019-08-24 22:02:19 UTC\"}}"], ["updated_at", "2019-08-24 22:02:19.736548"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 22:02:19.737602"], ["last_sign_in_at", "2019-08-24 22:02:19.737602"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 22:02:19.737922"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "pa@kunze.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "pa@kunze.co"], ["encrypted_password", "$2a$04$IMVdPp9k1XxKYARPao02ieb2d3DJtXmCXDrZvs3/pHVtyLKImbawO"], ["confirmed_at", "2019-08-24 22:02:19.745792"], ["email", "pa@kunze.co"], ["created_at", "2019-08-24 22:02:19.746710"], ["updated_at", "2019-08-24 22:02:19.746710"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"pa@kunze.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "pa@kunze.co"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ronnikutch@thompson.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ronnikutch@thompson.biz"], ["encrypted_password", "$2a$04$QCR/HavYwtGMHfNgsyDPtOls5a/cMjkTvMgw1g0OS3e0uaTJ.iJG6"], ["confirmation_token", "H1-RhzLiKcE2Uz_3Q7ja"], ["confirmation_sent_at", "2019-08-24 22:02:19.759163"], ["email", "ronnikutch@thompson.biz"], ["created_at", "2019-08-24 22:02:19.759037"], ["updated_at", "2019-08-24 22:02:19.759037"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ronnikutch@thompson.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ronnikutch@thompson.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "birdie@mcclure.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "birdie@mcclure.biz"], ["encrypted_password", "$2a$04$CUdAKq.q/3SoZCIGjhvOWugdH2L8K.Xxcf/tE7HoU0ie0yWUbqMlW"], ["confirmed_at", "2019-08-24 22:02:19.767956"], ["locked_at", "2019-08-24 22:02:19.767980"], ["email", "birdie@mcclure.biz"], ["created_at", "2019-08-24 22:02:19.769310"], ["updated_at", "2019-08-24 22:02:19.769310"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"birdie@mcclure.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "birdie@mcclure.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alveravonrueden@kohlernienow.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "alveravonrueden@kohlernienow.org"], ["encrypted_password", "$2a$04$1yShljQuIzf6IDbp0/nOYes8zGUWv9PjBuwKL154uTpoyx0vdK.la"], ["confirmed_at", "2019-08-24 22:02:19.778603"], ["email", "alveravonrueden@kohlernienow.org"], ["created_at", "2019-08-24 22:02:19.779790"], ["updated_at", "2019-08-24 22:02:19.779790"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"alveravonrueden@kohlernienow.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alveravonrueden@kohlernienow.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"F3nV589Wrt3ONpRidXuf0g\":{\"token\":\"$2a$04$KLXqaHaC9MAI4qTyAW2PGeerVx0A3xhSK/893hSTs83fbqEl.DpGW\",\"expiry\":1567893739,\"updated_at\":\"2019-08-24 22:02:19 UTC\"}}"], ["updated_at", "2019-08-24 22:02:19.787797"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 22:02:19.788974"], ["last_sign_in_at", "2019-08-24 22:02:19.788974"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 22:02:19.789362"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alexander@witting.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "alexander@witting.net"], ["encrypted_password", "$2a$04$g5mu1SFzPLEzjvsQYC6IgOuB6iiLNtEGvrlypc2NqMs9AM/05S26O"], ["confirmed_at", "2019-08-24 22:02:28.951201"], ["email", "alexander@witting.net"], ["created_at", "2019-08-24 22:02:28.954461"], ["updated_at", "2019-08-24 22:02:28.954461"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"alexander@witting.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alexander@witting.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BOwo0fpg93AuBLr8RTQR6A\":{\"token\":\"$2a$04$Yi2qyFKW9L1PNPOmuJ4aUeQocPaPOUZZhA1V/HwFAhhWzul9fJIM6\",\"expiry\":1567893748,\"updated_at\":\"2019-08-24 22:02:28 UTC\"}}"], ["updated_at", "2019-08-24 22:02:28.981067"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 22:02:28.982147"], ["last_sign_in_at", "2019-08-24 22:02:28.982147"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 22:02:28.982492"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "emelydaniel@franeckihilll.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "emelydaniel@franeckihilll.co"], ["encrypted_password", "$2a$04$Ob6RAaoRJgCB92X/XBe6peQLElAqJUo9vdRSR8Wlw.RHXs8Cjn8Dy"], ["confirmed_at", "2019-08-24 22:02:28.989828"], ["email", "emelydaniel@franeckihilll.co"], ["created_at", "2019-08-24 22:02:28.990669"], ["updated_at", "2019-08-24 22:02:28.990669"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"emelydaniel@franeckihilll.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "emelydaniel@franeckihilll.co"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "houston@borer.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "houston@borer.name"], ["encrypted_password", "$2a$04$1u6TiiQlAYpIpHoEJxXBUud5AicASeTxeFve5FMjZzzj1/kmuzTKm"], ["confirmation_token", "kbZtEZaryFNWpHN1DL6s"], ["confirmation_sent_at", "2019-08-24 22:02:29.002350"], ["email", "houston@borer.name"], ["created_at", "2019-08-24 22:02:29.002248"], ["updated_at", "2019-08-24 22:02:29.002248"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"houston@borer.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "houston@borer.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "huongwuckert@dickenswintheiser.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "huongwuckert@dickenswintheiser.co"], ["encrypted_password", "$2a$04$zNwpih93e9G2jGgb3BOm8umTegx3pNITBY/Hx3iGlahESI0y9orcG"], ["confirmed_at", "2019-08-24 22:02:29.013014"], ["locked_at", "2019-08-24 22:02:29.013040"], ["email", "huongwuckert@dickenswintheiser.co"], ["created_at", "2019-08-24 22:02:29.014144"], ["updated_at", "2019-08-24 22:02:29.014144"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"huongwuckert@dickenswintheiser.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "huongwuckert@dickenswintheiser.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carrollschaefer@doyle.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "carrollschaefer@doyle.com"], ["encrypted_password", "$2a$04$.78N3ZWeKuMIs1zbffN6Fu2N4DAgehFRD0wRWqwPFtJ2ZmKNAWlJG"], ["confirmed_at", "2019-08-24 22:02:29.024371"], ["email", "carrollschaefer@doyle.com"], ["created_at", "2019-08-24 22:02:29.026616"], ["updated_at", "2019-08-24 22:02:29.026616"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:02:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"carrollschaefer@doyle.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "carrollschaefer@doyle.com"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alla@mohr.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "alla@mohr.net"], ["encrypted_password", "$2a$04$quqo8/Qjp.HYKdqNPA2r9OIQHFIA0mIdRAyusjwaU2.66GWpoBLxC"], ["confirmed_at", "2019-08-24 22:08:38.190101"], ["email", "alla@mohr.net"], ["created_at", "2019-08-24 22:08:38.192245"], ["updated_at", "2019-08-24 22:08:38.192245"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:08:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"alla@mohr.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alla@mohr.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5w4AAA2zKHawIYu8ev8MKg\":{\"token\":\"$2a$04$vqa3EQ2NdOuZvl4sAmhbzeVzJOzpV.h0py0i1r53ZxxcHFMBPrU9G\",\"expiry\":1567894129,\"updated_at\":\"2019-08-24 22:08:49 UTC\"}}"], ["updated_at", "2019-08-24 22:08:49.789636"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 22:08:49.791262"], ["last_sign_in_at", "2019-08-24 22:08:49.791262"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 22:08:49.791746"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 11587ms (Views: 0.3ms | ActiveRecord: 0.7ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "verniewatsica@jones.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "verniewatsica@jones.co"], ["encrypted_password", "$2a$04$chV4sloQBshIPoPW2ZSIC./BLUvUk3rkAJLbC9B3V51bndXEzjLYG"], ["confirmed_at", "2019-08-24 22:08:49.803049"], ["email", "verniewatsica@jones.co"], ["created_at", "2019-08-24 22:08:49.805203"], ["updated_at", "2019-08-24 22:08:49.805203"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:08:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"verniewatsica@jones.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} Completed 500 Internal Server Error in 3817ms (ActiveRecord: 0.0ms)  (0.0ms) DROP TABLE IF EXISTS "users"  (0.0ms) SELECT sqlite_version(*)  (1.1ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar DEFAULT 'email' NOT NULL, "uid" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "allow_password_change" boolean DEFAULT 0, "remember_created_at" datetime, "confirmation_token" varchar, "confirmed_at" datetime, "confirmation_sent_at" datetime, "unconfirmed_email" varchar, "failed_attempts" integer DEFAULT 0 NOT NULL, "unlock_token" varchar, "locked_at" datetime, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "last_sign_in_ip" varchar, "current_sign_in_ip" varchar, "sign_in_count" integer, "name" varchar, "email" varchar, "tokens" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "auth_available" boolean DEFAULT 1 NOT NULL)  (1.0ms) CREATE UNIQUE INDEX "index_users_on_confirmation_token" ON "users" ("confirmation_token")  (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.6ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.6ms) CREATE UNIQUE INDEX "index_users_on_uid_and_provider" ON "users" ("uid", "provider")  (0.6ms) CREATE UNIQUE INDEX "index_users_on_unlock_token" ON "users" ("unlock_token")  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190824215150)  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES (20190815114303);   (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2019-08-24 22:12:17.741613"], ["updated_at", "2019-08-24 22:12:17.741613"]]  (0.6ms) commit transaction ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "salome@ohara.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "salome@ohara.co"], ["encrypted_password", "$2a$04$hLpPjiifdrKQxfN8acvu4eGzRXhXrCqK2YF06AWeAwze4G/1MEx9K"], ["confirmed_at", "2019-08-24 22:12:18.506063"], ["email", "salome@ohara.co"], ["created_at", "2019-08-24 22:12:18.508014"], ["updated_at", "2019-08-24 22:12:18.508014"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:12:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"salome@ohara.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "salome@ohara.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"h-BpLzKHoFpp2F3PMWsuMg\":{\"token\":\"$2a$04$3lC42MHuHNnZ1FSgcPYObOtiBEtd7hjn5B7JuSmuCaedkYN8wfY4i\",\"expiry\":1567894338,\"updated_at\":\"2019-08-24 22:12:18 UTC\"}}"], ["updated_at", "2019-08-24 22:12:18.533715"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 22:12:18.534692"], ["last_sign_in_at", "2019-08-24 22:12:18.534692"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 22:12:18.535023"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jarred@huels.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jarred@huels.com"], ["encrypted_password", "$2a$04$fW9.nHn8d968ttoORmGore1.zTe.EHa1YgAhxC.rwoR6TocQSEvGy"], ["confirmed_at", "2019-08-24 22:12:18.542132"], ["email", "jarred@huels.com"], ["created_at", "2019-08-24 22:12:18.543095"], ["updated_at", "2019-08-24 22:12:18.543095"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:12:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jarred@huels.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jarred@huels.com"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "juliet@lind.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "juliet@lind.io"], ["encrypted_password", "$2a$04$WA6woqOfiT2fyj9dw.1J4eI49MVrBtUqB3VEoECWV0HoWNMOQx6ia"], ["confirmation_token", "qEHwKRXqQcLpsRFs_71v"], ["confirmation_sent_at", "2019-08-24 22:12:18.554780"], ["email", "juliet@lind.io"], ["created_at", "2019-08-24 22:12:18.554674"], ["updated_at", "2019-08-24 22:12:18.554674"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:12:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"juliet@lind.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "juliet@lind.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clyde@gloverframi.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "clyde@gloverframi.biz"], ["encrypted_password", "$2a$04$llnUrvrOqes8TRL/cEhbOOEPlLvsvLoVMCxn5sXk4dOeFIUvXT7Wa"], ["confirmed_at", "2019-08-24 22:12:18.562795"], ["locked_at", "2019-08-24 22:12:18.562810"], ["email", "clyde@gloverframi.biz"], ["created_at", "2019-08-24 22:12:18.563962"], ["updated_at", "2019-08-24 22:12:18.563962"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:12:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"clyde@gloverframi.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "clyde@gloverframi.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kelsi@bartolettigutkowski.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kelsi@bartolettigutkowski.io"], ["encrypted_password", "$2a$04$0OV0aLaQpHcXKqRer3omzOtkMR9RYRXp0QD9ZYlDO2rYxj0HnDsQa"], ["confirmed_at", "2019-08-24 22:12:18.572826"], ["email", "kelsi@bartolettigutkowski.io"], ["created_at", "2019-08-24 22:12:18.573956"], ["updated_at", "2019-08-24 22:12:18.573956"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 17:12:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kelsi@bartolettigutkowski.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kelsi@bartolettigutkowski.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "gisela@spinkamacgyver.net"]] SQL (0.3ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "gisela@spinkamacgyver.net"], ["encrypted_password", "$2a$04$cmT8nFuM2txET/6/WZQyD.joJf8qeKO6f56cZ3Inp3xNzGVSj2WKK"], ["confirmed_at", "2019-08-24 23:45:57.406435"], ["uid", "gisela@spinkamacgyver.net"], ["created_at", "2019-08-24 23:45:57.410075"], ["updated_at", "2019-08-24 23:45:57.410075"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "david@skiles.info"]] SQL (0.3ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "david@skiles.info"], ["encrypted_password", "$2a$04$PgJH67AgzR6Ri9abFs.JCeHCNh8dpx6ATm/h7meFstSOAdHhS5sMS"], ["confirmed_at", "2019-08-24 23:45:57.417240"], ["uid", "david@skiles.info"], ["created_at", "2019-08-24 23:45:57.418396"], ["updated_at", "2019-08-24 23:45:57.418396"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "maris@metz.name"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "7088e69b8feb0bf8f9526805d06e7c3cee58d036e32bde33cde8c6e73b5cfb7f"]] SQL (0.3ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "maris@metz.name"], ["encrypted_password", "$2a$04$NIz0Vgx6nNmV4OrlabziverjfX0fC1Wg4VHrRWglef5tAuc1v2SUu"], ["uid", "maris@metz.name"], ["created_at", "2019-08-24 23:45:57.426456"], ["updated_at", "2019-08-24 23:45:57.426456"], ["confirmation_token", "yF2cAwAsmyRxujVJN6hH"], ["confirmation_sent_at", "2019-08-24 23:45:57.518598"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "sandi.hand@rice.io"]] SQL (0.4ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "sandi.hand@rice.io"], ["encrypted_password", "$2a$04$gomRBtemf4F9OLRoSobNHOU5a/X5Qc1Fm4sWUqVAx0TY.VUVWETuu"], ["confirmed_at", "2019-08-24 23:45:57.524944"], ["locked_at", "2019-08-24 23:45:57.525005"], ["uid", "sandi.hand@rice.io"], ["created_at", "2019-08-24 23:45:57.525912"], ["updated_at", "2019-08-24 23:45:57.525912"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "merlene_stroman@heel.org"]] SQL (0.4ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "merlene_stroman@heel.org"], ["encrypted_password", "$2a$04$ef0yJMkYFssBlSJcmcgovOqHq8loxFxLtuEOyvY3bCNhvBhNr57QW"], ["confirmed_at", "2019-08-24 23:45:57.532850"], ["auth_available", "f"], ["uid", "merlene_stroman@heel.org"], ["created_at", "2019-08-24 23:45:57.534066"], ["updated_at", "2019-08-24 23:45:57.534066"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "preston@fritschking.name"]] SQL (0.3ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "preston@fritschking.name"], ["encrypted_password", "$2a$04$ENT5VO0uzVxWVXrYfyeUH.KVE1u0b/i/EXdcIvzKgwgmiUku8tCGe"], ["confirmed_at", "2019-08-24 23:47:51.129809"], ["uid", "preston@fritschking.name"], ["created_at", "2019-08-24 23:47:51.133713"], ["updated_at", "2019-08-24 23:47:51.133713"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:47:51 -0500  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "reginald.moore@feil.name"]] SQL (0.3ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "reginald.moore@feil.name"], ["encrypted_password", "$2a$04$VaItnDc0ykFu3g/TYjoSAeNYsneOuoq2dzlN3bbYPPwTfjcD6CENu"], ["confirmed_at", "2019-08-24 23:47:51.147808"], ["uid", "reginald.moore@feil.name"], ["created_at", "2019-08-24 23:47:51.148990"], ["updated_at", "2019-08-24 23:47:51.148990"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:47:51 -0500  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "tiara.heaney@kulasjacobson.biz"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "d774ed319f5930e142b11cd0f1e5b6358113a2881366ecbb9e74a9dc3072aa76"]] SQL (0.3ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "tiara.heaney@kulasjacobson.biz"], ["encrypted_password", "$2a$04$pmi4p6mcfsqbEThBLcBFruWLk4YdI0aBOJ09yW6VKfboGweibUYTu"], ["uid", "tiara.heaney@kulasjacobson.biz"], ["created_at", "2019-08-24 23:47:51.160208"], ["updated_at", "2019-08-24 23:47:51.160208"], ["confirmation_token", "6MvhUzEtqSjG_UzE8sD3"], ["confirmation_sent_at", "2019-08-24 23:47:51.246977"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:47:51 -0500  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "elbert@mitchell.co"]] SQL (0.4ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "elbert@mitchell.co"], ["encrypted_password", "$2a$04$GLLzd08W15QB/WjRJ9/JwODfuqMUqb5LXrAhKdqso2LaGJ72f9Ok2"], ["confirmed_at", "2019-08-24 23:47:51.256626"], ["locked_at", "2019-08-24 23:47:51.256687"], ["uid", "elbert@mitchell.co"], ["created_at", "2019-08-24 23:47:51.257631"], ["updated_at", "2019-08-24 23:47:51.257631"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:47:51 -0500  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "thomasina_paucek@koelpinweber.biz"]] SQL (0.4ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "thomasina_paucek@koelpinweber.biz"], ["encrypted_password", "$2a$04$pLbpd0aM5lypC/zGal5H7.pxLTiSJwQIjwDAw1HXhQgUqnxMgPILO"], ["confirmed_at", "2019-08-24 23:47:51.269505"], ["auth_available", "f"], ["uid", "thomasina_paucek@koelpinweber.biz"], ["created_at", "2019-08-24 23:47:51.270832"], ["updated_at", "2019-08-24 23:47:51.270832"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:47:51 -0500  (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "tamra.yundt@stracke.io"]] SQL (0.3ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "tamra.yundt@stracke.io"], ["encrypted_password", "$2a$04$GbabS5K083Zr2gLvaWbf2O3bBcHlFWX.8ino4snkAeHN21NqJpSTi"], ["confirmed_at", "2019-08-24 23:49:04.327227"], ["uid", "tamra.yundt@stracke.io"], ["created_at", "2019-08-24 23:49:04.330711"], ["updated_at", "2019-08-24 23:49:04.330711"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:49:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"tamra.yundt@stracke.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "jae_haag@stoltenberg.net"]] SQL (0.3ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "jae_haag@stoltenberg.net"], ["encrypted_password", "$2a$04$HujCVtb5pf1DbB8PqVxCmeIvQodnfPtk7abmKHJ.OmlGXr/h0qpqe"], ["confirmed_at", "2019-08-24 23:49:04.372827"], ["uid", "jae_haag@stoltenberg.net"], ["created_at", "2019-08-24 23:49:04.373948"], ["updated_at", "2019-08-24 23:49:04.373948"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:49:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"jae_haag@stoltenberg.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "ashlie.muller@satterfield.net"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "efa9fb48af44682103318b8b5782475e1094bdc2ac627799214e45098dba2ee1"]] SQL (0.3ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "ashlie.muller@satterfield.net"], ["encrypted_password", "$2a$04$XyG8o7DK2HH8L/g0VP3y5urb0ITcSFFDjY20vBnyIGzN7eav/K52."], ["uid", "ashlie.muller@satterfield.net"], ["created_at", "2019-08-24 23:49:04.384708"], ["updated_at", "2019-08-24 23:49:04.384708"], ["confirmation_token", "rnbSktAN2LLDeCkCbFZV"], ["confirmation_sent_at", "2019-08-24 23:49:04.472095"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:49:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"ashlie.muller@satterfield.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "rudolph.gleichner@daugherty.org"]] SQL (0.3ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "rudolph.gleichner@daugherty.org"], ["encrypted_password", "$2a$04$adA6sK0u3b77VClfspwP7e88COmBaL58Ph3bgxEP54EXxcHkzq4WC"], ["confirmed_at", "2019-08-24 23:49:04.479744"], ["locked_at", "2019-08-24 23:49:04.479805"], ["uid", "rudolph.gleichner@daugherty.org"], ["created_at", "2019-08-24 23:49:04.480780"], ["updated_at", "2019-08-24 23:49:04.480780"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:49:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"rudolph.gleichner@daugherty.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "prudence@hahndare.com"]] SQL (0.3ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["tokens", "{}"], ["email", "prudence@hahndare.com"], ["encrypted_password", "$2a$04$Vi7cj4RjaEwggcOtaDUa.OVOI8TBe5rVdB1mDlZmuPK5CywYE68j."], ["confirmed_at", "2019-08-24 23:49:04.488164"], ["auth_available", "f"], ["uid", "prudence@hahndare.com"], ["created_at", "2019-08-24 23:49:04.489105"], ["updated_at", "2019-08-24 23:49:04.489105"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:49:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"prudence@hahndare.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT sqlite_version(*)  (0.0ms) SELECT sqlite_version(*)  (0.0ms) DROP TABLE IF EXISTS "users"  (1.4ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar DEFAULT 'email' NOT NULL, "uid" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "allow_password_change" boolean DEFAULT 0, "remember_created_at" datetime, "confirmation_token" varchar, "confirmed_at" datetime, "confirmation_sent_at" datetime, "unconfirmed_email" varchar, "failed_attempts" integer DEFAULT 0 NOT NULL, "unlock_token" varchar, "locked_at" datetime, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "last_sign_in_ip" varchar, "current_sign_in_ip" varchar, "sign_in_count" integer, "name" varchar, "email" varchar, "tokens" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "auth_available" boolean DEFAULT 1 NOT NULL)  (0.9ms) CREATE UNIQUE INDEX "index_users_on_confirmation_token" ON "users" ("confirmation_token")  (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.8ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.9ms) CREATE UNIQUE INDEX "index_users_on_uid_and_provider" ON "users" ("uid", "provider")  (0.6ms) CREATE UNIQUE INDEX "index_users_on_unlock_token" ON "users" ("unlock_token")  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (20190824215150)  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES (20190815114303);   (0.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] TRANSACTION (0.0ms) begin transaction ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2019-08-24 23:51:18.525591"], ["updated_at", "2019-08-24 23:51:18.525591"]] TRANSACTION (0.8ms) commit transaction ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]] TRANSACTION (0.0ms) begin transaction ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "11d7e131b84fa85e9d3ff19dab6c5a7cf29a5e32"], ["created_at", "2019-08-24 23:51:18.528493"], ["updated_at", "2019-08-24 23:51:18.528493"]] TRANSACTION (0.6ms) commit transaction  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "forest@balistreriherzog.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "forest@balistreriherzog.biz"], ["encrypted_password", "$2a$04$6kvvHUBRXsc4HjmlBf3Gv.ryeXqbFD./Op97q3DjOrldERZu8WXOS"], ["confirmed_at", "2019-08-24 23:51:19.241319"], ["email", "forest@balistreriherzog.biz"], ["created_at", "2019-08-24 23:51:19.242534"], ["updated_at", "2019-08-24 23:51:19.242534"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:51:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"forest@balistreriherzog.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "forest@balistreriherzog.biz"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"srpJzMwqq4eG1I2ivizvhQ\":{\"token\":\"$2a$10$dNPyb9ubHfhEH4PjluN81ep4sdJfOTZQtluPyVdicPagj3PcWmzUS\",\"expiry\":1567900279,\"updated_at\":\"2019-08-24 23:51:19 UTC\"}}"], ["updated_at", "2019-08-24 23:51:19.325827"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 23:51:19.328929"], ["last_sign_in_at", "2019-08-24 23:51:19.328929"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 23:51:19.329140"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 73ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 12279) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joaquin@littlekunde.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "joaquin@littlekunde.info"], ["encrypted_password", "$2a$04$TAWRwdfgMM/oqUCBn9K7Dea6In2Ird.F.88NpA8AzCcj/4yXLVkae"], ["confirmed_at", "2019-08-24 23:51:19.337330"], ["email", "joaquin@littlekunde.info"], ["created_at", "2019-08-24 23:51:19.338264"], ["updated_at", "2019-08-24 23:51:19.338264"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:51:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"joaquin@littlekunde.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "joaquin@littlekunde.info"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2103) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carlene.nader@zboncak.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "carlene.nader@zboncak.biz"], ["encrypted_password", "$2a$04$e4l4CBkcFUTJ3jW59WUFpefqW6j/cUh3c.lud9UkB6PO.G5C0Mp9e"], ["confirmation_token", "RD9yyzaYsy_JxZq1-s9L"], ["confirmation_sent_at", "2019-08-24 23:51:19.348547"], ["email", "carlene.nader@zboncak.biz"], ["created_at", "2019-08-24 23:51:19.348462"], ["updated_at", "2019-08-24 23:51:19.348462"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:51:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"carlene.nader@zboncak.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "carlene.nader@zboncak.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1292) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cleo@quitzon.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cleo@quitzon.com"], ["encrypted_password", "$2a$04$ErxwW5dlWqquEk/rwI1ZJOk0RMgCVKFxrJybB87oDpM/bwPTUbsAW"], ["confirmed_at", "2019-08-24 23:51:19.354976"], ["locked_at", "2019-08-24 23:51:19.355005"], ["email", "cleo@quitzon.com"], ["created_at", "2019-08-24 23:51:19.356897"], ["updated_at", "2019-08-24 23:51:19.356897"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:51:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"cleo@quitzon.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cleo@quitzon.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1310) TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vern@yundt.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "vern@yundt.org"], ["encrypted_password", "$2a$04$xrxk4dD5Bm5dgGVW6n6cEexEwWd5.A6qpxD/ir.W4/Rj10WdifFl."], ["confirmed_at", "2019-08-24 23:51:19.365741"], ["email", "vern@yundt.org"], ["created_at", "2019-08-24 23:51:19.366907"], ["updated_at", "2019-08-24 23:51:19.366907"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:51:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"vern@yundt.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "vern@yundt.org"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 1289) TRANSACTION (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "trenton@kovacek.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "trenton@kovacek.io"], ["encrypted_password", "$2a$04$6pu/tdLbZ1DDo7A9UUEunOJpsYRgqE/GmD8pnLdGMZjZgFMZhxKVe"], ["confirmed_at", "2019-08-24 23:53:14.841901"], ["email", "trenton@kovacek.io"], ["created_at", "2019-08-24 23:53:14.843902"], ["updated_at", "2019-08-24 23:53:14.843902"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:53:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"trenton@kovacek.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "trenton@kovacek.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LCwAJdedlIYv99fEenAaXQ\":{\"token\":\"$2a$10$zwRbUKjvvk7wXlSfPPMac.tRS9hBtnVVRi2fSn45LbPLvCpR3XVoq\",\"expiry\":1567900394,\"updated_at\":\"2019-08-24 23:53:14 UTC\"}}"], ["updated_at", "2019-08-24 23:53:14.915164"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-24 23:53:14.918421"], ["last_sign_in_at", "2019-08-24 23:53:14.918421"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-24 23:53:14.918776"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "amberly@maggioolson.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "amberly@maggioolson.info"], ["encrypted_password", "$2a$04$A5cwUkqZMsydoCqP5urHgO8XQo8PyGch0TJOT/ChAsDwwmnX2ykeC"], ["confirmed_at", "2019-08-24 23:53:14.925191"], ["email", "amberly@maggioolson.info"], ["created_at", "2019-08-24 23:53:14.926091"], ["updated_at", "2019-08-24 23:53:14.926091"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:53:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"amberly@maggioolson.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "amberly@maggioolson.info"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jarvis@abshire.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jarvis@abshire.info"], ["encrypted_password", "$2a$04$WEWD57IX6DmRxwIzbEJN8.1rKsSQ.tuBZ2.ewoFyPhvfyJ5wUYiRa"], ["confirmation_token", "zamoHFMKjJnhgxkzX1U1"], ["confirmation_sent_at", "2019-08-24 23:53:14.935743"], ["email", "jarvis@abshire.info"], ["created_at", "2019-08-24 23:53:14.935653"], ["updated_at", "2019-08-24 23:53:14.935653"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:53:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jarvis@abshire.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jarvis@abshire.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shad.lesch@morargutkowski.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shad.lesch@morargutkowski.com"], ["encrypted_password", "$2a$04$n3nbC7xZOdumh2SxlToIv.6Y/tUJv0wvGQV7ztJ0ZBhF2umsqMlhC"], ["confirmed_at", "2019-08-24 23:53:14.941628"], ["locked_at", "2019-08-24 23:53:14.941639"], ["email", "shad.lesch@morargutkowski.com"], ["created_at", "2019-08-24 23:53:14.942348"], ["updated_at", "2019-08-24 23:53:14.942348"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:53:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"shad.lesch@morargutkowski.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shad.lesch@morargutkowski.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "guillermo@armstrong.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "guillermo@armstrong.info"], ["encrypted_password", "$2a$04$FNPdS3EAg3HILBhKBcM8MOfAYJENOUOrLh/0ec99PHOqQIBL2O2a."], ["confirmed_at", "2019-08-24 23:53:14.951344"], ["email", "guillermo@armstrong.info"], ["created_at", "2019-08-24 23:53:14.952566"], ["updated_at", "2019-08-24 23:53:14.952566"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:53:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"guillermo@armstrong.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "guillermo@armstrong.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'werner@pagac.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "werner@pagac.net"], ["encrypted_password", "$2a$04$/ETcz6nO/zTXb9oTQdarGeu.uWXGEpxWZdf315jlx0BPUSo0uJHkO"], ["confirmed_at", "2019-08-24 23:55:51.659675"], ["uid", "werner@pagac.net"], ["created_at", "2019-08-24 23:55:51.673761"], ["updated_at", "2019-08-24 23:55:51.673761"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:55:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"werner@pagac.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'vito_kohler@white.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vito_kohler@white.co"], ["encrypted_password", "$2a$04$YQOVYWo.6LcSgHJ9Q9WDVOBkDPxveiry3D1W4yDzswNTJpAoOv.Zy"], ["confirmed_at", "2019-08-24 23:55:51.714483"], ["uid", "vito_kohler@white.co"], ["created_at", "2019-08-24 23:55:51.715388"], ["updated_at", "2019-08-24 23:55:51.715388"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:55:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"vito_kohler@white.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'torrie_fisher@little.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "torrie_fisher@little.co"], ["encrypted_password", "$2a$04$EErMLBsneBRupZ6Fjo93zOlI7G7vQCP3Tv5tWRuZAFQZHSxEfDbOS"], ["uid", "torrie_fisher@little.co"], ["created_at", "2019-08-24 23:55:51.723757"], ["updated_at", "2019-08-24 23:55:51.723757"], ["confirmation_token", "bpVrBJqv9SgPFzPBtxWt"], ["confirmation_sent_at", "2019-08-24 23:55:51.723915"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:55:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"torrie_fisher@little.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'devon_klocko@homenick.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "devon_klocko@homenick.net"], ["encrypted_password", "$2a$04$cBvC1w7migyftBKFCPIupO5Fx0KO6dqxT0BL1Bs0DMZLYbivhc8um"], ["confirmed_at", "2019-08-24 23:55:51.730507"], ["locked_at", "2019-08-24 23:55:51.730561"], ["uid", "devon_klocko@homenick.net"], ["created_at", "2019-08-24 23:55:51.731581"], ["updated_at", "2019-08-24 23:55:51.731581"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:55:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"devon_klocko@homenick.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'chara@treutel.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "chara@treutel.co"], ["encrypted_password", "$2a$04$Rcmd2kzeK0zcQgF4zTfKCOUymyhZ3.N7euEniRwY6wjdcz4SEblw2"], ["confirmed_at", "2019-08-24 23:55:51.740701"], ["auth_available", "f"], ["uid", "chara@treutel.co"], ["created_at", "2019-08-24 23:55:51.741822"], ["updated_at", "2019-08-24 23:55:51.741822"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-24 18:55:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"chara@treutel.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'justin@thiel.org' AND "users"."provider" = 'email') LIMIT 1 SQL (1.7ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "justin@thiel.org"], ["encrypted_password", "$2a$04$pO.XjHByQdVnWFOyYYngA.O/bjKS0jEKWxkybhR//Y2PfKa.Po.2a"], ["confirmed_at", "2019-08-25 17:30:12.033883"], ["uid", "justin@thiel.org"], ["created_at", "2019-08-25 17:30:12.061413"], ["updated_at", "2019-08-25 17:30:12.061413"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:30:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"justin@thiel.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'colin@binsmarks.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "colin@binsmarks.io"], ["encrypted_password", "$2a$04$Ym2oAeNWSa9TsrpfFQiKLOU7PWTN.JHp19rIHuhg2gToFnvGPL33m"], ["confirmed_at", "2019-08-25 17:30:12.135276"], ["uid", "colin@binsmarks.io"], ["created_at", "2019-08-25 17:30:12.137114"], ["updated_at", "2019-08-25 17:30:12.137114"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:30:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"colin@binsmarks.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.5ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'demetra@schmitt.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "demetra@schmitt.net"], ["encrypted_password", "$2a$04$531M2CqpaDTjTRvVkAlHi.dnWe584i5JOYaHmpIL3NOgYzOJsmeAC"], ["uid", "demetra@schmitt.net"], ["created_at", "2019-08-25 17:30:12.157063"], ["updated_at", "2019-08-25 17:30:12.157063"], ["confirmation_token", "BtpHUUbKY9BYfTp8Yc5q"], ["confirmation_sent_at", "2019-08-25 17:30:12.157578"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:30:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"demetra@schmitt.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'gus.brakus@schillerleuschke.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "gus.brakus@schillerleuschke.com"], ["encrypted_password", "$2a$04$irFhhR0giEXPSzelJBDP2u2KFCy0MhbyIHvp6dhIY1IoRehEpv/H."], ["confirmed_at", "2019-08-25 17:30:12.173217"], ["locked_at", "2019-08-25 17:30:12.173327"], ["uid", "gus.brakus@schillerleuschke.com"], ["created_at", "2019-08-25 17:30:12.174785"], ["updated_at", "2019-08-25 17:30:12.174785"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:30:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"gus.brakus@schillerleuschke.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'leonard.marks@kovacekhermann.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "leonard.marks@kovacekhermann.biz"], ["encrypted_password", "$2a$04$GrNrBnFnYTMuVFvLGWtqEeFJWT76UrrsaIXLMcTpgt3qnmChuYoxy"], ["confirmed_at", "2019-08-25 17:30:12.193996"], ["auth_available", "f"], ["uid", "leonard.marks@kovacekhermann.biz"], ["created_at", "2019-08-25 17:30:12.195706"], ["updated_at", "2019-08-25 17:30:12.195706"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:30:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"leonard.marks@kovacekhermann.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.6ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'carl.lubowitz@lehnerlesch.name' AND "users"."provider" = 'email') LIMIT 1 SQL (2.9ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carl.lubowitz@lehnerlesch.name"], ["encrypted_password", "$2a$04$hiUO6l84I/KjILxIc/bAYe.R155fX4GyxBQ0qrpHWufzY9HMXuBNK"], ["confirmed_at", "2019-08-25 17:37:15.538286"], ["uid", "carl.lubowitz@lehnerlesch.name"], ["created_at", "2019-08-25 17:37:15.558735"], ["updated_at", "2019-08-25 17:37:15.558735"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:37:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"carl.lubowitz@lehnerlesch.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'summer@konopelski.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "summer@konopelski.name"], ["encrypted_password", "$2a$04$zPWq0jlsHcC4fQP9dnySM.KEALXNe/tomGncJapelu3GAdrHzVigy"], ["confirmed_at", "2019-08-25 17:37:15.624267"], ["uid", "summer@konopelski.name"], ["created_at", "2019-08-25 17:37:15.625285"], ["updated_at", "2019-08-25 17:37:15.625285"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:37:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"summer@konopelski.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'ngoc@altenwerth.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "ngoc@altenwerth.info"], ["encrypted_password", "$2a$04$pU3WGkwhLa5zn4WTcGbsXeOeA3clvMAPoFAkS6AFPfMBFoTTGKJf."], ["uid", "ngoc@altenwerth.info"], ["created_at", "2019-08-25 17:37:15.635405"], ["updated_at", "2019-08-25 17:37:15.635405"], ["confirmation_token", "NTwiYx9mcitszN4D862n"], ["confirmation_sent_at", "2019-08-25 17:37:15.635593"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:37:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"ngoc@altenwerth.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'cristobal.kirlin@cormiersanford.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "cristobal.kirlin@cormiersanford.com"], ["encrypted_password", "$2a$04$fg5P61Lejt52kjrqYxulc.XG5a1/Zr7x3BYOjhtzwgp6B/5Vf7gua"], ["confirmed_at", "2019-08-25 17:37:15.645915"], ["locked_at", "2019-08-25 17:37:15.646012"], ["uid", "cristobal.kirlin@cormiersanford.com"], ["created_at", "2019-08-25 17:37:15.647255"], ["updated_at", "2019-08-25 17:37:15.647255"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:37:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"cristobal.kirlin@cormiersanford.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'deshawn@dooley.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "deshawn@dooley.com"], ["encrypted_password", "$2a$04$Ggf54efyTxoAOTJlDOBgMueehoblmyX7xzOyosrlfkZtO/yADcQv2"], ["confirmed_at", "2019-08-25 17:37:15.657098"], ["auth_available", "f"], ["uid", "deshawn@dooley.com"], ["created_at", "2019-08-25 17:37:15.658305"], ["updated_at", "2019-08-25 17:37:15.658305"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:37:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"deshawn@dooley.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'madonna_okuneva@morarhodkiewicz.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "madonna_okuneva@morarhodkiewicz.net"], ["encrypted_password", "$2a$04$G/KIvg2XZXdtQ7Cj31drUem7fjGyXhR4awzRdN3X/ZL8EL1xak94K"], ["confirmed_at", "2019-08-25 17:37:49.594584"], ["auth_available", "f"], ["uid", "madonna_okuneva@morarhodkiewicz.net"], ["created_at", "2019-08-25 17:37:49.599820"], ["updated_at", "2019-08-25 17:37:49.599820"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:37:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"madonna_okuneva@morarhodkiewicz.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms) Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:43:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"params"=>{"query"=>"mutation {\n login(\n email: \"madonna_okuneva@morarhodkiewicz.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"}} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:43:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"madonna_okuneva@morarhodkiewicz.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "madonna_okuneva@morarhodkiewicz.net"]] Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.3ms) SELECT sqlite_version(*)  (0.8ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lyman.ernser@kirlinwaelchi.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lyman.ernser@kirlinwaelchi.io"], ["encrypted_password", "$2a$04$Og.tNE.74kSfUvw/nIBzQeBwbxNQA2u/xt.vM5vn8qVFjDU1xnM7O"], ["confirmed_at", "2019-08-25 17:49:38.291274"], ["email", "lyman.ernser@kirlinwaelchi.io"], ["created_at", "2019-08-25 17:49:38.293434"], ["updated_at", "2019-08-25 17:49:38.293434"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:49:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lyman.ernser@kirlinwaelchi.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lyman.ernser@kirlinwaelchi.io"], ["LIMIT", 1]] Completed 200 OK in 20ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 10883) TRANSACTION (0.3ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "isobel@halvorsonkshlerin.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "isobel@halvorsonkshlerin.biz"], ["encrypted_password", "$2a$04$8NOR7rYpd33ifjmot/0ubeq3zzWM857009vSvgSz345p3XDtyO7Sm"], ["confirmed_at", "2019-08-25 17:56:36.810463"], ["email", "isobel@halvorsonkshlerin.biz"], ["created_at", "2019-08-25 17:56:36.811726"], ["updated_at", "2019-08-25 17:56:36.811726"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:56:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"isobel@halvorsonkshlerin.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "isobel@halvorsonkshlerin.biz"], ["LIMIT", 1]] Completed 200 OK in 19ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 10883) TRANSACTION (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'li_ward@jonechinner.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "li_ward@jonechinner.org"], ["encrypted_password", "$2a$04$GpnWYfwiJo2XVcq1ZBWCwejNKDJN9G3FOIrTzkZrX2G6sgRekay66"], ["confirmed_at", "2019-08-25 17:56:58.421617"], ["auth_available", "f"], ["uid", "li_ward@jonechinner.org"], ["created_at", "2019-08-25 17:56:58.435122"], ["updated_at", "2019-08-25 17:56:58.435122"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:56:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"li_ward@jonechinner.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "li_ward@jonechinner.org"]] Completed 200 OK in 11ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'cathi.kemmer@mullerdicki.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "cathi.kemmer@mullerdicki.com"], ["encrypted_password", "$2a$04$t2GhLB8Z1xkVR1m2ErTGmuQjzuKyD.aB1la55mFiX3GNp9J2iP.kK"], ["confirmed_at", "2019-08-25 17:57:37.905767"], ["auth_available", "f"], ["uid", "cathi.kemmer@mullerdicki.com"], ["created_at", "2019-08-25 17:57:37.911568"], ["updated_at", "2019-08-25 17:57:37.911568"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:57:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"cathi.kemmer@mullerdicki.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "cathi.kemmer@mullerdicki.com"]] Completed 200 OK in 11ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tod@cummings.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tod@cummings.io"], ["encrypted_password", "$2a$04$Rjqe0WtQ4eFcDTn/tnwIQuRgXhg8yqXHztbHcc.ylk6hkJd3oysJW"], ["confirmed_at", "2019-08-25 17:58:23.626614"], ["email", "tod@cummings.io"], ["created_at", "2019-08-25 17:58:23.629673"], ["updated_at", "2019-08-25 17:58:23.629673"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:58:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"tod@cummings.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tod@cummings.io"], ["LIMIT", 1]] Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ervin@greenlittle.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ervin@greenlittle.info"], ["encrypted_password", "$2a$04$58ILHNSgr6CblyP3ybZ28ewq27MaRfTPtLHkCeokTNgAT.X4.ZcOq"], ["confirmed_at", "2019-08-25 17:58:39.014849"], ["email", "ervin@greenlittle.info"], ["created_at", "2019-08-25 17:58:39.018676"], ["updated_at", "2019-08-25 17:58:39.018676"], ["auth_available", "f"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:58:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ervin@greenlittle.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ervin@greenlittle.info"], ["LIMIT", 1]] Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "luke.buckridge@maggioblick.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "luke.buckridge@maggioblick.info"], ["encrypted_password", "$2a$04$noB68uRyKbrCzeDzHCP5aeWw/BV9lwZ8o8DcUG.lzSabOR5GIS.9S"], ["confirmed_at", "2019-08-25 17:58:48.519997"], ["email", "luke.buckridge@maggioblick.info"], ["created_at", "2019-08-25 17:58:48.521901"], ["updated_at", "2019-08-25 17:58:48.521901"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:58:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"luke.buckridge@maggioblick.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "luke.buckridge@maggioblick.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"sb_6CVPNCQokE7QWTiHEuQ\":{\"token\":\"$2a$10$SM8h1c06wYgv9mCgycERFeUhPEjd.3YhjsrntJjbzoHvjvWTGco3C\",\"expiry\":1567965528,\"updated_at\":\"2019-08-25 17:58:48 UTC\"}}"], ["updated_at", "2019-08-25 17:58:48.591571"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 17:58:48.594606"], ["last_sign_in_at", "2019-08-25 17:58:48.594606"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 17:58:48.594897"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "reginia@runolfsdottir.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "reginia@runolfsdottir.net"], ["encrypted_password", "$2a$04$fp85M6wgP7K7OCoU3MEZmeLzWX6s0L3O8A9i62DGytVF1QzVOIQgG"], ["confirmed_at", "2019-08-25 17:58:48.602771"], ["email", "reginia@runolfsdottir.net"], ["created_at", "2019-08-25 17:58:48.603587"], ["updated_at", "2019-08-25 17:58:48.603587"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:58:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"reginia@runolfsdottir.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "reginia@runolfsdottir.net"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "andres.bartell@medhurst.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "andres.bartell@medhurst.name"], ["encrypted_password", "$2a$04$cWSmI8ykEFMGet16u227ieFkb9wsv29oJ4RabAtJIzstlryVi3YGW"], ["confirmation_token", "ma3UXYGHhZrqxg2rCRtz"], ["confirmation_sent_at", "2019-08-25 17:58:48.612884"], ["email", "andres.bartell@medhurst.name"], ["created_at", "2019-08-25 17:58:48.612799"], ["updated_at", "2019-08-25 17:58:48.612799"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:58:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"andres.bartell@medhurst.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "andres.bartell@medhurst.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "david.spinka@lakinmraz.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "david.spinka@lakinmraz.name"], ["encrypted_password", "$2a$04$2RJcHqauhF9ifcYPj4GBr.0NL9Sh71n9/TtYCQKeIWKM/HvDpPFZO"], ["confirmed_at", "2019-08-25 17:58:48.618952"], ["locked_at", "2019-08-25 17:58:48.618963"], ["email", "david.spinka@lakinmraz.name"], ["created_at", "2019-08-25 17:58:48.619726"], ["updated_at", "2019-08-25 17:58:48.619726"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:58:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"david.spinka@lakinmraz.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "david.spinka@lakinmraz.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mathilde.beer@westhane.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mathilde.beer@westhane.io"], ["encrypted_password", "$2a$04$sEC5ntLURnY6RGaxqyGhDe3LophTZ8lbTZv4q/oR9vAulam9I3Dy2"], ["confirmed_at", "2019-08-25 17:58:48.628503"], ["email", "mathilde.beer@westhane.io"], ["created_at", "2019-08-25 17:58:48.629395"], ["updated_at", "2019-08-25 17:58:48.629395"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 12:58:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"mathilde.beer@westhane.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mathilde.beer@westhane.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rodger@beier.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rodger@beier.com"], ["encrypted_password", "$2a$04$zdX.678KGcmgnLlkfW2fS.QhkE8wxxSrG5e.I.6U/Ba8.tct0Y.W2"], ["confirmed_at", "2019-08-25 18:10:23.567780"], ["email", "rodger@beier.com"], ["created_at", "2019-08-25 18:10:23.577124"], ["updated_at", "2019-08-25 18:10:23.577124"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"rodger@beier.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rodger@beier.com"], ["LIMIT", 1]] Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vincenzo.thompson@creminaufderhar.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "vincenzo.thompson@creminaufderhar.com"], ["encrypted_password", "$2a$04$YBDSnxIbcLWY/zJ.2uyZJu6LEwQvOM644sgcV/bthGlZI3hVJhaQe"], ["confirmed_at", "2019-08-25 18:10:37.298606"], ["email", "vincenzo.thompson@creminaufderhar.com"], ["created_at", "2019-08-25 18:10:37.304292"], ["updated_at", "2019-08-25 18:10:37.304292"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"vincenzo.thompson@creminaufderhar.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "vincenzo.thompson@creminaufderhar.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gGflEYT-ZNX37J0-l9QfBA\":{\"token\":\"$2a$10$f8RoaBg0otY.9V3hb7qlduP32rxpPT8Xo6/LToPU7jO1o.wQMbkqG\",\"expiry\":1567966237,\"updated_at\":\"2019-08-25 18:10:37 UTC\"}}"], ["updated_at", "2019-08-25 18:10:37.386216"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:10:37.392285"], ["last_sign_in_at", "2019-08-25 18:10:37.392285"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:10:37.392997"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 74ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "latoya_murray@hamill.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "latoya_murray@hamill.org"], ["encrypted_password", "$2a$04$dvyA3t26zrszy9FGVx/twuhbKhjfYFumEXSMonAbGuckKV/w1QLs2"], ["confirmed_at", "2019-08-25 18:10:37.401167"], ["email", "latoya_murray@hamill.org"], ["created_at", "2019-08-25 18:10:37.401964"], ["updated_at", "2019-08-25 18:10:37.401964"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"latoya_murray@hamill.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "latoya_murray@hamill.org"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "milo.grant@bernhard.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "milo.grant@bernhard.biz"], ["encrypted_password", "$2a$04$Q5aXBM0Ummum.yDsYEjQAe/wIaSJ7Ndky7Exf7208T4OPm7T0mrK2"], ["confirmation_token", "K2tQxEmEF5gws66kyHRg"], ["confirmation_sent_at", "2019-08-25 18:10:37.412942"], ["email", "milo.grant@bernhard.biz"], ["created_at", "2019-08-25 18:10:37.412838"], ["updated_at", "2019-08-25 18:10:37.412838"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"milo.grant@bernhard.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "milo.grant@bernhard.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mariana@moenlueilwitz.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mariana@moenlueilwitz.org"], ["encrypted_password", "$2a$04$qVPqfY5XjfkbX0TEQuu6xeUA2Bm5FCKPGpzJJPvaYdK2sRh2n58i."], ["confirmed_at", "2019-08-25 18:10:37.420796"], ["locked_at", "2019-08-25 18:10:37.420814"], ["email", "mariana@moenlueilwitz.org"], ["created_at", "2019-08-25 18:10:37.422098"], ["updated_at", "2019-08-25 18:10:37.422098"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"mariana@moenlueilwitz.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mariana@moenlueilwitz.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "christopher_murazik@nicolas.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "christopher_murazik@nicolas.net"], ["encrypted_password", "$2a$04$nIn25oopKjMmlU0UAn1NRubs.agC7nlEG/MAEsxQZiNFMjy/9ez9i"], ["confirmed_at", "2019-08-25 18:10:37.431013"], ["email", "christopher_murazik@nicolas.net"], ["created_at", "2019-08-25 18:10:37.432232"], ["updated_at", "2019-08-25 18:10:37.432232"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"christopher_murazik@nicolas.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "christopher_murazik@nicolas.net"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'brendon@stracke.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "brendon@stracke.com"], ["encrypted_password", "$2a$04$uhApo0WaGrCYzLjbARCBPOfeZIRrpiucXptGqiiMdqiEzdEgBuQeC"], ["confirmed_at", "2019-08-25 18:10:55.242035"], ["uid", "brendon@stracke.com"], ["created_at", "2019-08-25 18:10:55.249367"], ["updated_at", "2019-08-25 18:10:55.249367"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"brendon@stracke.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "brendon@stracke.com"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"f-72XWMP8FDLbXfdN3r5WA\":{\"token\":\"$2a$10$RV.9Gy60OssJCOU9UELcEu1aPfeUgKkk8dy8KsLD3oBpz.c6dSpnS\",\"expiry\":1567966255,\"updated_at\":\"2019-08-25 18:10:55 UTC\"}}"], ["updated_at", "2019-08-25 18:10:55.335416"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-25 18:10:55.340738"], ["current_sign_in_at", "2019-08-25 18:10:55.340738"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:10:55.341213"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 70ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'hipolito@sporerrowe.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hipolito@sporerrowe.info"], ["encrypted_password", "$2a$04$Mgxi8VCIyqKFeyNiJg47benlLUjs5s3Qb/bBdAhVzb/ePSNyIq5VC"], ["confirmed_at", "2019-08-25 18:10:55.347803"], ["uid", "hipolito@sporerrowe.info"], ["created_at", "2019-08-25 18:10:55.348815"], ["updated_at", "2019-08-25 18:10:55.348815"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"hipolito@sporerrowe.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "hipolito@sporerrowe.info"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'brittanie_cremin@reilly.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "brittanie_cremin@reilly.com"], ["encrypted_password", "$2a$04$iWPlEs1nwCNEX/YBEBmQ8Oo3C9O9LaGxvCV.2m8gBT/gdi0FxiIx."], ["uid", "brittanie_cremin@reilly.com"], ["created_at", "2019-08-25 18:10:55.361996"], ["updated_at", "2019-08-25 18:10:55.361996"], ["confirmation_token", "U7iBnEe6-W1iih_jyXxv"], ["confirmation_sent_at", "2019-08-25 18:10:55.362195"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"brittanie_cremin@reilly.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "brittanie_cremin@reilly.com"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jee_carter@grant.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "jee_carter@grant.info"], ["encrypted_password", "$2a$04$xOayF.y.v9o4XB0R16Gg/..NnO5Qr5kWXSvgST2.MpRWiBnJtRp1W"], ["confirmed_at", "2019-08-25 18:10:55.373386"], ["locked_at", "2019-08-25 18:10:55.373451"], ["uid", "jee_carter@grant.info"], ["created_at", "2019-08-25 18:10:55.374466"], ["updated_at", "2019-08-25 18:10:55.374466"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jee_carter@grant.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "jee_carter@grant.info"]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'bunny@olson.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "bunny@olson.io"], ["encrypted_password", "$2a$04$/ia3Dnow79Tt9gellFbrWuhShc9dPg6WDahAhnXXF5UvVHFDbB8x."], ["confirmed_at", "2019-08-25 18:10:55.386858"], ["auth_available", "f"], ["uid", "bunny@olson.io"], ["created_at", "2019-08-25 18:10:55.388017"], ["updated_at", "2019-08-25 18:10:55.388017"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"bunny@olson.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "bunny@olson.io"]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "pat.schmidt@torp.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "pat.schmidt@torp.net"], ["encrypted_password", "$2a$04$w95MKHVPutGGXqPkb4Lf6.Ciw01xPTd7n6Vr/lqhNaOHLCnj1R9fK"], ["confirmed_at", "2019-08-25 18:10:59.020299"], ["email", "pat.schmidt@torp.net"], ["created_at", "2019-08-25 18:10:59.025885"], ["updated_at", "2019-08-25 18:10:59.025885"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"pat.schmidt@torp.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "pat.schmidt@torp.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gxi4wHHTfRqB5Ux4zQxuWw\":{\"token\":\"$2a$10$WZ2f11BXevY6fOeFvxNiB.zv77Hx3tUTE0QkhDj4t5rIelv//Pn.O\",\"expiry\":1567966259,\"updated_at\":\"2019-08-25 18:10:59 UTC\"}}"], ["updated_at", "2019-08-25 18:10:59.105614"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:10:59.110481"], ["last_sign_in_at", "2019-08-25 18:10:59.110481"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:10:59.111169"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 70ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "roger@dickensledner.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "roger@dickensledner.org"], ["encrypted_password", "$2a$04$nDlcdY2v0Zj0ufGG6DL2KusvUdV2x78cZMSSpZjHPb1vzkUfKzceC"], ["confirmed_at", "2019-08-25 18:10:59.119580"], ["email", "roger@dickensledner.org"], ["created_at", "2019-08-25 18:10:59.120400"], ["updated_at", "2019-08-25 18:10:59.120400"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"roger@dickensledner.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "roger@dickensledner.org"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bob@wehnerstanton.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bob@wehnerstanton.info"], ["encrypted_password", "$2a$04$AqY/76cnpeqjpwT8Z0pT0uEgN6q9sTD6p7GSV96O.TmcMCDNRryYG"], ["confirmation_token", "6CYe4KX4uGucZZPZCVug"], ["confirmation_sent_at", "2019-08-25 18:10:59.131591"], ["email", "bob@wehnerstanton.info"], ["created_at", "2019-08-25 18:10:59.131449"], ["updated_at", "2019-08-25 18:10:59.131449"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"bob@wehnerstanton.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob@wehnerstanton.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eusebia_kub@langdickens.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "eusebia_kub@langdickens.biz"], ["encrypted_password", "$2a$04$xFlaGY5DtctFdhqYEEvNeeQFtVr5DebBPHL6y4.MwTwq5wpc9cWYS"], ["confirmed_at", "2019-08-25 18:10:59.139647"], ["locked_at", "2019-08-25 18:10:59.139689"], ["email", "eusebia_kub@langdickens.biz"], ["created_at", "2019-08-25 18:10:59.140916"], ["updated_at", "2019-08-25 18:10:59.140916"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"eusebia_kub@langdickens.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "eusebia_kub@langdickens.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wei_dietrich@waterskonopelski.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "wei_dietrich@waterskonopelski.net"], ["encrypted_password", "$2a$04$8xTS6dD2yyAONlY626.lDuUcOZ9JhzBwlwyA/w7TNhvcS27dO.xv6"], ["confirmed_at", "2019-08-25 18:10:59.151298"], ["email", "wei_dietrich@waterskonopelski.net"], ["created_at", "2019-08-25 18:10:59.152554"], ["updated_at", "2019-08-25 18:10:59.152554"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:10:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"wei_dietrich@waterskonopelski.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "wei_dietrich@waterskonopelski.net"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mathew.rutherford@bayer.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "mathew.rutherford@bayer.com"], ["encrypted_password", "$2a$04$c6vkh8APtbL9Oy.wzg.cn.68rQ9jza/nm2yTSJfTgt/BLCXfgIBDO"], ["confirmed_at", "2019-08-25 18:11:02.924397"], ["email", "mathew.rutherford@bayer.com"], ["created_at", "2019-08-25 18:11:02.926193"], ["updated_at", "2019-08-25 18:11:02.926193"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"mathew.rutherford@bayer.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mathew.rutherford@bayer.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ahPF_-stYri7ANTturSfDw\":{\"token\":\"$2a$10$d1.0XfsWax6eWsrEYvmLc.Uniyg78ATfKThTzZ8f.K0n5.F1/L5sm\",\"expiry\":1567966262,\"updated_at\":\"2019-08-25 18:11:02 UTC\"}}"], ["updated_at", "2019-08-25 18:11:02.995092"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:11:02.998319"], ["last_sign_in_at", "2019-08-25 18:11:02.998319"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:11:02.998651"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gail@schaefertowne.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "gail@schaefertowne.co"], ["encrypted_password", "$2a$04$Zf6DHCq3QD5ilUkLV4QsXeiVbQDKqm765iTB9bZqssPtGeKChGf9y"], ["confirmed_at", "2019-08-25 18:11:03.005626"], ["email", "gail@schaefertowne.co"], ["created_at", "2019-08-25 18:11:03.006586"], ["updated_at", "2019-08-25 18:11:03.006586"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"gail@schaefertowne.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gail@schaefertowne.co"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wenona@lindcronin.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "wenona@lindcronin.co"], ["encrypted_password", "$2a$04$TtQOQgIKCNdLwFlrJALKueAsNeiPBgf9ixbsHZJY/GpDct6wHNl/i"], ["confirmation_token", "18CWfSVyquNakruN9znr"], ["confirmation_sent_at", "2019-08-25 18:11:03.017195"], ["email", "wenona@lindcronin.co"], ["created_at", "2019-08-25 18:11:03.017114"], ["updated_at", "2019-08-25 18:11:03.017114"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"wenona@lindcronin.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "wenona@lindcronin.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeramy.harris@ferry.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jeramy.harris@ferry.info"], ["encrypted_password", "$2a$04$jebXSU05bNA50if9k0kSW.T.xNMUxme87vBTN7zE8ubfsgIQB77wm"], ["confirmed_at", "2019-08-25 18:11:03.022939"], ["locked_at", "2019-08-25 18:11:03.022950"], ["email", "jeramy.harris@ferry.info"], ["created_at", "2019-08-25 18:11:03.023691"], ["updated_at", "2019-08-25 18:11:03.023691"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jeramy.harris@ferry.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jeramy.harris@ferry.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "azucena_schaefer@homenick.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "azucena_schaefer@homenick.com"], ["encrypted_password", "$2a$04$XgCQ0kqYMa.Q/D0O.FljOOjDJBkL1aUzYXAzdIsg4ve96M7FUq1h6"], ["confirmed_at", "2019-08-25 18:11:03.030327"], ["email", "azucena_schaefer@homenick.com"], ["created_at", "2019-08-25 18:11:03.031163"], ["updated_at", "2019-08-25 18:11:03.031163"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"azucena_schaefer@homenick.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "azucena_schaefer@homenick.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "juli_veum@bodeokon.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "juli_veum@bodeokon.net"], ["encrypted_password", "$2a$04$Vf8AKWxI4/Yv3AeaS525f.yPx4nT9QHZ5wDBDujJVTjoGuOmgF4pu"], ["confirmed_at", "2019-08-25 18:11:06.262239"], ["email", "juli_veum@bodeokon.net"], ["created_at", "2019-08-25 18:11:06.264063"], ["updated_at", "2019-08-25 18:11:06.264063"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"juli_veum@bodeokon.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "juli_veum@bodeokon.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"WYDywJ4a_HQlh7tWPAdzdA\":{\"token\":\"$2a$10$g9PMwTvidbXWmbhrEBcbbuw/RRBbaASax7t7/4P7rZZq2Vv5ReWwG\",\"expiry\":1567966266,\"updated_at\":\"2019-08-25 18:11:06 UTC\"}}"], ["updated_at", "2019-08-25 18:11:06.333967"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:11:06.337298"], ["last_sign_in_at", "2019-08-25 18:11:06.337298"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:11:06.337637"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "etta.cronin@legros.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "etta.cronin@legros.biz"], ["encrypted_password", "$2a$04$HaMg1TTiWVIWExIjERBIt.IlcSA1Id64WirJt0M7wATKTrbWAnDAe"], ["confirmed_at", "2019-08-25 18:11:06.343918"], ["email", "etta.cronin@legros.biz"], ["created_at", "2019-08-25 18:11:06.344657"], ["updated_at", "2019-08-25 18:11:06.344657"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"etta.cronin@legros.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "etta.cronin@legros.biz"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "taina_kunde@bednarskiles.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "taina_kunde@bednarskiles.org"], ["encrypted_password", "$2a$04$vvyWjqDNHF9dEjpiMkWowOrJR55yD/RL1gUNC6UrelxzpwcdeQAS6"], ["confirmation_token", "s_3EBTxGLCYGkfxJKysH"], ["confirmation_sent_at", "2019-08-25 18:11:06.353767"], ["email", "taina_kunde@bednarskiles.org"], ["created_at", "2019-08-25 18:11:06.353671"], ["updated_at", "2019-08-25 18:11:06.353671"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"taina_kunde@bednarskiles.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "taina_kunde@bednarskiles.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "angelique.champlin@marvin.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "angelique.champlin@marvin.co"], ["encrypted_password", "$2a$04$ObtrRQ9nlaOCWGQnOtpiY.Bu9js.UxYttxKDdjtmDN5j4PGb.FcPa"], ["confirmed_at", "2019-08-25 18:11:06.359594"], ["locked_at", "2019-08-25 18:11:06.359604"], ["email", "angelique.champlin@marvin.co"], ["created_at", "2019-08-25 18:11:06.360311"], ["updated_at", "2019-08-25 18:11:06.360311"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"angelique.champlin@marvin.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "angelique.champlin@marvin.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jarrett_zemlak@zboncakbernier.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jarrett_zemlak@zboncakbernier.com"], ["encrypted_password", "$2a$04$.HhuV0Miu1C45/NRnzaYDOspUk2OEWZF7g77qfevU10lGOud0FYYO"], ["confirmed_at", "2019-08-25 18:11:06.366721"], ["email", "jarrett_zemlak@zboncakbernier.com"], ["created_at", "2019-08-25 18:11:06.367581"], ["updated_at", "2019-08-25 18:11:06.367581"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jarrett_zemlak@zboncakbernier.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jarrett_zemlak@zboncakbernier.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jacques@kuhlman.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jacques@kuhlman.io"], ["encrypted_password", "$2a$04$YDcYNDH2GWeAqPJA./ruteNLDbbXH3s0bmXFW8SAobeMoAGlx3ZgC"], ["confirmed_at", "2019-08-25 18:11:09.924232"], ["email", "jacques@kuhlman.io"], ["created_at", "2019-08-25 18:11:09.926111"], ["updated_at", "2019-08-25 18:11:09.926111"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jacques@kuhlman.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jacques@kuhlman.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-h6jy2jQete2y0KFRwN8pg\":{\"token\":\"$2a$10$gBLGBrrqYl199e0JB9UHVuGGxDNIYSCx3uh3JLruejDXeV9b6XVW2\",\"expiry\":1567966269,\"updated_at\":\"2019-08-25 18:11:09 UTC\"}}"], ["updated_at", "2019-08-25 18:11:10.000716"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:11:10.003612"], ["last_sign_in_at", "2019-08-25 18:11:10.003612"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:11:10.003907"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 65ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "julius@ullrichcorkery.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "julius@ullrichcorkery.name"], ["encrypted_password", "$2a$04$rEDZRd5RhDCtKUzlu18BiuQFKjFEJQZaxENedjsZjtltIcbEyGwFy"], ["confirmed_at", "2019-08-25 18:11:10.013411"], ["email", "julius@ullrichcorkery.name"], ["created_at", "2019-08-25 18:11:10.014403"], ["updated_at", "2019-08-25 18:11:10.014403"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"julius@ullrichcorkery.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "julius@ullrichcorkery.name"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nathanial@schadenlueilwitz.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nathanial@schadenlueilwitz.org"], ["encrypted_password", "$2a$04$tXIbpXZ3G4r/7Iwyk2U7O.ZdP88.Ulqc1uB1CLc8raNVWNJl0.1O6"], ["confirmation_token", "AVuDDrvQEaZf-woiyZfC"], ["confirmation_sent_at", "2019-08-25 18:11:10.024115"], ["email", "nathanial@schadenlueilwitz.org"], ["created_at", "2019-08-25 18:11:10.024035"], ["updated_at", "2019-08-25 18:11:10.024035"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"nathanial@schadenlueilwitz.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nathanial@schadenlueilwitz.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.3ms) SAVEPOINT active_record_1 User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "orlando@barton.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "orlando@barton.biz"], ["encrypted_password", "$2a$04$51gQJ218rAfaB4L4aJr8nO9rJzLrAgzE5fVw7jZmMF4UtYOF2Ctnm"], ["confirmed_at", "2019-08-25 18:11:10.031655"], ["locked_at", "2019-08-25 18:11:10.031723"], ["email", "orlando@barton.biz"], ["created_at", "2019-08-25 18:11:10.035365"], ["updated_at", "2019-08-25 18:11:10.035365"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"orlando@barton.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "orlando@barton.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clark@hermann.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "clark@hermann.biz"], ["encrypted_password", "$2a$04$NDnFsoli4OSpFhaLUs.hFOtKHZHRB8gDc943jKMNPzT/OO5ZhAEom"], ["confirmed_at", "2019-08-25 18:11:10.045870"], ["email", "clark@hermann.biz"], ["created_at", "2019-08-25 18:11:10.046610"], ["updated_at", "2019-08-25 18:11:10.046610"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"clark@hermann.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "clark@hermann.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bula_corwin@conn.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "bula_corwin@conn.io"], ["encrypted_password", "$2a$04$2G/PkZnGfytLc2k5AZm/EOY54AzvSCvDUj7GSkdbPBk.jseaao2zG"], ["confirmed_at", "2019-08-25 18:11:13.529426"], ["email", "bula_corwin@conn.io"], ["created_at", "2019-08-25 18:11:13.531784"], ["updated_at", "2019-08-25 18:11:13.531784"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"bula_corwin@conn.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bula_corwin@conn.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"PDUYDYr-22eF7zBRM3sPLQ\":{\"token\":\"$2a$10$3HO7mfZqEWxuwvR44nr8BeZTsG4O5ynRa6ht/Qo/IS4fD.Hhbt.Tq\",\"expiry\":1567966273,\"updated_at\":\"2019-08-25 18:11:13 UTC\"}}"], ["updated_at", "2019-08-25 18:11:13.613156"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:11:13.616148"], ["last_sign_in_at", "2019-08-25 18:11:13.616148"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:11:13.616491"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 68ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rey@little.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "rey@little.com"], ["encrypted_password", "$2a$04$y284pmuPyfhWe83TpkZJue5/xc6T6pa/LuI8gqweLlnw2F3VoyFMy"], ["confirmed_at", "2019-08-25 18:11:13.624772"], ["email", "rey@little.com"], ["created_at", "2019-08-25 18:11:13.625974"], ["updated_at", "2019-08-25 18:11:13.625974"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"rey@little.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rey@little.com"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "xavier.dickens@leuschkejacobs.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "xavier.dickens@leuschkejacobs.net"], ["encrypted_password", "$2a$04$hQYgYElFeNI0wpJ.0nyENe3KiOYmyVute0MAP.3zuIr8MkPDPCJSm"], ["confirmation_token", "V7tnbxKQ6zU3QNTTJQXi"], ["confirmation_sent_at", "2019-08-25 18:11:13.636539"], ["email", "xavier.dickens@leuschkejacobs.net"], ["created_at", "2019-08-25 18:11:13.636437"], ["updated_at", "2019-08-25 18:11:13.636437"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"xavier.dickens@leuschkejacobs.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "xavier.dickens@leuschkejacobs.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elvia.schmitt@hudsonfeest.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "elvia.schmitt@hudsonfeest.com"], ["encrypted_password", "$2a$04$XochmFQwTeT83PQDmVVYK.EzrV.3RM87gTdRxdHT8NMbLWJIyJCs."], ["confirmed_at", "2019-08-25 18:11:13.647412"], ["locked_at", "2019-08-25 18:11:13.647447"], ["email", "elvia.schmitt@hudsonfeest.com"], ["created_at", "2019-08-25 18:11:13.649129"], ["updated_at", "2019-08-25 18:11:13.649129"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"elvia.schmitt@hudsonfeest.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elvia.schmitt@hudsonfeest.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "raymundo@turcotte.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "raymundo@turcotte.org"], ["encrypted_password", "$2a$04$1qfIHIxpd/m8V0Ct9H1weOexX.bGjNdpN0bgNmnoFxU0Mbst1Ua46"], ["confirmed_at", "2019-08-25 18:11:13.660902"], ["email", "raymundo@turcotte.org"], ["created_at", "2019-08-25 18:11:13.662260"], ["updated_at", "2019-08-25 18:11:13.662260"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"raymundo@turcotte.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "raymundo@turcotte.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "katharine_weber@gusikowski.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "katharine_weber@gusikowski.info"], ["encrypted_password", "$2a$04$7GVw8cdiTXilbgOt6BNoFePTV9j7IYWG/xN1axI07aC1/fjcRbIO6"], ["confirmed_at", "2019-08-25 18:11:17.210173"], ["email", "katharine_weber@gusikowski.info"], ["created_at", "2019-08-25 18:11:17.211412"], ["updated_at", "2019-08-25 18:11:17.211412"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"katharine_weber@gusikowski.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "katharine_weber@gusikowski.info"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"snnBzINhWhMYzy5adeh44A\":{\"token\":\"$2a$10$V5h1SRhUUeQn8cvI29c2ge0jKsACrzRW34MQbVPLhhgVXzJWpIlaG\",\"expiry\":1567966277,\"updated_at\":\"2019-08-25 18:11:17 UTC\"}}"], ["updated_at", "2019-08-25 18:11:17.276538"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:11:17.279602"], ["last_sign_in_at", "2019-08-25 18:11:17.279602"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:11:17.279791"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 56ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 12087) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nevada.bins@wyman.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "nevada.bins@wyman.co"], ["encrypted_password", "$2a$04$XrWDgJlsVOsoeYVYu/TVI.DRVRUx9Kpz8ZsL6h139BX5IhJfLocKS"], ["confirmed_at", "2019-08-25 18:11:17.286879"], ["email", "nevada.bins@wyman.co"], ["created_at", "2019-08-25 18:11:17.287606"], ["updated_at", "2019-08-25 18:11:17.287606"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"nevada.bins@wyman.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nevada.bins@wyman.co"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2101) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leonila@walshwindler.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "leonila@walshwindler.name"], ["encrypted_password", "$2a$04$faqODxyrXtmwej7aVAn8K.SoJ9TtjASaCZgda3AgHJkFXzFucOf9a"], ["confirmation_token", "Y38FwJLRyEntZgrsa33g"], ["confirmation_sent_at", "2019-08-25 18:11:17.296773"], ["email", "leonila@walshwindler.name"], ["created_at", "2019-08-25 18:11:17.296695"], ["updated_at", "2019-08-25 18:11:17.296695"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"leonila@walshwindler.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leonila@walshwindler.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1292) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "norris.hudson@wehnerkuhlman.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "norris.hudson@wehnerkuhlman.co"], ["encrypted_password", "$2a$04$nzQ0xmXRi94TeUG1VXtWN.ejdgWzGTzeqmfp0riBSB2.lHhU6Excu"], ["confirmed_at", "2019-08-25 18:11:17.303052"], ["locked_at", "2019-08-25 18:11:17.303065"], ["email", "norris.hudson@wehnerkuhlman.co"], ["created_at", "2019-08-25 18:11:17.303851"], ["updated_at", "2019-08-25 18:11:17.303851"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"norris.hudson@wehnerkuhlman.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "norris.hudson@wehnerkuhlman.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1310) TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gayle_bergnaum@ritchieboehm.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gayle_bergnaum@ritchieboehm.net"], ["encrypted_password", "$2a$04$yo0N5Zpz1GjO1.vZzv9V/uBavKlT5D5Ghmi9XzB4chBqSSEsynoiq"], ["confirmed_at", "2019-08-25 18:11:17.312906"], ["email", "gayle_bergnaum@ritchieboehm.net"], ["created_at", "2019-08-25 18:11:17.313891"], ["updated_at", "2019-08-25 18:11:17.313891"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:11:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"gayle_bergnaum@ritchieboehm.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gayle_bergnaum@ritchieboehm.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1289) TRANSACTION (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'carmelita.gislason@fritsch.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carmelita.gislason@fritsch.biz"], ["encrypted_password", "$2a$04$Mzo0bRQT5Vz9Ouf0wH2GU.yaHMGCX4U8lpxZr5bD6NSFDyjn5uuKW"], ["confirmed_at", "2019-08-25 18:15:28.530243"], ["uid", "carmelita.gislason@fritsch.biz"], ["created_at", "2019-08-25 18:15:28.536546"], ["updated_at", "2019-08-25 18:15:28.536546"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"carmelita.gislason@fritsch.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "carmelita.gislason@fritsch.biz"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nCJdztnXtxgPOiOX_ZJA9Q\":{\"token\":\"$2a$10$Syl9TdKGmAM0wqt/UH4HX.E5O.zmd.NOX3ezr2zCbB3l6W3fpazIC\",\"expiry\":1567966528,\"updated_at\":\"2019-08-25 18:15:28 UTC\"}}"], ["updated_at", "2019-08-25 18:15:28.613807"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-25 18:15:28.617605"], ["current_sign_in_at", "2019-08-25 18:15:28.617605"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:15:28.617964"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'merrill@hillsoconner.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "merrill@hillsoconner.co"], ["encrypted_password", "$2a$04$6lgx1ig5f.WOi47.EAkWX.HxBwUvzzVNOAZbYAuHmGlmzwhqommrK"], ["confirmed_at", "2019-08-25 18:15:28.624512"], ["uid", "merrill@hillsoconner.co"], ["created_at", "2019-08-25 18:15:28.625400"], ["updated_at", "2019-08-25 18:15:28.625400"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"merrill@hillsoconner.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "merrill@hillsoconner.co"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'mana_greenfelder@wiza.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "mana_greenfelder@wiza.biz"], ["encrypted_password", "$2a$04$5xu3hIn1gqZHYoi419CDye8wMpJZy4MfZRo/LqtOzwsL8zn9uZKT6"], ["uid", "mana_greenfelder@wiza.biz"], ["created_at", "2019-08-25 18:15:28.635741"], ["updated_at", "2019-08-25 18:15:28.635741"], ["confirmation_token", "E2Ynp-2WFATrJjnCy4K2"], ["confirmation_sent_at", "2019-08-25 18:15:28.635877"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"mana_greenfelder@wiza.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "mana_greenfelder@wiza.biz"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jefferey@wiegand.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "jefferey@wiegand.org"], ["encrypted_password", "$2a$04$wAcMumGXb1Vw08mkpcmyeuC6WtJ69.fc2qhbDxirHoQrzPwJsC8uS"], ["confirmed_at", "2019-08-25 18:15:28.643522"], ["locked_at", "2019-08-25 18:15:28.643627"], ["uid", "jefferey@wiegand.org"], ["created_at", "2019-08-25 18:15:28.645335"], ["updated_at", "2019-08-25 18:15:28.645335"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jefferey@wiegand.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "jefferey@wiegand.org"]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'benita_mohr@haley.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "benita_mohr@haley.name"], ["encrypted_password", "$2a$04$EAkKj1K2qU1ObgrzBy4Ysupez7ZtgER9mvOK8eFgCAG9QU9Gga3dO"], ["confirmed_at", "2019-08-25 18:15:28.660208"], ["auth_available", "f"], ["uid", "benita_mohr@haley.name"], ["created_at", "2019-08-25 18:15:28.661209"], ["updated_at", "2019-08-25 18:15:28.661209"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"benita_mohr@haley.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "benita_mohr@haley.name"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "creola_kunze@runolfonzieme.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "creola_kunze@runolfonzieme.biz"], ["encrypted_password", "$2a$04$CQvazb6JvHe7dI7/AB/eU.UkGo1JsnV8ycPqcBScbV/4NhyjV4v8u"], ["confirmed_at", "2019-08-25 18:15:32.280476"], ["email", "creola_kunze@runolfonzieme.biz"], ["created_at", "2019-08-25 18:15:32.284866"], ["updated_at", "2019-08-25 18:15:32.284866"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"creola_kunze@runolfonzieme.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "creola_kunze@runolfonzieme.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yrRwqsBXnSQthp0pCjrJ6w\":{\"token\":\"$2a$10$QY/q3rvJp3I8XI9QIqx2NOwhIAg61PzsTXkwc3FalFLTbpKUVExJ.\",\"expiry\":1567966532,\"updated_at\":\"2019-08-25 18:15:32 UTC\"}}"], ["updated_at", "2019-08-25 18:15:32.353309"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:15:32.358753"], ["last_sign_in_at", "2019-08-25 18:15:32.358753"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:15:32.359280"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 62ms (Views: 0.2ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "maynard@dickensryan.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "maynard@dickensryan.info"], ["encrypted_password", "$2a$04$fhqe39xIdl/JyRe/8I7zsei.tFn3iBQEgp2ufz35WikaVGxKZCPWa"], ["confirmed_at", "2019-08-25 18:15:32.366219"], ["email", "maynard@dickensryan.info"], ["created_at", "2019-08-25 18:15:32.367025"], ["updated_at", "2019-08-25 18:15:32.367025"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"maynard@dickensryan.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "maynard@dickensryan.info"], ["LIMIT", 1]] SQL (0.0ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sachiko.cole@kautzer.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sachiko.cole@kautzer.co"], ["encrypted_password", "$2a$04$uROdSjkdqYLvU7MeJiLVGuf8z8CxcKyh6wnKZ9kncjFMmvmYAmOqm"], ["confirmation_token", "F-diPxsz8Zgsxx7xer2S"], ["confirmation_sent_at", "2019-08-25 18:15:32.376177"], ["email", "sachiko.cole@kautzer.co"], ["created_at", "2019-08-25 18:15:32.376096"], ["updated_at", "2019-08-25 18:15:32.376096"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"sachiko.cole@kautzer.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sachiko.cole@kautzer.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jude@heidenreichkihn.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jude@heidenreichkihn.biz"], ["encrypted_password", "$2a$04$gIZRvVWvzjyUXbBs4XwSTOy3j04OAQKio6koPeC.swzA7vlMzkrhG"], ["confirmed_at", "2019-08-25 18:15:32.381939"], ["locked_at", "2019-08-25 18:15:32.381950"], ["email", "jude@heidenreichkihn.biz"], ["created_at", "2019-08-25 18:15:32.382618"], ["updated_at", "2019-08-25 18:15:32.382618"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jude@heidenreichkihn.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jude@heidenreichkihn.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "addie_little@rogahn.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "addie_little@rogahn.co"], ["encrypted_password", "$2a$04$we0D6Amg.Aipble9XDXRhOYeb.fFWBMe2rYIxd9J83PeYBxN0iQkq"], ["confirmed_at", "2019-08-25 18:15:32.389200"], ["email", "addie_little@rogahn.co"], ["created_at", "2019-08-25 18:15:32.390088"], ["updated_at", "2019-08-25 18:15:32.390088"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"addie_little@rogahn.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "addie_little@rogahn.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lashawn@ziemekertzmann.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "lashawn@ziemekertzmann.net"], ["encrypted_password", "$2a$04$F0Mps6Uqs/3O8zdTHVD/S.owAMhXypxiathFHvU3b1ImaS6.80m0W"], ["confirmed_at", "2019-08-25 18:15:35.749946"], ["email", "lashawn@ziemekertzmann.net"], ["created_at", "2019-08-25 18:15:35.752090"], ["updated_at", "2019-08-25 18:15:35.752090"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lashawn@ziemekertzmann.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lashawn@ziemekertzmann.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"PbF-5RbYQtk3Q5OeNg0Egg\":{\"token\":\"$2a$10$ujjBX4snX7v2jm2xPMRUKusyre2Sm2MntNly1GoVsAwfkxdYkKJ/6\",\"expiry\":1567966535,\"updated_at\":\"2019-08-25 18:15:35 UTC\"}}"], ["updated_at", "2019-08-25 18:15:35.826293"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:15:35.829685"], ["last_sign_in_at", "2019-08-25 18:15:35.829685"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:15:35.830033"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 63ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "scottie@maggio.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "scottie@maggio.co"], ["encrypted_password", "$2a$04$wpNfVfDhVu1mlBSGCxm0RODrPoD/UsMsyjboQt5vJ1ZL6sfTQsnd."], ["confirmed_at", "2019-08-25 18:15:35.836675"], ["email", "scottie@maggio.co"], ["created_at", "2019-08-25 18:15:35.837510"], ["updated_at", "2019-08-25 18:15:35.837510"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"scottie@maggio.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "scottie@maggio.co"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "winfred@damore.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "winfred@damore.info"], ["encrypted_password", "$2a$04$5c7SQDX9LdpAVnp01OAHSuMWzTZqGkFkPYmFAzaaz71ENbAPFpih2"], ["confirmation_token", "XmxR5dM6AvBH7xYQYrxw"], ["confirmation_sent_at", "2019-08-25 18:15:35.848742"], ["email", "winfred@damore.info"], ["created_at", "2019-08-25 18:15:35.848619"], ["updated_at", "2019-08-25 18:15:35.848619"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"winfred@damore.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "winfred@damore.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ru.glover@heller.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ru.glover@heller.info"], ["encrypted_password", "$2a$04$Ty29qO/cy9vBE610M7vd6OJI18QhgDuJu1X1RpdE7JAs39PTHIuw2"], ["confirmed_at", "2019-08-25 18:15:35.856679"], ["locked_at", "2019-08-25 18:15:35.856698"], ["email", "ru.glover@heller.info"], ["created_at", "2019-08-25 18:15:35.857705"], ["updated_at", "2019-08-25 18:15:35.857705"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ru.glover@heller.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ru.glover@heller.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "columbus@lehner.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "columbus@lehner.biz"], ["encrypted_password", "$2a$04$2/wVy4YnhvZcFCE9Rbdv/uTwI4xjtqHt67rsRb9H6MJiB4Po8svZO"], ["confirmed_at", "2019-08-25 18:15:35.864615"], ["email", "columbus@lehner.biz"], ["created_at", "2019-08-25 18:15:35.865890"], ["updated_at", "2019-08-25 18:15:35.865890"], ["auth_available", "f"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"columbus@lehner.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "columbus@lehner.biz"], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "zulma@herzogsmith.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "zulma@herzogsmith.org"], ["encrypted_password", "$2a$04$gViKFbsukx71qvWPgJ7M2elho6Z4TqIYQ.87U3kUs9s2p/9arp5ey"], ["confirmed_at", "2019-08-25 18:15:39.634834"], ["email", "zulma@herzogsmith.org"], ["created_at", "2019-08-25 18:15:39.637716"], ["updated_at", "2019-08-25 18:15:39.637716"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"zulma@herzogsmith.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "zulma@herzogsmith.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jo3e478idtK8FIKVKu1XDg\":{\"token\":\"$2a$10$igqNV6ART7BbZGtTxRD.X.pfHUhghHboXPLe9s3PU3zY7bNB8xaWS\",\"expiry\":1567966539,\"updated_at\":\"2019-08-25 18:15:39 UTC\"}}"], ["updated_at", "2019-08-25 18:15:39.731727"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:15:39.735815"], ["last_sign_in_at", "2019-08-25 18:15:39.735815"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:15:39.736235"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 80ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "yi.anderson@cummerata.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "yi.anderson@cummerata.io"], ["encrypted_password", "$2a$04$XrxiTRPmbw7.UfiR6LctEu7U4TF5kyMJbm7bvtaKCfyMw.2xPqkuW"], ["confirmed_at", "2019-08-25 18:15:39.743739"], ["email", "yi.anderson@cummerata.io"], ["created_at", "2019-08-25 18:15:39.744729"], ["updated_at", "2019-08-25 18:15:39.744729"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"yi.anderson@cummerata.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "yi.anderson@cummerata.io"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "teddy@willmtroman.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "teddy@willmtroman.name"], ["encrypted_password", "$2a$04$QgGn232kTEenrfaTpCnJwuQmi.jNuswTnoRkQmwdv5r5pEZnR3gaK"], ["confirmation_token", "53GqZaRydGxXL9BFjdSB"], ["confirmation_sent_at", "2019-08-25 18:15:39.754805"], ["email", "teddy@willmtroman.name"], ["created_at", "2019-08-25 18:15:39.754709"], ["updated_at", "2019-08-25 18:15:39.754709"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"teddy@willmtroman.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "teddy@willmtroman.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "glory@bednar.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "glory@bednar.net"], ["encrypted_password", "$2a$04$KqXV8TLN04Lndeyw9Zq2SuKIW96L9wEU0yAFxfZ..ZxGbFWA6X.ba"], ["confirmed_at", "2019-08-25 18:15:39.761880"], ["locked_at", "2019-08-25 18:15:39.761905"], ["email", "glory@bednar.net"], ["created_at", "2019-08-25 18:15:39.763189"], ["updated_at", "2019-08-25 18:15:39.763189"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"glory@bednar.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "glory@bednar.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "norah@legroskeebler.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "norah@legroskeebler.com"], ["encrypted_password", "$2a$04$Rr9E7GzKGcRWDvF9zGjmfu/FiYinFkpW/3rWbbCynqfBB0fk5XVdO"], ["confirmed_at", "2019-08-25 18:15:39.771607"], ["email", "norah@legroskeebler.com"], ["created_at", "2019-08-25 18:15:39.772772"], ["updated_at", "2019-08-25 18:15:39.772772"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"norah@legroskeebler.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "norah@legroskeebler.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gerardo.zulauf@gutkowskisporer.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "gerardo.zulauf@gutkowskisporer.io"], ["encrypted_password", "$2a$04$gOIDKNGcqyF/bQtx4oDekuXj6u7XfqD/AWEXCUJrvY7CgWrJKywyS"], ["confirmed_at", "2019-08-25 18:15:45.290834"], ["email", "gerardo.zulauf@gutkowskisporer.io"], ["created_at", "2019-08-25 18:15:45.293296"], ["updated_at", "2019-08-25 18:15:45.293296"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"gerardo.zulauf@gutkowskisporer.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gerardo.zulauf@gutkowskisporer.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nvveUKJ5KrCPh8WrzfyC0w\":{\"token\":\"$2a$10$Zw8i/dUbLox7l9Q8TYYgFu8HWJoWD2MdgqLJZbqh3f1VXwOheJqRK\",\"expiry\":1567966545,\"updated_at\":\"2019-08-25 18:15:45 UTC\"}}"], ["updated_at", "2019-08-25 18:15:45.391345"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:15:45.395019"], ["last_sign_in_at", "2019-08-25 18:15:45.395019"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:15:45.395544"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 84ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shaunta@casper.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "shaunta@casper.com"], ["encrypted_password", "$2a$04$lwEP0um.PBQRhzLN4kaiI.XSzA5LpC8cJDKU03cUXdQjsVDCq4dQS"], ["confirmed_at", "2019-08-25 18:15:45.404021"], ["email", "shaunta@casper.com"], ["created_at", "2019-08-25 18:15:45.404962"], ["updated_at", "2019-08-25 18:15:45.404962"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"shaunta@casper.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shaunta@casper.com"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dave_nienow@weimann.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dave_nienow@weimann.name"], ["encrypted_password", "$2a$04$pl4FFuYYVPYgGA8xHizqEOY5juAL8uA.dmXgQk4gc5tjneqGpgKze"], ["confirmation_token", "U15A3p4Xa1Z1zjqqVn6S"], ["confirmation_sent_at", "2019-08-25 18:15:45.415278"], ["email", "dave_nienow@weimann.name"], ["created_at", "2019-08-25 18:15:45.415182"], ["updated_at", "2019-08-25 18:15:45.415182"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"dave_nienow@weimann.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dave_nienow@weimann.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "pat.greenfelder@ondrickaschamberger.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "pat.greenfelder@ondrickaschamberger.net"], ["encrypted_password", "$2a$04$67Z8xZSpNSMQvDNBR3IEFe5q/CsdzyY3ig1sLuOx30d5ZIkVDNAoS"], ["confirmed_at", "2019-08-25 18:15:45.422136"], ["locked_at", "2019-08-25 18:15:45.422147"], ["email", "pat.greenfelder@ondrickaschamberger.net"], ["created_at", "2019-08-25 18:15:45.422961"], ["updated_at", "2019-08-25 18:15:45.422961"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"pat.greenfelder@ondrickaschamberger.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "pat.greenfelder@ondrickaschamberger.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clarisa.batz@stracke.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "clarisa.batz@stracke.co"], ["encrypted_password", "$2a$04$Bgxxvadr1NN9Eyquy4or1./1qyZytSqxsm9U.ALq23t8zjhpfzTem"], ["confirmed_at", "2019-08-25 18:15:45.429733"], ["email", "clarisa.batz@stracke.co"], ["created_at", "2019-08-25 18:15:45.430703"], ["updated_at", "2019-08-25 18:15:45.430703"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"clarisa.batz@stracke.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "clarisa.batz@stracke.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "celesta@adamskulas.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "celesta@adamskulas.biz"], ["encrypted_password", "$2a$04$Jk3bLCZ1U.V3cb21cC/EqO29Wt2wtFjsQEF1d36/xXeWRB1XiVQ46"], ["confirmed_at", "2019-08-25 18:15:49.223150"], ["email", "celesta@adamskulas.biz"], ["created_at", "2019-08-25 18:15:49.225480"], ["updated_at", "2019-08-25 18:15:49.225480"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"celesta@adamskulas.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "celesta@adamskulas.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7koLejXCTtyOq_pZ-btqew\":{\"token\":\"$2a$10$RmVl/GKVVwMOoISiPC67QOa/QzZo.mkVYShWG4AJHB6TtPZUKrRBW\",\"expiry\":1567966549,\"updated_at\":\"2019-08-25 18:15:49 UTC\"}}"], ["updated_at", "2019-08-25 18:15:49.307118"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:15:49.310793"], ["last_sign_in_at", "2019-08-25 18:15:49.310793"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:15:49.311388"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 71ms (Views: 0.3ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chasidy.daniel@boylebrown.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "chasidy.daniel@boylebrown.io"], ["encrypted_password", "$2a$04$UUXwQYRRTOPetqpf655iMO0TlNsxC.p.hkwOymmEafGOSkG9VB3s2"], ["confirmed_at", "2019-08-25 18:15:49.320808"], ["email", "chasidy.daniel@boylebrown.io"], ["created_at", "2019-08-25 18:15:49.321908"], ["updated_at", "2019-08-25 18:15:49.321908"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"chasidy.daniel@boylebrown.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "chasidy.daniel@boylebrown.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kasey_kutch@ward.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kasey_kutch@ward.name"], ["encrypted_password", "$2a$04$47Hr2h98GEthYdrcWh/YJe5xI0wDHtj62dXrF1qPkpUGeCQ7ZEq3m"], ["confirmation_token", "hTimuJ1ZqYyhi_2Vr829"], ["confirmation_sent_at", "2019-08-25 18:15:49.333177"], ["email", "kasey_kutch@ward.name"], ["created_at", "2019-08-25 18:15:49.333054"], ["updated_at", "2019-08-25 18:15:49.333054"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kasey_kutch@ward.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kasey_kutch@ward.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kris_gleason@damorewest.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kris_gleason@damorewest.com"], ["encrypted_password", "$2a$04$hHruyIDXBQ/smSOwNRbCc.a6kDszQ1af1ZTgJ14Hg1cXSV4wEu2ri"], ["confirmed_at", "2019-08-25 18:15:49.341098"], ["locked_at", "2019-08-25 18:15:49.341111"], ["email", "kris_gleason@damorewest.com"], ["created_at", "2019-08-25 18:15:49.342071"], ["updated_at", "2019-08-25 18:15:49.342071"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kris_gleason@damorewest.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris_gleason@damorewest.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lucas.pfeffer@bradtkecummerata.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lucas.pfeffer@bradtkecummerata.org"], ["encrypted_password", "$2a$04$m82OHNB8fTeGpNpHma37Qu0E4VfQ2.L8QeUpeVJKSisFbsay71sYy"], ["confirmed_at", "2019-08-25 18:15:49.350738"], ["email", "lucas.pfeffer@bradtkecummerata.org"], ["created_at", "2019-08-25 18:15:49.351750"], ["updated_at", "2019-08-25 18:15:49.351750"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lucas.pfeffer@bradtkecummerata.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lucas.pfeffer@bradtkecummerata.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leo_lueilwitz@keebler.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "leo_lueilwitz@keebler.com"], ["encrypted_password", "$2a$04$3XsiJfBNh77wZPuduX5NbeCAPRnbSyhTd8MUBjHEKj/eKfEsesSVO"], ["confirmed_at", "2019-08-25 18:15:53.166511"], ["email", "leo_lueilwitz@keebler.com"], ["created_at", "2019-08-25 18:15:53.167727"], ["updated_at", "2019-08-25 18:15:53.167727"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"leo_lueilwitz@keebler.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leo_lueilwitz@keebler.com"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"xdZn74ZUzIF1Jl58R2gMCg\":{\"token\":\"$2a$10$gsWmcspU4oLfloHO6mdEZugD3kHETXcet0ankfgG/R/VED3JaegwW\",\"expiry\":1567966553,\"updated_at\":\"2019-08-25 18:15:53 UTC\"}}"], ["updated_at", "2019-08-25 18:15:53.239158"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:15:53.242488"], ["last_sign_in_at", "2019-08-25 18:15:53.242488"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:15:53.242712"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 62ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 12087) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rickie@mcdermott.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "rickie@mcdermott.net"], ["encrypted_password", "$2a$04$D2K5Yz3L6.9mRV6Iba7RGuG2tbGmpDf/8rspjFJAmV2/oQgrNdZCa"], ["confirmed_at", "2019-08-25 18:15:53.250668"], ["email", "rickie@mcdermott.net"], ["created_at", "2019-08-25 18:15:53.251556"], ["updated_at", "2019-08-25 18:15:53.251556"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"rickie@mcdermott.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rickie@mcdermott.net"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2101) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kandis.shanahan@hane.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kandis.shanahan@hane.org"], ["encrypted_password", "$2a$04$dVhoVYG92bUap5svlqrwGOIE5Pv1mi/oL9rt62l6/rfsOZu00GH2y"], ["confirmation_token", "D8n85xEAKYisu7SjmLUo"], ["confirmation_sent_at", "2019-08-25 18:15:53.261204"], ["email", "kandis.shanahan@hane.org"], ["created_at", "2019-08-25 18:15:53.261122"], ["updated_at", "2019-08-25 18:15:53.261122"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kandis.shanahan@hane.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kandis.shanahan@hane.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1292) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elliott_schumm@oreillyschuster.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "elliott_schumm@oreillyschuster.org"], ["encrypted_password", "$2a$04$uurR0E1A87FUf12LUf7zx.cKjB7Ts0ZFzphBKlm1UbH5rCj5w.nCC"], ["confirmed_at", "2019-08-25 18:15:53.267548"], ["locked_at", "2019-08-25 18:15:53.267557"], ["email", "elliott_schumm@oreillyschuster.org"], ["created_at", "2019-08-25 18:15:53.268269"], ["updated_at", "2019-08-25 18:15:53.268269"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"elliott_schumm@oreillyschuster.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elliott_schumm@oreillyschuster.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1310) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wilda@bartell.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "wilda@bartell.co"], ["encrypted_password", "$2a$04$9ZICNeiiOvqHuUjcb6fbj.AZKf66NNSHif07GM9ii3qza3lX8xfGa"], ["confirmed_at", "2019-08-25 18:15:53.274602"], ["email", "wilda@bartell.co"], ["created_at", "2019-08-25 18:15:53.275313"], ["updated_at", "2019-08-25 18:15:53.275313"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:15:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"wilda@bartell.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "wilda@bartell.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1289) TRANSACTION (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jovan@ritchiebergnaum.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jovan@ritchiebergnaum.org"], ["encrypted_password", "$2a$04$wvZtPNnqgE48yoolzA8zl.begLyIBBGWFaNXozr.7.Tk2D/zHKE3K"], ["confirmed_at", "2019-08-25 18:20:16.930048"], ["uid", "jovan@ritchiebergnaum.org"], ["created_at", "2019-08-25 18:20:16.936478"], ["updated_at", "2019-08-25 18:20:16.936478"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jovan@ritchiebergnaum.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "jovan@ritchiebergnaum.org"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"vfKyF-99HQIS-R0YhXVy3Q\":{\"token\":\"$2a$10$/Ws4.W83MqzgujuLgqC5Rei6KQEuotzNgJ1rkoZdLkVPeMbuL4c/q\",\"expiry\":1567966817,\"updated_at\":\"2019-08-25 18:20:16 UTC\"}}"], ["updated_at", "2019-08-25 18:20:17.020644"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-25 18:20:17.025171"], ["current_sign_in_at", "2019-08-25 18:20:17.025171"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:20:17.025590"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 68ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'norman.bruen@quigley.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "norman.bruen@quigley.org"], ["encrypted_password", "$2a$04$fyoFwztJA.d6kqTgGR7bTuw1GqekY.x82kEY0y/mRGLuiaLLLobIi"], ["confirmed_at", "2019-08-25 18:20:17.031177"], ["uid", "norman.bruen@quigley.org"], ["created_at", "2019-08-25 18:20:17.031897"], ["updated_at", "2019-08-25 18:20:17.031897"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"norman.bruen@quigley.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "norman.bruen@quigley.org"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'liette@hirthe.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "liette@hirthe.net"], ["encrypted_password", "$2a$04$kV.oSDs3SOEfoeluFKKoFuJSmpp5Cte2izduZlw3xQKkS.vht2TPC"], ["uid", "liette@hirthe.net"], ["created_at", "2019-08-25 18:20:17.042900"], ["updated_at", "2019-08-25 18:20:17.042900"], ["confirmation_token", "RgBvBf-pKdb8j4nQ_xjQ"], ["confirmation_sent_at", "2019-08-25 18:20:17.043066"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"liette@hirthe.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "liette@hirthe.net"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'samual.davis@altenwerth.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "samual.davis@altenwerth.com"], ["encrypted_password", "$2a$04$VT9agEbKo.hlQz5AZhnBwevob1eBLf7v5DFnyEJA9lGb9vkmr/Szm"], ["confirmed_at", "2019-08-25 18:20:17.051158"], ["locked_at", "2019-08-25 18:20:17.051219"], ["uid", "samual.davis@altenwerth.com"], ["created_at", "2019-08-25 18:20:17.052154"], ["updated_at", "2019-08-25 18:20:17.052154"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"samual.davis@altenwerth.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "samual.davis@altenwerth.com"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'terese.lynch@kohlergreen.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "terese.lynch@kohlergreen.co"], ["encrypted_password", "$2a$04$W0xz0X.Hi.ZzvPQbZ3U8SeEdDB77ua/FUWIQeV.psXnxyfNUuy58G"], ["confirmed_at", "2019-08-25 18:20:17.061747"], ["auth_available", "f"], ["uid", "terese.lynch@kohlergreen.co"], ["created_at", "2019-08-25 18:20:17.062747"], ["updated_at", "2019-08-25 18:20:17.062747"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"terese.lynch@kohlergreen.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "terese.lynch@kohlergreen.co"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "damon@armstrong.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "damon@armstrong.net"], ["encrypted_password", "$2a$04$mDGhUlsi.6OuXA15XSX0te/TsCAeauk0YmS5/CZO9Pszd8rjNL5.O"], ["confirmed_at", "2019-08-25 18:20:20.741611"], ["email", "damon@armstrong.net"], ["created_at", "2019-08-25 18:20:20.747217"], ["updated_at", "2019-08-25 18:20:20.747217"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"damon@armstrong.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "damon@armstrong.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2otvrlXvxHvukOgh9csKYw\":{\"token\":\"$2a$10$LvyCIqSXshm7zIW2PbWBb.WibVmeVYLpHumjRdBRZD.icxUWxopeW\",\"expiry\":1567966820,\"updated_at\":\"2019-08-25 18:20:20 UTC\"}}"], ["updated_at", "2019-08-25 18:20:20.830137"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:20:20.835491"], ["last_sign_in_at", "2019-08-25 18:20:20.835491"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:20:20.835973"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 73ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alita@wolffjacobson.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "alita@wolffjacobson.co"], ["encrypted_password", "$2a$04$apsndVYsTgoYqCXfnelUFuNwZZb/k8uTE6XmM7pBU.laBWKPoULr."], ["confirmed_at", "2019-08-25 18:20:20.843153"], ["email", "alita@wolffjacobson.co"], ["created_at", "2019-08-25 18:20:20.843984"], ["updated_at", "2019-08-25 18:20:20.843984"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"alita@wolffjacobson.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alita@wolffjacobson.co"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "paris.upton@wilkinson.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "paris.upton@wilkinson.info"], ["encrypted_password", "$2a$04$tkDk6WdiXm.cXP9ly62UEeY58U./x0LR8f8ue1fo/qAI0HXuCIuhm"], ["confirmation_token", "TTwDQvT7-9Bf9NGKbUcN"], ["confirmation_sent_at", "2019-08-25 18:20:20.853450"], ["email", "paris.upton@wilkinson.info"], ["created_at", "2019-08-25 18:20:20.853367"], ["updated_at", "2019-08-25 18:20:20.853367"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"paris.upton@wilkinson.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "paris.upton@wilkinson.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fletcher.lubowitz@borercruickshank.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "fletcher.lubowitz@borercruickshank.co"], ["encrypted_password", "$2a$04$D/aAZ1FVhQ2ezbWesG1bneHEDD5haD4DZsVCHJhX3TqPRURlmT2gq"], ["confirmed_at", "2019-08-25 18:20:20.859905"], ["locked_at", "2019-08-25 18:20:20.859919"], ["email", "fletcher.lubowitz@borercruickshank.co"], ["created_at", "2019-08-25 18:20:20.860938"], ["updated_at", "2019-08-25 18:20:20.860938"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"fletcher.lubowitz@borercruickshank.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "fletcher.lubowitz@borercruickshank.co"], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "beverley@hahn.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "beverley@hahn.co"], ["encrypted_password", "$2a$04$j8PbbHfx9JriB6EV4//Yt.Pc430EiqGsLlkWX27AM9Rd.TvxJ5Rmq"], ["confirmed_at", "2019-08-25 18:20:20.874773"], ["email", "beverley@hahn.co"], ["created_at", "2019-08-25 18:20:20.876181"], ["updated_at", "2019-08-25 18:20:20.876181"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"beverley@hahn.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "beverley@hahn.co"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "amos@hickle.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "amos@hickle.name"], ["encrypted_password", "$2a$04$lkUUoVEpBHy3y58UkW11XOD1uNPfXKczkD5ofjT5CrXTBwswhsr22"], ["confirmed_at", "2019-08-25 18:20:24.442839"], ["email", "amos@hickle.name"], ["created_at", "2019-08-25 18:20:24.444643"], ["updated_at", "2019-08-25 18:20:24.444643"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"amos@hickle.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "amos@hickle.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0LLfasc3H1ve5RZFhi_IMA\":{\"token\":\"$2a$10$NxqiH8wR1V9EtpKGL37R4eZZJOZW6hUpp4RRbxh8h/.BK1VwCW0ZG\",\"expiry\":1567966824,\"updated_at\":\"2019-08-25 18:20:24 UTC\"}}"], ["updated_at", "2019-08-25 18:20:24.511204"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:20:24.515045"], ["last_sign_in_at", "2019-08-25 18:20:24.515045"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:20:24.515758"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.3ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "winston.fay@gorczany.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "winston.fay@gorczany.net"], ["encrypted_password", "$2a$04$KcQaEkbp9LlXzySqqAF0rO4DeBMG7v2LhtnhXLDxnpZnwXbFgA20y"], ["confirmed_at", "2019-08-25 18:20:24.523213"], ["email", "winston.fay@gorczany.net"], ["created_at", "2019-08-25 18:20:24.524341"], ["updated_at", "2019-08-25 18:20:24.524341"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"winston.fay@gorczany.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "winston.fay@gorczany.net"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nathan_beer@aufderharstark.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nathan_beer@aufderharstark.co"], ["encrypted_password", "$2a$04$c/qwQ46lyddOTvmkAXFzgeNPTSVRxOsKbL1EbjfY4y2grbeLJIn2O"], ["confirmation_token", "3KBRsQMASFvxoEZHStFt"], ["confirmation_sent_at", "2019-08-25 18:20:24.534855"], ["email", "nathan_beer@aufderharstark.co"], ["created_at", "2019-08-25 18:20:24.534763"], ["updated_at", "2019-08-25 18:20:24.534763"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"nathan_beer@aufderharstark.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nathan_beer@aufderharstark.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "long_will@block.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "long_will@block.info"], ["encrypted_password", "$2a$04$emmUlGzsLRCiIJIHp4Gr/OLeOaoclo8AtqU5rgX1MUAsOgOgHjAiq"], ["confirmed_at", "2019-08-25 18:20:24.541326"], ["locked_at", "2019-08-25 18:20:24.541372"], ["email", "long_will@block.info"], ["created_at", "2019-08-25 18:20:24.543987"], ["updated_at", "2019-08-25 18:20:24.543987"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"long_will@block.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "long_will@block.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "claudie_mante@shanahan.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "claudie_mante@shanahan.com"], ["encrypted_password", "$2a$04$zPxVFdiSBUanXdpnsBWs7eOdiqOLH0vKYSdZl4MBbC5TY3wrVGab6"], ["confirmed_at", "2019-08-25 18:20:24.552816"], ["email", "claudie_mante@shanahan.com"], ["created_at", "2019-08-25 18:20:24.553703"], ["updated_at", "2019-08-25 18:20:24.553703"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"claudie_mante@shanahan.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "claudie_mante@shanahan.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (11.5ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "treie.reichert@rempel.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "treie.reichert@rempel.com"], ["encrypted_password", "$2a$04$X3VY33sJDYldyZqDW6HuN.7JQsQsNjyfnfl4buFXIeD/6av9WVVN."], ["confirmed_at", "2019-08-25 18:20:28.070136"], ["email", "treie.reichert@rempel.com"], ["created_at", "2019-08-25 18:20:28.071983"], ["updated_at", "2019-08-25 18:20:28.071983"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"treie.reichert@rempel.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "treie.reichert@rempel.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Teh7yPx6lQr_O_Z-7vhevA\":{\"token\":\"$2a$10$Bp8If2nbkw9xyT6vcqfInutiOJawbj/2TPqHMg8qEJ8KsgUW47vIi\",\"expiry\":1567966828,\"updated_at\":\"2019-08-25 18:20:28 UTC\"}}"], ["updated_at", "2019-08-25 18:20:28.137814"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:20:28.142127"], ["last_sign_in_at", "2019-08-25 18:20:28.142127"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:20:28.142622"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "corey.casper@herzogstroman.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "corey.casper@herzogstroman.co"], ["encrypted_password", "$2a$04$JomXgiY1whQ0Pygfx54PPO55khVZwTEf2QZ21/Gg04/HySQBIGsaS"], ["confirmed_at", "2019-08-25 18:20:28.150444"], ["email", "corey.casper@herzogstroman.co"], ["created_at", "2019-08-25 18:20:28.151290"], ["updated_at", "2019-08-25 18:20:28.151290"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"corey.casper@herzogstroman.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "corey.casper@herzogstroman.co"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "keith_wunsch@terry.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "keith_wunsch@terry.net"], ["encrypted_password", "$2a$04$jk6sbIMxxPKYDi7b6XG4L.gcB86kqWUpT7vnvso6QthuY01seRCv6"], ["confirmation_token", "SUMPAweqyE2BAPhLsZKs"], ["confirmation_sent_at", "2019-08-25 18:20:28.161309"], ["email", "keith_wunsch@terry.net"], ["created_at", "2019-08-25 18:20:28.161192"], ["updated_at", "2019-08-25 18:20:28.161192"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"keith_wunsch@terry.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "keith_wunsch@terry.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hai@rosenbaum.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hai@rosenbaum.com"], ["encrypted_password", "$2a$04$0UnkdIDk1x6dMWzbfWebP.bsm4ZNqC2pMzRrIi/4Elc8GKrkYfjJK"], ["confirmed_at", "2019-08-25 18:20:28.169163"], ["locked_at", "2019-08-25 18:20:28.169198"], ["email", "hai@rosenbaum.com"], ["created_at", "2019-08-25 18:20:28.171077"], ["updated_at", "2019-08-25 18:20:28.171077"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"hai@rosenbaum.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hai@rosenbaum.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nakita.ward@brakuskozey.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nakita.ward@brakuskozey.info"], ["encrypted_password", "$2a$04$4f2bvR7ahalLzvnBajbEWuLeIqa0MRyerZh711h81JpYs3GU4ogri"], ["confirmed_at", "2019-08-25 18:20:28.178957"], ["email", "nakita.ward@brakuskozey.info"], ["created_at", "2019-08-25 18:20:28.179915"], ["updated_at", "2019-08-25 18:20:28.179915"], ["auth_available", "f"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"nakita.ward@brakuskozey.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nakita.ward@brakuskozey.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "glen@haag.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "glen@haag.info"], ["encrypted_password", "$2a$04$VBGhbTXKiEO8jH7fGv0SEeh5tHmk.QclzsyedcxrQx9Obm.vC/ndC"], ["confirmed_at", "2019-08-25 18:20:31.545371"], ["email", "glen@haag.info"], ["created_at", "2019-08-25 18:20:31.547793"], ["updated_at", "2019-08-25 18:20:31.547793"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"glen@haag.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "glen@haag.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"81nyvnVT9UEojHM-Fc1t6g\":{\"token\":\"$2a$10$EYBWGmSecCmOhGpO3ptL3uoHVzedtpxPGS8ojK37V9atqagNHG4Bq\",\"expiry\":1567966831,\"updated_at\":\"2019-08-25 18:20:31 UTC\"}}"], ["updated_at", "2019-08-25 18:20:31.632469"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:20:31.635989"], ["last_sign_in_at", "2019-08-25 18:20:31.635989"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:20:31.636398"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 71ms (Views: 0.2ms | ActiveRecord: 0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tyler_larson@glover.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "tyler_larson@glover.net"], ["encrypted_password", "$2a$04$4KuR808E5sRzd5sKQS8miOE42HJvuOg8QW0rWPFoq9aGcEAjCFYoe"], ["confirmed_at", "2019-08-25 18:20:31.645720"], ["email", "tyler_larson@glover.net"], ["created_at", "2019-08-25 18:20:31.646668"], ["updated_at", "2019-08-25 18:20:31.646668"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"tyler_larson@glover.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tyler_larson@glover.net"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "benny@conn.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "benny@conn.co"], ["encrypted_password", "$2a$04$vpTjZgPOnMKQL.A4QwwLO.XZkUNkncGliBlDvTsS60.BbJ0v2PA06"], ["confirmation_token", "xkGX4AaA1VkMQ-BYL6WZ"], ["confirmation_sent_at", "2019-08-25 18:20:31.658698"], ["email", "benny@conn.co"], ["created_at", "2019-08-25 18:20:31.658576"], ["updated_at", "2019-08-25 18:20:31.658576"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"benny@conn.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "benny@conn.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "iac_hudson@tillman.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "iac_hudson@tillman.name"], ["encrypted_password", "$2a$04$YO7/PSNT1Swx41GSjFAn0./lKX6XlvAKMZnWMUQ901Kmcta0gEIGq"], ["confirmed_at", "2019-08-25 18:20:31.668703"], ["locked_at", "2019-08-25 18:20:31.668720"], ["email", "iac_hudson@tillman.name"], ["created_at", "2019-08-25 18:20:31.669711"], ["updated_at", "2019-08-25 18:20:31.669711"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"iac_hudson@tillman.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "iac_hudson@tillman.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "millard_bogisich@kingaufderhar.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "millard_bogisich@kingaufderhar.info"], ["encrypted_password", "$2a$04$HxY48xhVxDPSYvDpMXprrO7P2rozaoQZiVqjrVWwHWXVkHA0CD.ie"], ["confirmed_at", "2019-08-25 18:20:31.677982"], ["email", "millard_bogisich@kingaufderhar.info"], ["created_at", "2019-08-25 18:20:31.679244"], ["updated_at", "2019-08-25 18:20:31.679244"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"millard_bogisich@kingaufderhar.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "millard_bogisich@kingaufderhar.info"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "aileen.graham@hettingerstamm.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "aileen.graham@hettingerstamm.io"], ["encrypted_password", "$2a$04$bkD24b3NCY82xfZ9YFqGvOsKovf5D1VijU/pk3yM98qsZCp44CYam"], ["confirmed_at", "2019-08-25 18:20:35.060727"], ["email", "aileen.graham@hettingerstamm.io"], ["created_at", "2019-08-25 18:20:35.062662"], ["updated_at", "2019-08-25 18:20:35.062662"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"aileen.graham@hettingerstamm.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "aileen.graham@hettingerstamm.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OSNHEgfpjN_1WggUIMfxGg\":{\"token\":\"$2a$10$dASNepLBiXYaWNKbTCsax.4ZODpfH998ju8MusylZ92r6bYGEC3/2\",\"expiry\":1567966835,\"updated_at\":\"2019-08-25 18:20:35 UTC\"}}"], ["updated_at", "2019-08-25 18:20:35.130358"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:20:35.134394"], ["last_sign_in_at", "2019-08-25 18:20:35.134394"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:20:35.134849"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.3ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jonna@mclaughlin.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jonna@mclaughlin.io"], ["encrypted_password", "$2a$04$9/KcFRgqJW2sjx09x/SXyuQiLQbjorjXk88I5m09bPo13sqqNd9eS"], ["confirmed_at", "2019-08-25 18:20:35.142908"], ["email", "jonna@mclaughlin.io"], ["created_at", "2019-08-25 18:20:35.143788"], ["updated_at", "2019-08-25 18:20:35.143788"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jonna@mclaughlin.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jonna@mclaughlin.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wilbert@heidenreich.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "wilbert@heidenreich.io"], ["encrypted_password", "$2a$04$NsOfVUGmOI7Sncxh0ln5au5jkVjVvyfqC7w8hQREl7EOjAdE13PVe"], ["confirmation_token", "C1A2L2E-i1mYr1F9sygn"], ["confirmation_sent_at", "2019-08-25 18:20:35.154130"], ["email", "wilbert@heidenreich.io"], ["created_at", "2019-08-25 18:20:35.154034"], ["updated_at", "2019-08-25 18:20:35.154034"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"wilbert@heidenreich.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "wilbert@heidenreich.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "travis_yost@hagenes.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "travis_yost@hagenes.io"], ["encrypted_password", "$2a$04$3KCis42mmClKOmncgp6KmOaik4qtLGKtTdm8UjcEd6bV/xu2JCWfW"], ["confirmed_at", "2019-08-25 18:20:35.160654"], ["locked_at", "2019-08-25 18:20:35.160685"], ["email", "travis_yost@hagenes.io"], ["created_at", "2019-08-25 18:20:35.162631"], ["updated_at", "2019-08-25 18:20:35.162631"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"travis_yost@hagenes.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "travis_yost@hagenes.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ashlee_herman@franecki.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ashlee_herman@franecki.org"], ["encrypted_password", "$2a$04$t7C92CGTgwSDbHmeXtS0gu1JULiidG/JD/XNx6tNWJdfOMklN4GnO"], ["confirmed_at", "2019-08-25 18:20:35.170638"], ["email", "ashlee_herman@franecki.org"], ["created_at", "2019-08-25 18:20:35.171533"], ["updated_at", "2019-08-25 18:20:35.171533"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ashlee_herman@franecki.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ashlee_herman@franecki.org"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dudley@davisherzog.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "dudley@davisherzog.biz"], ["encrypted_password", "$2a$04$KMTL2h2qGbeqwwFR.mmcO.mR5ikfCbl4bKlUih1Q2viTictySv6qe"], ["confirmed_at", "2019-08-25 18:20:38.554791"], ["email", "dudley@davisherzog.biz"], ["created_at", "2019-08-25 18:20:38.556003"], ["updated_at", "2019-08-25 18:20:38.556003"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"dudley@davisherzog.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dudley@davisherzog.biz"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"C0qdnjHOJn9X8cPp8Encrg\":{\"token\":\"$2a$10$qZRrrO1fngC9yXGAdCtCHuCFllu30i00ZRKcvroXoVUTZ8xaB6Z72\",\"expiry\":1567966838,\"updated_at\":\"2019-08-25 18:20:38 UTC\"}}"], ["updated_at", "2019-08-25 18:20:38.626417"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:20:38.629458"], ["last_sign_in_at", "2019-08-25 18:20:38.629458"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:20:38.629646"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 12084) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jacqualine@anderson.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jacqualine@anderson.io"], ["encrypted_password", "$2a$04$m.NySOvLWOF6fDD/hGas1u/jUJXXek3/k5ogrT2Fp7F0MosaAmKpm"], ["confirmed_at", "2019-08-25 18:20:38.636543"], ["email", "jacqualine@anderson.io"], ["created_at", "2019-08-25 18:20:38.637333"], ["updated_at", "2019-08-25 18:20:38.637333"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jacqualine@anderson.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jacqualine@anderson.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2101) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "benton@witting.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "benton@witting.io"], ["encrypted_password", "$2a$04$y0GSRbzPi2eH0JPlWHZfley1lgQqIZ/tUX3WspZ.S592BgsD84yCC"], ["confirmation_token", "sHxJ1UxDzrAqnvcvxvxX"], ["confirmation_sent_at", "2019-08-25 18:20:38.646546"], ["email", "benton@witting.io"], ["created_at", "2019-08-25 18:20:38.646473"], ["updated_at", "2019-08-25 18:20:38.646473"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"benton@witting.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "benton@witting.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1291) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lin@champlin.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lin@champlin.co"], ["encrypted_password", "$2a$04$OB9RCFvB2NMJmA6XrKSEVu9J8Gz.FjL9XHLX9k94mi.XnL8N6s8CW"], ["confirmed_at", "2019-08-25 18:20:38.652469"], ["locked_at", "2019-08-25 18:20:38.652478"], ["email", "lin@champlin.co"], ["created_at", "2019-08-25 18:20:38.653140"], ["updated_at", "2019-08-25 18:20:38.653140"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lin@champlin.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lin@champlin.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1310) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "albertine@hermanmonahan.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "albertine@hermanmonahan.com"], ["encrypted_password", "$2a$04$3DfJZ8XK.1z.Im0t9d5qNe12ktIyWgI5pkcj1jfzkEo1urFzoecuW"], ["confirmed_at", "2019-08-25 18:20:38.662344"], ["email", "albertine@hermanmonahan.com"], ["created_at", "2019-08-25 18:20:38.663175"], ["updated_at", "2019-08-25 18:20:38.663175"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:20:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"albertine@hermanmonahan.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "albertine@hermanmonahan.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 1289) TRANSACTION (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'kennith.dietrich@hammeshand.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kennith.dietrich@hammeshand.co"], ["encrypted_password", "$2a$04$d5cjKd0gnySWjoXqBtBo3.pwMcxwb9OuY1cSB149nFP07eS/ytdee"], ["confirmed_at", "2019-08-25 18:25:29.275480"], ["uid", "kennith.dietrich@hammeshand.co"], ["created_at", "2019-08-25 18:25:29.282146"], ["updated_at", "2019-08-25 18:25:29.282146"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:25:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kennith.dietrich@hammeshand.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "kennith.dietrich@hammeshand.co"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NHn0_qGQpMn-pgFQVup5mw\":{\"token\":\"$2a$10$jb7fp5QZHFlOS.VGIBhFT.Xkl4f./3nfJ.v8FEQyH6yTZfCDxVCs6\",\"expiry\":1567967129,\"updated_at\":\"2019-08-25 18:25:29 UTC\"}}"], ["updated_at", "2019-08-25 18:25:29.384108"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-25 18:25:29.389456"], ["current_sign_in_at", "2019-08-25 18:25:29.389456"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:25:29.390241"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 81ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'irving.goyette@mclaughlin.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "irving.goyette@mclaughlin.co"], ["encrypted_password", "$2a$04$z5NFzMVIpmHbSvv07585tO7W6nrsa5HP2Z8dOEEwrAhFNquIqZd.K"], ["confirmed_at", "2019-08-25 18:25:29.398187"], ["uid", "irving.goyette@mclaughlin.co"], ["created_at", "2019-08-25 18:25:29.399082"], ["updated_at", "2019-08-25 18:25:29.399082"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:25:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"irving.goyette@mclaughlin.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "irving.goyette@mclaughlin.co"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'ozzie@jaskolski.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "ozzie@jaskolski.co"], ["encrypted_password", "$2a$04$iwUUWKkIRbwIfl0x.hoVq.Zxa.PI8ejUh3qWpXJCspEag9HqhWOPK"], ["uid", "ozzie@jaskolski.co"], ["created_at", "2019-08-25 18:25:29.412800"], ["updated_at", "2019-08-25 18:25:29.412800"], ["confirmation_token", "HZeBa6V33soP45A8ykNu"], ["confirmation_sent_at", "2019-08-25 18:25:29.413068"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:25:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ozzie@jaskolski.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "ozzie@jaskolski.co"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'mckinley_bayer@schroeder.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "mckinley_bayer@schroeder.com"], ["encrypted_password", "$2a$04$OEPg28wDP/NMilX3sCi4QOMIJbW2uBgpUfQgIxtSLmNgRsOHYBi0W"], ["confirmed_at", "2019-08-25 18:25:29.424028"], ["locked_at", "2019-08-25 18:25:29.424177"], ["uid", "mckinley_bayer@schroeder.com"], ["created_at", "2019-08-25 18:25:29.426235"], ["updated_at", "2019-08-25 18:25:29.426235"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:25:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"mckinley_bayer@schroeder.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "mckinley_bayer@schroeder.com"]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'keven.schoen@pouros.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "keven.schoen@pouros.io"], ["encrypted_password", "$2a$04$5KK8.vrfQjDAgmrw4rKqGe0K9JmYOLI9bPQWdHtXUtFvqAdy41IoG"], ["confirmed_at", "2019-08-25 18:25:29.441350"], ["auth_available", "f"], ["uid", "keven.schoen@pouros.io"], ["created_at", "2019-08-25 18:25:29.443055"], ["updated_at", "2019-08-25 18:25:29.443055"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:25:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"keven.schoen@pouros.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "keven.schoen@pouros.io"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jacob@schroeder.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jacob@schroeder.info"], ["encrypted_password", "$2a$04$4cd2TONzMa07LTkxKJGhxuk.AutZWUaneBpdb7w0AzXeiqds0ZcKK"], ["confirmed_at", "2019-08-25 18:26:35.137369"], ["uid", "jacob@schroeder.info"], ["created_at", "2019-08-25 18:26:35.143494"], ["updated_at", "2019-08-25 18:26:35.143494"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jacob@schroeder.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "jacob@schroeder.info"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BBta79W_fG1aq_K2Ad9XOg\":{\"token\":\"$2a$10$GvixBilBw.w0469fwabMYeNl332CBQhsuT1RD82tGx.UVtelhRuV.\",\"expiry\":1567967195,\"updated_at\":\"2019-08-25 18:26:35 UTC\"}}"], ["updated_at", "2019-08-25 18:26:35.223407"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-25 18:26:35.227789"], ["current_sign_in_at", "2019-08-25 18:26:35.227789"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:26:35.228190"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 66ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'palmer@gutmann.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "palmer@gutmann.org"], ["encrypted_password", "$2a$04$7ObBThkLDFb0pBT/avoNouNMv/y2NzwpuD.zj19vcXSLsq/vpHY3C"], ["confirmed_at", "2019-08-25 18:26:35.234461"], ["uid", "palmer@gutmann.org"], ["created_at", "2019-08-25 18:26:35.235311"], ["updated_at", "2019-08-25 18:26:35.235311"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"palmer@gutmann.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "palmer@gutmann.org"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'leroy@heel.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "leroy@heel.co"], ["encrypted_password", "$2a$04$zbk4KU3W/5RCJUI/MkNPoOGII0Vziq7uP10f9..f5wSz4s5p/sBX6"], ["uid", "leroy@heel.co"], ["created_at", "2019-08-25 18:26:35.245776"], ["updated_at", "2019-08-25 18:26:35.245776"], ["confirmation_token", "a2MxgJqS3EZf6Wmvnq8q"], ["confirmation_sent_at", "2019-08-25 18:26:35.245917"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"leroy@heel.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "leroy@heel.co"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'josue@gutmann.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "josue@gutmann.net"], ["encrypted_password", "$2a$04$FbMMT178KnZNc0VyyLmme.A3vhXqDOvX72ZdMmg89Nx8DKfOFpDku"], ["confirmed_at", "2019-08-25 18:26:35.254042"], ["locked_at", "2019-08-25 18:26:35.254103"], ["uid", "josue@gutmann.net"], ["created_at", "2019-08-25 18:26:35.255022"], ["updated_at", "2019-08-25 18:26:35.255022"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"josue@gutmann.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "josue@gutmann.net"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'coralie@walker.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "coralie@walker.net"], ["encrypted_password", "$2a$04$5tDgez8Cgp82PLWnJfl5HucgB9INzvERm0LL9ZWTT1WXTT1zhnBRW"], ["confirmed_at", "2019-08-25 18:26:35.263996"], ["auth_available", "f"], ["uid", "coralie@walker.net"], ["created_at", "2019-08-25 18:26:35.264930"], ["updated_at", "2019-08-25 18:26:35.264930"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"coralie@walker.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "coralie@walker.net"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jordan.buckridge@hilpertsatterfield.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jordan.buckridge@hilpertsatterfield.name"], ["encrypted_password", "$2a$04$cBF79x3CDWhYi7yBq4G7lOKpkZi6U.Czd/tle/FeN9Lb1KP74eIqG"], ["confirmed_at", "2019-08-25 18:26:38.933172"], ["email", "jordan.buckridge@hilpertsatterfield.name"], ["created_at", "2019-08-25 18:26:38.939016"], ["updated_at", "2019-08-25 18:26:38.939016"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jordan.buckridge@hilpertsatterfield.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jordan.buckridge@hilpertsatterfield.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"puGD1CY2VgYiVFi3HbQm7g\":{\"token\":\"$2a$10$UKyKySLBugYA2iUB4EH5heAIE24K4vay6ucgM19s0ozirDzCTw23i\",\"expiry\":1567967199,\"updated_at\":\"2019-08-25 18:26:38 UTC\"}}"], ["updated_at", "2019-08-25 18:26:39.019203"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:26:39.024401"], ["last_sign_in_at", "2019-08-25 18:26:39.024401"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:26:39.024868"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 71ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "reed.rutherford@macejkovic.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "reed.rutherford@macejkovic.org"], ["encrypted_password", "$2a$04$Yylsj2j9ia.eQWlIGfSxg.mt8GKtrc32al6d3a8DBAEO74Oz1O5Ga"], ["confirmed_at", "2019-08-25 18:26:39.031778"], ["email", "reed.rutherford@macejkovic.org"], ["created_at", "2019-08-25 18:26:39.032586"], ["updated_at", "2019-08-25 18:26:39.032586"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"reed.rutherford@macejkovic.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "reed.rutherford@macejkovic.org"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kristyn@ferry.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kristyn@ferry.biz"], ["encrypted_password", "$2a$04$JsMOkSbov0j7qganQD8l3.OzCjU5UAqQWGU6OC44SSbu8BgyTLA0K"], ["confirmation_token", "tdvc-fssSrQz8h_u63Cu"], ["confirmation_sent_at", "2019-08-25 18:26:39.043907"], ["email", "kristyn@ferry.biz"], ["created_at", "2019-08-25 18:26:39.043801"], ["updated_at", "2019-08-25 18:26:39.043801"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kristyn@ferry.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kristyn@ferry.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nana@kaulke.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nana@kaulke.info"], ["encrypted_password", "$2a$04$rBvQM/S4JJL15DZ3vVIHze6GfXRjJCG8GQ/eaNZUM5icd7n/5FJA."], ["confirmed_at", "2019-08-25 18:26:39.051140"], ["locked_at", "2019-08-25 18:26:39.051156"], ["email", "nana@kaulke.info"], ["created_at", "2019-08-25 18:26:39.052224"], ["updated_at", "2019-08-25 18:26:39.052224"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"nana@kaulke.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nana@kaulke.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "scarlett@mayer.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "scarlett@mayer.io"], ["encrypted_password", "$2a$04$/EbrIhurVva/onboJ.H/U.YbeaE.3kSMVRDM7dcQ7XlKZFP4RvHW6"], ["confirmed_at", "2019-08-25 18:26:39.060471"], ["email", "scarlett@mayer.io"], ["created_at", "2019-08-25 18:26:39.061426"], ["updated_at", "2019-08-25 18:26:39.061426"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"scarlett@mayer.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "scarlett@mayer.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "geraldo@kertzmann.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "geraldo@kertzmann.biz"], ["encrypted_password", "$2a$04$gUfsbUMqB.Qb2/xOFknR1uuJiwMkF7e0TWLz3uYFscalWlKy7etJi"], ["confirmed_at", "2019-08-25 18:26:42.942457"], ["email", "geraldo@kertzmann.biz"], ["created_at", "2019-08-25 18:26:42.944617"], ["updated_at", "2019-08-25 18:26:42.944617"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"geraldo@kertzmann.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "geraldo@kertzmann.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-Pe8j2rH_ovoOiNvvbCA0Q\":{\"token\":\"$2a$10$isKhH4zJhW2186/MQh342.15BMhpYdpBt13F9nRhs.Bz7rxD.1fru\",\"expiry\":1567967203,\"updated_at\":\"2019-08-25 18:26:42 UTC\"}}"], ["updated_at", "2019-08-25 18:26:43.014027"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:26:43.018942"], ["last_sign_in_at", "2019-08-25 18:26:43.018942"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:26:43.019425"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arnoldo@grimes.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "arnoldo@grimes.biz"], ["encrypted_password", "$2a$04$1AgI7rttVMYjT/utEDvW1OZtoGpQ5KK2cwL/ep1Hm6iXcFowbByNq"], ["confirmed_at", "2019-08-25 18:26:43.028209"], ["email", "arnoldo@grimes.biz"], ["created_at", "2019-08-25 18:26:43.029307"], ["updated_at", "2019-08-25 18:26:43.029307"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"arnoldo@grimes.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "arnoldo@grimes.biz"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ilana_morar@williamson.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ilana_morar@williamson.info"], ["encrypted_password", "$2a$04$Z1h0IENjg5uGdz9iTnYpre5ia/cwCikK25ixaMGxfwW/bkf0cvyeK"], ["confirmation_token", "Lx5KQ2HkUxMFxexxAT7z"], ["confirmation_sent_at", "2019-08-25 18:26:43.040081"], ["email", "ilana_morar@williamson.info"], ["created_at", "2019-08-25 18:26:43.039970"], ["updated_at", "2019-08-25 18:26:43.039970"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ilana_morar@williamson.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ilana_morar@williamson.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "malisa.howell@okuneva.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "malisa.howell@okuneva.name"], ["encrypted_password", "$2a$04$JhnF4hFQRWmFm3181Mr/GeqXuHHUDqBUJDgHw0QzGiZ7nql.bRr0."], ["confirmed_at", "2019-08-25 18:26:43.047329"], ["locked_at", "2019-08-25 18:26:43.047359"], ["email", "malisa.howell@okuneva.name"], ["created_at", "2019-08-25 18:26:43.049365"], ["updated_at", "2019-08-25 18:26:43.049365"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"malisa.howell@okuneva.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "malisa.howell@okuneva.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "linn@hillsrogahn.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "linn@hillsrogahn.biz"], ["encrypted_password", "$2a$04$hCSOeD7HV8VtPw8OiDsl3uvXsZYy08V0KUKhL2VWI7ooOY5soOaVi"], ["confirmed_at", "2019-08-25 18:26:43.057098"], ["email", "linn@hillsrogahn.biz"], ["created_at", "2019-08-25 18:26:43.058000"], ["updated_at", "2019-08-25 18:26:43.058000"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"linn@hillsrogahn.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "linn@hillsrogahn.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nestor_reinger@cremin.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "nestor_reinger@cremin.com"], ["encrypted_password", "$2a$04$.s1SiKbZLBIaO4t53eTVJOcdzBTOwVth4yTjG42ciF/bLV1Y4ExoG"], ["confirmed_at", "2019-08-25 18:26:46.341806"], ["email", "nestor_reinger@cremin.com"], ["created_at", "2019-08-25 18:26:46.343562"], ["updated_at", "2019-08-25 18:26:46.343562"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:46 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"nestor_reinger@cremin.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nestor_reinger@cremin.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"aZ5X-ICNAniMkpnjLdhc-w\":{\"token\":\"$2a$10$GMJh1qg7xqKvRxhZpkINqeAMiYmTtkEnEWV7hYA8FT.R6xfmHIjUi\",\"expiry\":1567967206,\"updated_at\":\"2019-08-25 18:26:46 UTC\"}}"], ["updated_at", "2019-08-25 18:26:46.412923"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:26:46.416703"], ["last_sign_in_at", "2019-08-25 18:26:46.416703"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:26:46.417180"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 62ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "yeenia@schultz.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "yeenia@schultz.name"], ["encrypted_password", "$2a$04$CJ90vIG/qQrrJNMq.GAv7ed5nmI/rxiv.6QMa.GJSoR4gW4HP4GIu"], ["confirmed_at", "2019-08-25 18:26:46.424664"], ["email", "yeenia@schultz.name"], ["created_at", "2019-08-25 18:26:46.425550"], ["updated_at", "2019-08-25 18:26:46.425550"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:46 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"yeenia@schultz.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "yeenia@schultz.name"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "geraldo.rogahn@green.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "geraldo.rogahn@green.biz"], ["encrypted_password", "$2a$04$7gJKpuKgldYQi8DByUDjee5AKYoWaxPkbLqqFi3xvbzsyOkHFqwIq"], ["confirmation_token", "3brJozzNeK2xtmD5s2p8"], ["confirmation_sent_at", "2019-08-25 18:26:46.435207"], ["email", "geraldo.rogahn@green.biz"], ["created_at", "2019-08-25 18:26:46.435118"], ["updated_at", "2019-08-25 18:26:46.435118"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:46 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"geraldo.rogahn@green.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "geraldo.rogahn@green.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shelton.brekke@weimann.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shelton.brekke@weimann.io"], ["encrypted_password", "$2a$04$TGOUi0a5PAsB4OgnqfvZZOpqW46.7erS9qpTaL0qbSRBXdVUstenW"], ["confirmed_at", "2019-08-25 18:26:46.441202"], ["locked_at", "2019-08-25 18:26:46.441212"], ["email", "shelton.brekke@weimann.io"], ["created_at", "2019-08-25 18:26:46.442004"], ["updated_at", "2019-08-25 18:26:46.442004"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:46 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"shelton.brekke@weimann.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shelton.brekke@weimann.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ming@beahan.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ming@beahan.co"], ["encrypted_password", "$2a$04$WT0PEEtqnTapBnA/ODp1QewH5umZKpqmp0tQG.KhFmEDW/Y1WTndy"], ["confirmed_at", "2019-08-25 18:26:46.449943"], ["email", "ming@beahan.co"], ["created_at", "2019-08-25 18:26:46.450947"], ["updated_at", "2019-08-25 18:26:46.450947"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:46 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ming@beahan.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ming@beahan.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brianne_connelly@ko.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "brianne_connelly@ko.name"], ["encrypted_password", "$2a$04$x7uxIsNnFsvMvJ/3lpShp.2ADGbbKXss4soRyxyX7Bnonx4xRSX86"], ["confirmed_at", "2019-08-25 18:26:49.737264"], ["email", "brianne_connelly@ko.name"], ["created_at", "2019-08-25 18:26:49.739252"], ["updated_at", "2019-08-25 18:26:49.739252"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"brianne_connelly@ko.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "brianne_connelly@ko.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Ih0iHM-15NTs-0fJPIkT6A\":{\"token\":\"$2a$10$4hs9zGkx/CHTkCcOJX.14.RATE3WyNjpALZTsFQ9HBD.8ljPJ5dNq\",\"expiry\":1567967209,\"updated_at\":\"2019-08-25 18:26:49 UTC\"}}"], ["updated_at", "2019-08-25 18:26:49.810865"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:26:49.813856"], ["last_sign_in_at", "2019-08-25 18:26:49.813856"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:26:49.814218"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 61ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kum@cronin.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "kum@cronin.io"], ["encrypted_password", "$2a$04$tgDpkexqRolrhjMsVCB0rOnqg/SehiOCpTHETSZ8VJ7dshmlPsEV."], ["confirmed_at", "2019-08-25 18:26:49.822015"], ["email", "kum@cronin.io"], ["created_at", "2019-08-25 18:26:49.822878"], ["updated_at", "2019-08-25 18:26:49.822878"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kum@cronin.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kum@cronin.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "otis@champlinzboncak.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "otis@champlinzboncak.org"], ["encrypted_password", "$2a$04$1S0b/b/4b3Ordxp4bVScA.dPgBW7vVqfb9Patf3ffM.R/1T6RP6Qa"], ["confirmation_token", "tDAsrhRP9wNx6e1nvbTT"], ["confirmation_sent_at", "2019-08-25 18:26:49.832250"], ["email", "otis@champlinzboncak.org"], ["created_at", "2019-08-25 18:26:49.832168"], ["updated_at", "2019-08-25 18:26:49.832168"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"otis@champlinzboncak.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "otis@champlinzboncak.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "andrew_wyman@dicki.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "andrew_wyman@dicki.net"], ["encrypted_password", "$2a$04$uFkDbPVf8huPiemfKYv9a.ukv58XDlhZWsZ/Kkjh4Jf1/3CAYMGQ6"], ["confirmed_at", "2019-08-25 18:26:49.838340"], ["locked_at", "2019-08-25 18:26:49.838351"], ["email", "andrew_wyman@dicki.net"], ["created_at", "2019-08-25 18:26:49.839091"], ["updated_at", "2019-08-25 18:26:49.839091"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"andrew_wyman@dicki.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "andrew_wyman@dicki.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "else_mraz@dachstoltenberg.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "else_mraz@dachstoltenberg.biz"], ["encrypted_password", "$2a$04$lzlf6Q/fE9B0INeHJoDs8eH3at8ff.6zstKdBbww3LkCowIkaQzWS"], ["confirmed_at", "2019-08-25 18:26:49.845978"], ["email", "else_mraz@dachstoltenberg.biz"], ["created_at", "2019-08-25 18:26:49.846818"], ["updated_at", "2019-08-25 18:26:49.846818"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"else_mraz@dachstoltenberg.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "else_mraz@dachstoltenberg.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hong@johnslabadie.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "hong@johnslabadie.biz"], ["encrypted_password", "$2a$04$DL.Al2yQkxkWFNUJPkMcfetFcZIRbk.uZDBWz8zCFOI50zUY1qjsG"], ["confirmed_at", "2019-08-25 18:26:53.574228"], ["email", "hong@johnslabadie.biz"], ["created_at", "2019-08-25 18:26:53.576132"], ["updated_at", "2019-08-25 18:26:53.576132"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"hong@johnslabadie.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hong@johnslabadie.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yRxU_oiYTrgkHY8yfEHFqA\":{\"token\":\"$2a$10$f291o/leLO7og.x2.gutGO5a2BM6sm1D7chBpViB0ZYvCUjfiSQvy\",\"expiry\":1567967213,\"updated_at\":\"2019-08-25 18:26:53 UTC\"}}"], ["updated_at", "2019-08-25 18:26:53.644869"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:26:53.647864"], ["last_sign_in_at", "2019-08-25 18:26:53.647864"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:26:53.648226"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "coral.bergnaum@koelpin.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "coral.bergnaum@koelpin.io"], ["encrypted_password", "$2a$04$VOS4HlKOM.xJPkD4m33YGepkvnYxosCLMaBDoZJw.F7moJSm7eomq"], ["confirmed_at", "2019-08-25 18:26:53.655596"], ["email", "coral.bergnaum@koelpin.io"], ["created_at", "2019-08-25 18:26:53.656418"], ["updated_at", "2019-08-25 18:26:53.656418"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"coral.bergnaum@koelpin.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "coral.bergnaum@koelpin.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "emory@franecki.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "emory@franecki.co"], ["encrypted_password", "$2a$04$lf1R2QSlJLQe6uGAdpjQCuCTju/k1jc/kFFk9dbfPoygH6W5ZIlNa"], ["confirmation_token", "CWM_5pm9bUvzf4y5xGN_"], ["confirmation_sent_at", "2019-08-25 18:26:53.665491"], ["email", "emory@franecki.co"], ["created_at", "2019-08-25 18:26:53.665404"], ["updated_at", "2019-08-25 18:26:53.665404"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"emory@franecki.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "emory@franecki.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stephen.mcglynn@bednar.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "stephen.mcglynn@bednar.biz"], ["encrypted_password", "$2a$04$/7h0gWukLrl5a77s0XxdO.o2H8bXdMEFBwYVRCzfcfpVczaogZn3i"], ["confirmed_at", "2019-08-25 18:26:53.671257"], ["locked_at", "2019-08-25 18:26:53.671266"], ["email", "stephen.mcglynn@bednar.biz"], ["created_at", "2019-08-25 18:26:53.671953"], ["updated_at", "2019-08-25 18:26:53.671953"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"stephen.mcglynn@bednar.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stephen.mcglynn@bednar.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "myrna@heaneybogan.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "myrna@heaneybogan.io"], ["encrypted_password", "$2a$04$2e77kxYmSN/NMQXIScm7EeHyKrzzs/4xGnQBYxMDemmKaN72BvC.e"], ["confirmed_at", "2019-08-25 18:26:53.678410"], ["email", "myrna@heaneybogan.io"], ["created_at", "2019-08-25 18:26:53.679234"], ["updated_at", "2019-08-25 18:26:53.679234"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"myrna@heaneybogan.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "myrna@heaneybogan.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "digna.considine@little.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "digna.considine@little.biz"], ["encrypted_password", "$2a$04$poftv4HWiu7VtJ2q8v5Yp.1/ZYs7UcAcYwYcEMVna37/0scp7mAyK"], ["confirmed_at", "2019-08-25 18:26:57.060569"], ["email", "digna.considine@little.biz"], ["created_at", "2019-08-25 18:26:57.061767"], ["updated_at", "2019-08-25 18:26:57.061767"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"digna.considine@little.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "digna.considine@little.biz"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"V_RyOPI1zcTgLWMgQ1G86g\":{\"token\":\"$2a$10$4/kl1WAFTcpgIOvn.ygLue9AN0AVjsTqxAevaUC2b11BHUcqpnv2i\",\"expiry\":1567967217,\"updated_at\":\"2019-08-25 18:26:57 UTC\"}}"], ["updated_at", "2019-08-25 18:26:57.130509"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:26:57.134483"], ["last_sign_in_at", "2019-08-25 18:26:57.134483"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:26:57.134797"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 12087) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "willene_mann@nader.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "willene_mann@nader.co"], ["encrypted_password", "$2a$04$FSeq8goFjFZKt0SJW6QMZes4LLzdEInrmanxg5xuWV4cu/8gAOWx."], ["confirmed_at", "2019-08-25 18:26:57.142265"], ["email", "willene_mann@nader.co"], ["created_at", "2019-08-25 18:26:57.143044"], ["updated_at", "2019-08-25 18:26:57.143044"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"willene_mann@nader.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "willene_mann@nader.co"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2101) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sarai_bartell@mcglynn.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sarai_bartell@mcglynn.biz"], ["encrypted_password", "$2a$04$5OH0Zt2dENj3t6txorxRbOMiM5XEgvQc9AfsBWnGecsOc9koO9IbW"], ["confirmation_token", "WrTRfzknxVxcTxFDnkvC"], ["confirmation_sent_at", "2019-08-25 18:26:57.154143"], ["email", "sarai_bartell@mcglynn.biz"], ["created_at", "2019-08-25 18:26:57.154049"], ["updated_at", "2019-08-25 18:26:57.154049"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"sarai_bartell@mcglynn.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarai_bartell@mcglynn.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1292) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alfreda@rutherford.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alfreda@rutherford.info"], ["encrypted_password", "$2a$04$l77waASF.Dvug8hrWcFKBOfM.Bj0J4fadVw.sWjn9wuYVUa7TnKHW"], ["confirmed_at", "2019-08-25 18:26:57.161155"], ["locked_at", "2019-08-25 18:26:57.161183"], ["email", "alfreda@rutherford.info"], ["created_at", "2019-08-25 18:26:57.163085"], ["updated_at", "2019-08-25 18:26:57.163085"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"alfreda@rutherford.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alfreda@rutherford.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1310) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tomiko@moriette.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tomiko@moriette.io"], ["encrypted_password", "$2a$04$bQnVuQAUY/pRsiVZPmLlLOqqin7aV1fam5gSqcqHZ9MrxDh.0t5ha"], ["confirmed_at", "2019-08-25 18:26:57.172204"], ["email", "tomiko@moriette.io"], ["created_at", "2019-08-25 18:26:57.173066"], ["updated_at", "2019-08-25 18:26:57.173066"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:26:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"tomiko@moriette.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tomiko@moriette.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1289) TRANSACTION (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'ignacio@coleconsidine.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ignacio@coleconsidine.com"], ["encrypted_password", "$2a$04$J0CftQTx1Iz8B84GcnTW8.Evb5n.jZOXpG3Y7IGmr5d02x2vzSXD."], ["confirmed_at", "2019-08-25 18:32:03.919011"], ["uid", "ignacio@coleconsidine.com"], ["created_at", "2019-08-25 18:32:03.924346"], ["updated_at", "2019-08-25 18:32:03.924346"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ignacio@coleconsidine.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "ignacio@coleconsidine.com"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"D3aVHxhn6J0qcrhNObLEZA\":{\"token\":\"$2a$10$nG56hXQBAacv8Nh2S1EIgecgN7Z2Z6aD3e1Jv9yWI9CM6Fz4.BnSK\",\"expiry\":1567967523,\"updated_at\":\"2019-08-25 18:32:03 UTC\"}}"], ["updated_at", "2019-08-25 18:32:04.000002"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-25 18:32:04.003998"], ["current_sign_in_at", "2019-08-25 18:32:04.003998"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:32:04.004375"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'homer@jacobson.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "homer@jacobson.co"], ["encrypted_password", "$2a$04$jAb4zgTy97qL2EWcSTSB/etBQRDKTe3G9yQ.G1ZDjV1cC9uD3lMdq"], ["confirmed_at", "2019-08-25 18:32:04.010592"], ["uid", "homer@jacobson.co"], ["created_at", "2019-08-25 18:32:04.011498"], ["updated_at", "2019-08-25 18:32:04.011498"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"homer@jacobson.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "homer@jacobson.co"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'melvin@carrollheel.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "melvin@carrollheel.io"], ["encrypted_password", "$2a$04$UqdDC8cKy4.WZqcrkGr71eeL8QcqsTtElr5WIvc9fNQZRrWzWvs8e"], ["uid", "melvin@carrollheel.io"], ["created_at", "2019-08-25 18:32:04.023693"], ["updated_at", "2019-08-25 18:32:04.023693"], ["confirmation_token", "VmA9co2XMKXC3rRjEutG"], ["confirmation_sent_at", "2019-08-25 18:32:04.023836"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"melvin@carrollheel.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "melvin@carrollheel.io"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'kristi@luettgen.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "kristi@luettgen.co"], ["encrypted_password", "$2a$04$h7NJdpuwwbs6/gu0Sb0DtOzr2BiaZZwpK3EgVPJPCpu45yH4U23K6"], ["confirmed_at", "2019-08-25 18:32:04.032044"], ["locked_at", "2019-08-25 18:32:04.032111"], ["uid", "kristi@luettgen.co"], ["created_at", "2019-08-25 18:32:04.033015"], ["updated_at", "2019-08-25 18:32:04.033015"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kristi@luettgen.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "kristi@luettgen.co"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'ward@bergebechtelar.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "ward@bergebechtelar.io"], ["encrypted_password", "$2a$04$VJURPuzsPo6aTwjS83kVHOtdlQTwFuqdoVUfVhuhsD.8D74rlLUkS"], ["confirmed_at", "2019-08-25 18:32:04.042505"], ["auth_available", "f"], ["uid", "ward@bergebechtelar.io"], ["created_at", "2019-08-25 18:32:04.043454"], ["updated_at", "2019-08-25 18:32:04.043454"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ward@bergebechtelar.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "ward@bergebechtelar.io"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "allen_aufderhar@macgyver.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "allen_aufderhar@macgyver.biz"], ["encrypted_password", "$2a$04$f91hjTW9FRglSVJv3XMq/u8yrdtsse5rZfFWzdqj4QnGm2.Y9kVlK"], ["confirmed_at", "2019-08-25 18:32:07.400346"], ["email", "allen_aufderhar@macgyver.biz"], ["created_at", "2019-08-25 18:32:07.405362"], ["updated_at", "2019-08-25 18:32:07.405362"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"allen_aufderhar@macgyver.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "allen_aufderhar@macgyver.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YrbHFcSGPVRPsz9eeg0nxw\":{\"token\":\"$2a$10$lgD.m1jwHlftADTlv5JPkelAq1OC1jOm6x064Ibg4KyL6x8jC6OFK\",\"expiry\":1567967527,\"updated_at\":\"2019-08-25 18:32:07 UTC\"}}"], ["updated_at", "2019-08-25 18:32:07.474606"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:32:07.479107"], ["last_sign_in_at", "2019-08-25 18:32:07.479107"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:32:07.479538"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 61ms (Views: 0.2ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "keven.ryan@blockleuschke.net"], ["provider", "email"], ["LIMIT", 1]] SQL (1.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "keven.ryan@blockleuschke.net"], ["encrypted_password", "$2a$04$kT/5ZBfWYOmDjBdVjNnhz.Y8GJstr8M2W8MAT6TikoD/rm9.GvuCy"], ["confirmed_at", "2019-08-25 18:32:07.486770"], ["email", "keven.ryan@blockleuschke.net"], ["created_at", "2019-08-25 18:32:07.487856"], ["updated_at", "2019-08-25 18:32:07.487856"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"keven.ryan@blockleuschke.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "keven.ryan@blockleuschke.net"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nita_feeney@powlowski.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nita_feeney@powlowski.biz"], ["encrypted_password", "$2a$04$lmF3BAsmEP5Da6EAfs2iHuhVBK0fGynuXWo3iFQi8PRoccfJYWrNm"], ["confirmation_token", "xBouns3CFYTxa7Dv-z6t"], ["confirmation_sent_at", "2019-08-25 18:32:07.500350"], ["email", "nita_feeney@powlowski.biz"], ["created_at", "2019-08-25 18:32:07.500258"], ["updated_at", "2019-08-25 18:32:07.500258"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"nita_feeney@powlowski.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nita_feeney@powlowski.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kati_okeefe@heller.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kati_okeefe@heller.name"], ["encrypted_password", "$2a$04$KwALGKTJFkPwxWMt88v4fOGSJxZLYWjfeVaNt4sMvzV1NpzukLpz6"], ["confirmed_at", "2019-08-25 18:32:07.507268"], ["locked_at", "2019-08-25 18:32:07.507281"], ["email", "kati_okeefe@heller.name"], ["created_at", "2019-08-25 18:32:07.508265"], ["updated_at", "2019-08-25 18:32:07.508265"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kati_okeefe@heller.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kati_okeefe@heller.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ileen.rau@koeppleffler.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ileen.rau@koeppleffler.io"], ["encrypted_password", "$2a$04$29PrXxg5YaL0TrJk1XCgC.fTGMLlHJN6TM33N2Y7ccU25M1OIs5pS"], ["confirmed_at", "2019-08-25 18:32:07.515474"], ["email", "ileen.rau@koeppleffler.io"], ["created_at", "2019-08-25 18:32:07.516370"], ["updated_at", "2019-08-25 18:32:07.516370"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ileen.rau@koeppleffler.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ileen.rau@koeppleffler.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wesley.haag@west.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "wesley.haag@west.com"], ["encrypted_password", "$2a$04$4yPQZm0xAzb2JsS3jPuBVOR9Nca9RVTjRJ2eUYXsFcW.bmgL4/FFO"], ["confirmed_at", "2019-08-25 18:32:11.320780"], ["email", "wesley.haag@west.com"], ["created_at", "2019-08-25 18:32:11.327488"], ["updated_at", "2019-08-25 18:32:11.327488"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"wesley.haag@west.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "wesley.haag@west.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mxq8TIsC7UC7QHjDB3n23Q\":{\"token\":\"$2a$10$991V5atZzqwrReoK/dxB/ubbWWCglMUdVDtwzXMM7Ur9zvSNOlgwW\",\"expiry\":1567967531,\"updated_at\":\"2019-08-25 18:32:11 UTC\"}}"], ["updated_at", "2019-08-25 18:32:11.410515"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:32:11.416480"], ["last_sign_in_at", "2019-08-25 18:32:11.416480"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:32:11.417153"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 74ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chauncey_auer@rice.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "chauncey_auer@rice.org"], ["encrypted_password", "$2a$04$V5DcXdTXb6sp/r7poTY1aulcWWF.KIfO9KnTQS0YCNQFkhqyQByeO"], ["confirmed_at", "2019-08-25 18:32:11.425134"], ["email", "chauncey_auer@rice.org"], ["created_at", "2019-08-25 18:32:11.426067"], ["updated_at", "2019-08-25 18:32:11.426067"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"chauncey_auer@rice.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "chauncey_auer@rice.org"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lorna.gleason@pollich.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lorna.gleason@pollich.biz"], ["encrypted_password", "$2a$04$Q30f9KwTqdyaCkDs3Th9HOqntlXXAanxu8vO9c.tsh5mFsmEng9Xu"], ["confirmation_token", "kj6L7T768xUJPVhq4yTn"], ["confirmation_sent_at", "2019-08-25 18:32:11.436359"], ["email", "lorna.gleason@pollich.biz"], ["created_at", "2019-08-25 18:32:11.436260"], ["updated_at", "2019-08-25 18:32:11.436260"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lorna.gleason@pollich.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lorna.gleason@pollich.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hai@oconnellnitzsche.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hai@oconnellnitzsche.net"], ["encrypted_password", "$2a$04$cErhhls8NnnJav15aIrAae12TBBAYsFu9t4tr1pb3Xztk88jDYuX2"], ["confirmed_at", "2019-08-25 18:32:11.443410"], ["locked_at", "2019-08-25 18:32:11.443426"], ["email", "hai@oconnellnitzsche.net"], ["created_at", "2019-08-25 18:32:11.444425"], ["updated_at", "2019-08-25 18:32:11.444425"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"hai@oconnellnitzsche.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hai@oconnellnitzsche.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lula_romaguera@macgyverrolfson.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lula_romaguera@macgyverrolfson.co"], ["encrypted_password", "$2a$04$nrWdbP0nKcgNE6O4EFy/NeHjmy9vfCaVxVaw.OugAREUZ/EyBoCzG"], ["confirmed_at", "2019-08-25 18:32:11.452045"], ["email", "lula_romaguera@macgyverrolfson.co"], ["created_at", "2019-08-25 18:32:11.453029"], ["updated_at", "2019-08-25 18:32:11.453029"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lula_romaguera@macgyverrolfson.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lula_romaguera@macgyverrolfson.co"], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "britta@pagac.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "britta@pagac.co"], ["encrypted_password", "$2a$04$EgDNkEO/axAt81Denz8rZu5.KBL45hbCimxJd8hcJTdehYMPecIOW"], ["confirmed_at", "2019-08-25 18:32:15.230758"], ["email", "britta@pagac.co"], ["created_at", "2019-08-25 18:32:15.233230"], ["updated_at", "2019-08-25 18:32:15.233230"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"britta@pagac.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "britta@pagac.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Hn0Ud92ZxuHXZo4KYaM2wA\":{\"token\":\"$2a$10$/PxJWb36x6dADN34TAXNpeJCqeIs1sTBIDc6MK48Y8VwqmQH0SiOC\",\"expiry\":1567967535,\"updated_at\":\"2019-08-25 18:32:15 UTC\"}}"], ["updated_at", "2019-08-25 18:32:15.311531"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:32:15.315177"], ["last_sign_in_at", "2019-08-25 18:32:15.315177"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:32:15.315644"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 68ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "reina@hirthe.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "reina@hirthe.name"], ["encrypted_password", "$2a$04$VTFjynoIU/.GkkAYfv.8iu8Gb8C51yPJCTu68RnO2LFN7SL1L8Wdm"], ["confirmed_at", "2019-08-25 18:32:15.323578"], ["email", "reina@hirthe.name"], ["created_at", "2019-08-25 18:32:15.324444"], ["updated_at", "2019-08-25 18:32:15.324444"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"reina@hirthe.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "reina@hirthe.name"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leigh@friesenhamill.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "leigh@friesenhamill.net"], ["encrypted_password", "$2a$04$icMDxdEve4Euk.iU3DI/uePz1B61SqhID8NA1uirB/QrLhh/UaT72"], ["confirmation_token", "fzwAyFmYyhR-HMirfFjw"], ["confirmation_sent_at", "2019-08-25 18:32:15.334982"], ["email", "leigh@friesenhamill.net"], ["created_at", "2019-08-25 18:32:15.334879"], ["updated_at", "2019-08-25 18:32:15.334879"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"leigh@friesenhamill.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leigh@friesenhamill.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "meggan@franeckigottlieb.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "meggan@franeckigottlieb.com"], ["encrypted_password", "$2a$04$VLbC1rL4DTRVQqNqnVdvneDDqJzojNw8bqjECDXQMokbNv0aqgoCy"], ["confirmed_at", "2019-08-25 18:32:15.342094"], ["locked_at", "2019-08-25 18:32:15.342109"], ["email", "meggan@franeckigottlieb.com"], ["created_at", "2019-08-25 18:32:15.343058"], ["updated_at", "2019-08-25 18:32:15.343058"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"meggan@franeckigottlieb.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "meggan@franeckigottlieb.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "beatrice@mertz.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "beatrice@mertz.name"], ["encrypted_password", "$2a$04$22iWojaZBIG9Ylhc/2UY7.5aSFXcpQABTXqDYMUU7zf3cE1t.VooG"], ["confirmed_at", "2019-08-25 18:32:15.350941"], ["email", "beatrice@mertz.name"], ["created_at", "2019-08-25 18:32:15.352098"], ["updated_at", "2019-08-25 18:32:15.352098"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"beatrice@mertz.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "beatrice@mertz.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alexander_haley@lubowitzerdman.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "alexander_haley@lubowitzerdman.com"], ["encrypted_password", "$2a$04$wLjeLIAwEl0xrb5yLBZDueGHE8eQLzIpNbNILRZlnKSMSpmd1r/Ku"], ["confirmed_at", "2019-08-25 18:32:19.124320"], ["email", "alexander_haley@lubowitzerdman.com"], ["created_at", "2019-08-25 18:32:19.126180"], ["updated_at", "2019-08-25 18:32:19.126180"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"alexander_haley@lubowitzerdman.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alexander_haley@lubowitzerdman.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Z4mxWMgf08QkCXk44WOVOw\":{\"token\":\"$2a$10$FwmJe0iHy9M5XoYbWoK6qOndIRbrfgAvqPOwzPfg9PD0GtBpLyIcO\",\"expiry\":1567967539,\"updated_at\":\"2019-08-25 18:32:19 UTC\"}}"], ["updated_at", "2019-08-25 18:32:19.196384"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:32:19.199954"], ["last_sign_in_at", "2019-08-25 18:32:19.199954"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:32:19.200399"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 62ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "oretha.emard@senger.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "oretha.emard@senger.biz"], ["encrypted_password", "$2a$04$Y9DkFGSfY7s2vyYQFPuxIedbAF8/PN05f0yyw8qLrbp3kncuvecla"], ["confirmed_at", "2019-08-25 18:32:19.208100"], ["email", "oretha.emard@senger.biz"], ["created_at", "2019-08-25 18:32:19.208994"], ["updated_at", "2019-08-25 18:32:19.208994"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"oretha.emard@senger.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "oretha.emard@senger.biz"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "woodrow@koch.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "woodrow@koch.name"], ["encrypted_password", "$2a$04$V8yW7Y6XO9hq0aJ/2A0/Celt9Ta/QaeoSB9KME25CnLjEy1FNvQ9W"], ["confirmation_token", "XdCdnUuNe4v5WuURofyB"], ["confirmation_sent_at", "2019-08-25 18:32:19.219233"], ["email", "woodrow@koch.name"], ["created_at", "2019-08-25 18:32:19.219116"], ["updated_at", "2019-08-25 18:32:19.219116"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"woodrow@koch.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "woodrow@koch.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "annett@schultz.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "annett@schultz.info"], ["encrypted_password", "$2a$04$HvpjCWBMSkNK1unMETtl3.de8fPzJvSjnoUANiKHy.X1ohgr91vka"], ["confirmed_at", "2019-08-25 18:32:19.228231"], ["locked_at", "2019-08-25 18:32:19.228250"], ["email", "annett@schultz.info"], ["created_at", "2019-08-25 18:32:19.229356"], ["updated_at", "2019-08-25 18:32:19.229356"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"annett@schultz.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "annett@schultz.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marilee@barton.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marilee@barton.info"], ["encrypted_password", "$2a$04$QsVyNAFi1EwRcAo4HDJfFu7zkj7kCY5XMkWhaFzjYweGPdQWe1rfq"], ["confirmed_at", "2019-08-25 18:32:19.238078"], ["email", "marilee@barton.info"], ["created_at", "2019-08-25 18:32:19.239261"], ["updated_at", "2019-08-25 18:32:19.239261"], ["auth_available", "f"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"marilee@barton.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marilee@barton.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "camila@quigleykovacek.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "camila@quigleykovacek.com"], ["encrypted_password", "$2a$04$PiSDMSz2i0ZIaoqqDnJtiOXKgjWmtfYPYhK0rv2FtWeLPCwXG5fAe"], ["confirmed_at", "2019-08-25 18:32:22.762901"], ["email", "camila@quigleykovacek.com"], ["created_at", "2019-08-25 18:32:22.764917"], ["updated_at", "2019-08-25 18:32:22.764917"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"camila@quigleykovacek.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "camila@quigleykovacek.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Tq2a3mPfun5SFTb7_Z0rpg\":{\"token\":\"$2a$10$SaQIYrLYSAftESOLPKytMOe22kUHumpLYkPEZuu7hNpAkdmUSeJoK\",\"expiry\":1567967542,\"updated_at\":\"2019-08-25 18:32:22 UTC\"}}"], ["updated_at", "2019-08-25 18:32:22.835578"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:32:22.838559"], ["last_sign_in_at", "2019-08-25 18:32:22.838559"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:32:22.838966"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bryon_beatty@weinat.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "bryon_beatty@weinat.io"], ["encrypted_password", "$2a$04$2AHKsnSOOZv/OTcJX31TiutLEPTH0H57fDQLTrV2mBy8m.gDVqH3."], ["confirmed_at", "2019-08-25 18:32:22.846819"], ["email", "bryon_beatty@weinat.io"], ["created_at", "2019-08-25 18:32:22.847751"], ["updated_at", "2019-08-25 18:32:22.847751"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"bryon_beatty@weinat.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bryon_beatty@weinat.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lucius@cartersanford.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lucius@cartersanford.com"], ["encrypted_password", "$2a$04$iFUV7dMnNU8NMXebQOsXzeRoRcIpx5KDAmqmnwagcV6a4Kvd05uOm"], ["confirmation_token", "krK3AGvj2ZWaJx2wkjvr"], ["confirmation_sent_at", "2019-08-25 18:32:22.858252"], ["email", "lucius@cartersanford.com"], ["created_at", "2019-08-25 18:32:22.858145"], ["updated_at", "2019-08-25 18:32:22.858145"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lucius@cartersanford.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lucius@cartersanford.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "caryn@kreiger.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "caryn@kreiger.com"], ["encrypted_password", "$2a$04$arar2R2zmozpyTsZe8h0qevBHlDLnf4D7c.Dcms1CyeVmI0QARPme"], ["confirmed_at", "2019-08-25 18:32:22.865588"], ["locked_at", "2019-08-25 18:32:22.865599"], ["email", "caryn@kreiger.com"], ["created_at", "2019-08-25 18:32:22.866540"], ["updated_at", "2019-08-25 18:32:22.866540"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"caryn@kreiger.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "caryn@kreiger.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "anika_stokes@gibson.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "anika_stokes@gibson.org"], ["encrypted_password", "$2a$04$.5D.HbSANwonlK5gp3T3muMPQl/O.TsVU34GXpRyRnU2YikQ9bU3O"], ["confirmed_at", "2019-08-25 18:32:22.873286"], ["email", "anika_stokes@gibson.org"], ["created_at", "2019-08-25 18:32:22.874074"], ["updated_at", "2019-08-25 18:32:22.874074"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"anika_stokes@gibson.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anika_stokes@gibson.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clarinda.runolfon@dickens.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "clarinda.runolfon@dickens.name"], ["encrypted_password", "$2a$04$j18YGuIlLMO4y3.RyrHkA.WhxvK6PV9ixHErY/p93g.J/z.wbc2wy"], ["confirmed_at", "2019-08-25 18:32:26.400345"], ["email", "clarinda.runolfon@dickens.name"], ["created_at", "2019-08-25 18:32:26.402308"], ["updated_at", "2019-08-25 18:32:26.402308"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"clarinda.runolfon@dickens.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "clarinda.runolfon@dickens.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"GXjl4dlV5BeB-CELsmrDIA\":{\"token\":\"$2a$10$RRva.H8ezsTUSP5YeMFQbu8QVyZYmy3BdGR1o5NlMeblAG0zInHka\",\"expiry\":1567967546,\"updated_at\":\"2019-08-25 18:32:26 UTC\"}}"], ["updated_at", "2019-08-25 18:32:26.474565"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:32:26.477444"], ["last_sign_in_at", "2019-08-25 18:32:26.477444"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:32:26.477827"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "robin_carroll@walkerstroman.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "robin_carroll@walkerstroman.io"], ["encrypted_password", "$2a$04$ii7UUbbTXxx2Qpcq3kMhFO62RRvM9eFvy5RUAitNM2G9PLOS90V6q"], ["confirmed_at", "2019-08-25 18:32:26.485302"], ["email", "robin_carroll@walkerstroman.io"], ["created_at", "2019-08-25 18:32:26.486213"], ["updated_at", "2019-08-25 18:32:26.486213"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"robin_carroll@walkerstroman.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "robin_carroll@walkerstroman.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kattie@conroygraham.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kattie@conroygraham.org"], ["encrypted_password", "$2a$04$e9hQ0gsmbbc8j2NXkVrBPe50gLnWqDWjBdvJOBY7R9LnEabCieIuS"], ["confirmation_token", "8zEuPGaFrNVsscYjsahJ"], ["confirmation_sent_at", "2019-08-25 18:32:26.495569"], ["email", "kattie@conroygraham.org"], ["created_at", "2019-08-25 18:32:26.495489"], ["updated_at", "2019-08-25 18:32:26.495489"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kattie@conroygraham.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kattie@conroygraham.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alexander@schmitt.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alexander@schmitt.io"], ["encrypted_password", "$2a$04$JuU6zjkmB4TDR572x7Y5j.zL1x9kWito6lUKqWWJgMGER0NLEUva2"], ["confirmed_at", "2019-08-25 18:32:26.501512"], ["locked_at", "2019-08-25 18:32:26.501540"], ["email", "alexander@schmitt.io"], ["created_at", "2019-08-25 18:32:26.503484"], ["updated_at", "2019-08-25 18:32:26.503484"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"alexander@schmitt.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alexander@schmitt.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "riley@mcglynn.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "riley@mcglynn.info"], ["encrypted_password", "$2a$04$K/Ww/lT5haISjWL790m1o.6b8EV/7kw2rn4ch6x3//..Z0nIecxrO"], ["confirmed_at", "2019-08-25 18:32:26.511288"], ["email", "riley@mcglynn.info"], ["created_at", "2019-08-25 18:32:26.512183"], ["updated_at", "2019-08-25 18:32:26.512183"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"riley@mcglynn.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "riley@mcglynn.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jason.nicolas@vandervort.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jason.nicolas@vandervort.org"], ["encrypted_password", "$2a$04$icWPz8Vpy3F.hG5bbowaWun1SXbvwvsMN7JH.0dm8.MDAUxB8z5mS"], ["confirmed_at", "2019-08-25 18:32:30.114025"], ["email", "jason.nicolas@vandervort.org"], ["created_at", "2019-08-25 18:32:30.115276"], ["updated_at", "2019-08-25 18:32:30.115276"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jason.nicolas@vandervort.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jason.nicolas@vandervort.org"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"tYOCe_ab1K84YGx6q66szw\":{\"token\":\"$2a$10$oz9DRZXkuWHvEvLGh95C1umY6ifkgWAZiE4XREXXZnMIiwrne7yJu\",\"expiry\":1567967550,\"updated_at\":\"2019-08-25 18:32:30 UTC\"}}"], ["updated_at", "2019-08-25 18:32:30.184563"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:32:30.187486"], ["last_sign_in_at", "2019-08-25 18:32:30.187486"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:32:30.187683"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 12087) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cortez@dietrichprice.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "cortez@dietrichprice.biz"], ["encrypted_password", "$2a$04$.1DDurUYZnfN2cLtGyCsSeu6FGufvGKYLtn.zUDWBzIq5mkFV5nw."], ["confirmed_at", "2019-08-25 18:32:30.194579"], ["email", "cortez@dietrichprice.biz"], ["created_at", "2019-08-25 18:32:30.195344"], ["updated_at", "2019-08-25 18:32:30.195344"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"cortez@dietrichprice.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cortez@dietrichprice.biz"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2103) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jarrod@oconner.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jarrod@oconner.info"], ["encrypted_password", "$2a$04$10fbpU8fMeg9Q2LDyTkMWOWyHuIkWG4UQiL5OGrM2GYOxOTgjUde6"], ["confirmation_token", "nZ7xfLnj_WjDFcBqA_n3"], ["confirmation_sent_at", "2019-08-25 18:32:30.204721"], ["email", "jarrod@oconner.info"], ["created_at", "2019-08-25 18:32:30.204645"], ["updated_at", "2019-08-25 18:32:30.204645"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jarrod@oconner.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jarrod@oconner.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1291) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "myron@dicki.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "myron@dicki.co"], ["encrypted_password", "$2a$04$2MpjWPinhSDvkIjWvbBNK.P11521QTgYnpd0v4prc78cB1gM8YPC6"], ["confirmed_at", "2019-08-25 18:32:30.210840"], ["locked_at", "2019-08-25 18:32:30.210850"], ["email", "myron@dicki.co"], ["created_at", "2019-08-25 18:32:30.211550"], ["updated_at", "2019-08-25 18:32:30.211550"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"myron@dicki.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "myron@dicki.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1310) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "robbie@kaulke.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "robbie@kaulke.com"], ["encrypted_password", "$2a$04$U4WFD.c5fMGOQIfa0qG0RuNdRa8uIn/uvn/es95A0334Fg0F/5.4a"], ["confirmed_at", "2019-08-25 18:32:30.218330"], ["email", "robbie@kaulke.com"], ["created_at", "2019-08-25 18:32:30.219161"], ["updated_at", "2019-08-25 18:32:30.219161"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:32:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"robbie@kaulke.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "robbie@kaulke.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1289) TRANSACTION (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'nida@johnson.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nida@johnson.name"], ["encrypted_password", "$2a$04$fb2O2akHyHy.g5AWGr3oN.YLhZGeET9E87hYXh1KC00aV20E1SeCu"], ["confirmed_at", "2019-08-25 18:57:16.194422"], ["uid", "nida@johnson.name"], ["created_at", "2019-08-25 18:57:16.200550"], ["updated_at", "2019-08-25 18:57:16.200550"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"nida@johnson.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "nida@johnson.name"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"d_FR-n_o4FMBtQNbpSxduw\":{\"token\":\"$2a$10$jkuXE35fVP8W0MLPoncs9umH/8HZDbgnrxpRtmFGOLxaRNIQTy3WS\",\"expiry\":1567969036,\"updated_at\":\"2019-08-25 18:57:16 UTC\"}}"], ["updated_at", "2019-08-25 18:57:16.277813"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-25 18:57:16.281643"], ["current_sign_in_at", "2019-08-25 18:57:16.281643"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:57:16.282005"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'megan@haneharris.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "megan@haneharris.com"], ["encrypted_password", "$2a$04$G7wveUk6yc09tFpj7BYhS.ybNgLf.71J8XwCgDCfTjZH3CY5LcIAi"], ["confirmed_at", "2019-08-25 18:57:16.288073"], ["uid", "megan@haneharris.com"], ["created_at", "2019-08-25 18:57:16.288873"], ["updated_at", "2019-08-25 18:57:16.288873"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"megan@haneharris.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "megan@haneharris.com"]] SQL (0.0ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'arleen@schadendibbert.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "arleen@schadendibbert.org"], ["encrypted_password", "$2a$04$yumn3QlkkLn41r0X39ibl.XRGWiSftVZTWJjvCBcccD1M9AwZT2OO"], ["uid", "arleen@schadendibbert.org"], ["created_at", "2019-08-25 18:57:16.299171"], ["updated_at", "2019-08-25 18:57:16.299171"], ["confirmation_token", "SRpLBfo1F1kyBzxfweL_"], ["confirmation_sent_at", "2019-08-25 18:57:16.299313"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"arleen@schadendibbert.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "arleen@schadendibbert.org"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'leonie.paucek@rohan.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "leonie.paucek@rohan.name"], ["encrypted_password", "$2a$04$LkBSUKujZNkh6nHZTXMVF.mg8ZhUJVeuSk9fzOgXe8BqkplbT2c4."], ["confirmed_at", "2019-08-25 18:57:16.307052"], ["locked_at", "2019-08-25 18:57:16.307110"], ["uid", "leonie.paucek@rohan.name"], ["created_at", "2019-08-25 18:57:16.307957"], ["updated_at", "2019-08-25 18:57:16.307957"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"leonie.paucek@rohan.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "leonie.paucek@rohan.name"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'sina@sipes.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "sina@sipes.biz"], ["encrypted_password", "$2a$04$5T4PSmRbrKme/YGgXqEDfew3yVUuDTMlpFRx.LFRjYLDSAl.Z1ei2"], ["confirmed_at", "2019-08-25 18:57:16.317119"], ["auth_available", "f"], ["uid", "sina@sipes.biz"], ["created_at", "2019-08-25 18:57:16.318049"], ["updated_at", "2019-08-25 18:57:16.318049"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"sina@sipes.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "sina@sipes.biz"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "gale@barrows.net"]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gale@barrows.net"], ["encrypted_password", "$2a$04$hEzPe/GMBhNRjwJ6wZmIKu/E90QWV5yoX36vGKbWl9fiPdqhd.xC."], ["confirmed_at", "2019-08-25 18:57:19.693040"], ["email", "gale@barrows.net"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:19.695651"], ["updated_at", "2019-08-25 18:57:19.695651"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"gale@barrows.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gale@barrows.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"sOZKdGCKJ5KTAzuLd4MnFw\":{\"token\":\"$2a$12$S.RORS2B78yoEaEGZfSRM.2IYxoLgPtELY5CAS8Zn0iRBNujM5hRS\",\"expiry\":1567969039,\"last_token\":null,\"updated_at\":\"2019-08-25T13:57:19.901-05:00\"}}"], ["updated_at", "2019-08-25 18:57:19.902162"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:57:19.906563"], ["last_sign_in_at", "2019-08-25 18:57:19.906563"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:57:19.906919"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 193ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "melonie@starkwest.com"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "melonie@starkwest.com"], ["encrypted_password", "$2a$04$6KT0NxHPqNfaeUEoBCNPV.9bXOv/CGKmBl43QZIowC41RiC26EpuW"], ["confirmed_at", "2019-08-25 18:57:19.913644"], ["email", "melonie@starkwest.com"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:19.914440"], ["updated_at", "2019-08-25 18:57:19.914440"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"melonie@starkwest.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "melonie@starkwest.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-25 18:57:19.918437"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "norris@cronamoore.info"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "4fc59a3f7196272e26883d9d0b25af1ea54ff6f1e4e889bc4c1501b599af85da"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "norris@cronamoore.info"], ["encrypted_password", "$2a$04$yQLLRSyWslTb035kNyVpy.peBmfXLnB/dUW5URSAjEB8cR8FVcUxi"], ["confirmation_token", "2mpshRkBFoNvypk_STPP"], ["confirmation_sent_at", "2019-08-25 18:57:20.000668"], ["email", "norris@cronamoore.info"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:19.922199"], ["updated_at", "2019-08-25 18:57:19.922199"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"norris@cronamoore.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "norris@cronamoore.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "evelynn_tromp@hickle.co"]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "evelynn_tromp@hickle.co"], ["encrypted_password", "$2a$04$rm1.WKvsYHi24AnR/SKKGunq5ahvCcTfDyAq9Rwo5HZqtNSeGHHiq"], ["confirmed_at", "2019-08-25 18:57:20.006789"], ["locked_at", "2019-08-25 18:57:20.006799"], ["email", "evelynn_tromp@hickle.co"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:20.007459"], ["updated_at", "2019-08-25 18:57:20.007459"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"evelynn_tromp@hickle.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "evelynn_tromp@hickle.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "jewel.feeney@kohler.biz"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jewel.feeney@kohler.biz"], ["encrypted_password", "$2a$04$CRVsjf0UJRFL6UesGUkqmuqB35RxagF1joRsm257whVsQNjeo8VeC"], ["confirmed_at", "2019-08-25 18:57:20.013302"], ["email", "jewel.feeney@kohler.biz"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:20.013931"], ["updated_at", "2019-08-25 18:57:20.013931"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jewel.feeney@kohler.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jewel.feeney@kohler.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carey@ziemewatsica.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "carey@ziemewatsica.biz"], ["encrypted_password", "$2a$04$L/vgDBz4LY.9.XHs8xTW.OukP9dRX2bU/0yz0Rl0WEaJkjApdyfYC"], ["confirmed_at", "2019-08-25 18:57:23.231871"], ["email", "carey@ziemewatsica.biz"], ["created_at", "2019-08-25 18:57:23.236313"], ["updated_at", "2019-08-25 18:57:23.236313"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"carey@ziemewatsica.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "carey@ziemewatsica.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"W_JSucFlI92ooZ2ZkYycVQ\":{\"token\":\"$2a$10$rnY24JGewz.gUWUSssZV/uPPhY4aMM8mGxSk9HBaWRFS3tt3ELerG\",\"expiry\":1567969043,\"updated_at\":\"2019-08-25 18:57:23 UTC\"}}"], ["updated_at", "2019-08-25 18:57:23.304573"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:57:23.309044"], ["last_sign_in_at", "2019-08-25 18:57:23.309044"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:57:23.309458"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "emilie@kilback.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "emilie@kilback.info"], ["encrypted_password", "$2a$04$hgqS0q.6q.Pdh/VpH89Xv.miZhEV0xG9g7zOYFhs9IV/IMHR6EH6e"], ["confirmed_at", "2019-08-25 18:57:23.316561"], ["email", "emilie@kilback.info"], ["created_at", "2019-08-25 18:57:23.317413"], ["updated_at", "2019-08-25 18:57:23.317413"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"emilie@kilback.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "emilie@kilback.info"], ["LIMIT", 1]] SQL (0.0ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dominga_bogan@greenholt.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dominga_bogan@greenholt.info"], ["encrypted_password", "$2a$04$EwhyiTp2bVGrATibLsyEreLD9KhSxGQ2hlBbCjQpjc5rkoP7ex4D."], ["confirmation_token", "p2cwxipV4EjSYvrCNies"], ["confirmation_sent_at", "2019-08-25 18:57:23.326517"], ["email", "dominga_bogan@greenholt.info"], ["created_at", "2019-08-25 18:57:23.326439"], ["updated_at", "2019-08-25 18:57:23.326439"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"dominga_bogan@greenholt.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dominga_bogan@greenholt.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sanford@bayercarroll.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sanford@bayercarroll.net"], ["encrypted_password", "$2a$04$LI2RH1gDowGfF7/ThXCM2eQNfHvNolZneM3Ks/9moOryXOombvVTi"], ["confirmed_at", "2019-08-25 18:57:23.332259"], ["locked_at", "2019-08-25 18:57:23.332270"], ["email", "sanford@bayercarroll.net"], ["created_at", "2019-08-25 18:57:23.332910"], ["updated_at", "2019-08-25 18:57:23.332910"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"sanford@bayercarroll.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sanford@bayercarroll.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chance@heathcote.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "chance@heathcote.net"], ["encrypted_password", "$2a$04$NR4sEciOV1HbItZFvFx8iuffP08QxqlTKJiHjNfBb4nw55U6gXng6"], ["confirmed_at", "2019-08-25 18:57:23.338580"], ["email", "chance@heathcote.net"], ["created_at", "2019-08-25 18:57:23.339280"], ["updated_at", "2019-08-25 18:57:23.339280"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"chance@heathcote.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "chance@heathcote.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dalton.sawayn@nicolas.biz"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "dalton.sawayn@nicolas.biz"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dalton.sawayn@nicolas.biz"], ["encrypted_password", "$2a$04$xcDgf8IYABqgJ3bJy3ZB0eCQUaGm8eVOWk3qFPwP/zBsVGxKyiICG"], ["confirmed_at", "2019-08-25 18:57:26.606165"], ["email", "dalton.sawayn@nicolas.biz"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:26.608599"], ["updated_at", "2019-08-25 18:57:26.608599"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"dalton.sawayn@nicolas.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dalton.sawayn@nicolas.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"X7t0TWJYWjjChnOYMWZTbg\":{\"token\":\"$2a$12$GNbSsSXeqbUXmc5qiEKpoOZB8sFkfC5Yw.LVAABovFnRiHZkGUVJ2\",\"expiry\":1567969046,\"last_token\":null,\"updated_at\":\"2019-08-25T13:57:26.808-05:00\"}}"], ["updated_at", "2019-08-25 18:57:26.808990"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:57:26.812445"], ["last_sign_in_at", "2019-08-25 18:57:26.812445"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:57:26.812824"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 190ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tameka@green.io"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "tameka@green.io"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tameka@green.io"], ["encrypted_password", "$2a$04$nQ3LER6mXfUWw3xk08kvGutWf1G3jfU5MF8EeoO.qKfKPCRgOCu/S"], ["confirmed_at", "2019-08-25 18:57:26.821028"], ["email", "tameka@green.io"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:26.822627"], ["updated_at", "2019-08-25 18:57:26.822627"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"tameka@green.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tameka@green.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-25 18:57:26.828147"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elease.olson@welch.net"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "elease.olson@welch.net"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elease.olson@welch.net"], ["encrypted_password", "$2a$04$6pCmqISu53M517OuaoHzgesWBeIW0qwOVc0GIVr9iIyHh46R0Bbpe"], ["confirmation_token", "xf7osyUq9JTe9NoW_TcX"], ["confirmation_sent_at", "2019-08-25 18:57:26.833079"], ["email", "elease.olson@welch.net"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:26.832999"], ["updated_at", "2019-08-25 18:57:26.832999"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"elease.olson@welch.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elease.olson@welch.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "robbie@ziemann.biz"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "robbie@ziemann.biz"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "robbie@ziemann.biz"], ["encrypted_password", "$2a$04$0Z7Lc6VN3PtBgoPiayFOzuwmjETJJAi2Kl2mU72vWHNKZFTekDUk2"], ["confirmed_at", "2019-08-25 18:57:26.839148"], ["locked_at", "2019-08-25 18:57:26.839164"], ["email", "robbie@ziemann.biz"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:26.840286"], ["updated_at", "2019-08-25 18:57:26.840286"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"robbie@ziemann.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "robbie@ziemann.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "reta@dachwindler.com"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "reta@dachwindler.com"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "reta@dachwindler.com"], ["encrypted_password", "$2a$04$8CcZq00OKP9D7fTu3zR.1uLxOEBlYFi13D6v5nrL5DR2lQtlEmlt6"], ["confirmed_at", "2019-08-25 18:57:26.847914"], ["email", "reta@dachwindler.com"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:26.849213"], ["updated_at", "2019-08-25 18:57:26.849213"], ["auth_available", "f"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"reta@dachwindler.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "reta@dachwindler.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "usha_sporer@osinski.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "usha_sporer@osinski.co"], ["encrypted_password", "$2a$04$Toda65w5WnzgVRVVc5iS4ezovL6RpXzu37WdiiBaRbqghqH/KHiWu"], ["confirmed_at", "2019-08-25 18:57:30.134569"], ["email", "usha_sporer@osinski.co"], ["created_at", "2019-08-25 18:57:30.136403"], ["updated_at", "2019-08-25 18:57:30.136403"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"usha_sporer@osinski.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "usha_sporer@osinski.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hxoD25saJmeFLpL8I5NtxQ\":{\"token\":\"$2a$10$TX5goWV60yU2zclRfAeUlesUlRsl1mUbtkYBpyvAyyvBipLDGB/OG\",\"expiry\":1567969050,\"updated_at\":\"2019-08-25 18:57:30 UTC\"}}"], ["updated_at", "2019-08-25 18:57:30.207298"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:57:30.210825"], ["last_sign_in_at", "2019-08-25 18:57:30.210825"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:57:30.211159"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 62ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "coral_leuschke@veum.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "coral_leuschke@veum.io"], ["encrypted_password", "$2a$04$I/CZOtbt2wyZr9I9GbrAauvNbm/mvJwtDO1mIm47o4iZBFzkhtnIe"], ["confirmed_at", "2019-08-25 18:57:30.217656"], ["email", "coral_leuschke@veum.io"], ["created_at", "2019-08-25 18:57:30.218480"], ["updated_at", "2019-08-25 18:57:30.218480"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"coral_leuschke@veum.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "coral_leuschke@veum.io"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chrystal@braun.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "chrystal@braun.com"], ["encrypted_password", "$2a$04$XRySoqQyM1m.4.0X/K3gvuSXNTDXMW80yFPGrEkRc3TA.m3oLjvUe"], ["confirmation_token", "w8UBAnfxB2AymD8_o9QU"], ["confirmation_sent_at", "2019-08-25 18:57:30.227443"], ["email", "chrystal@braun.com"], ["created_at", "2019-08-25 18:57:30.227368"], ["updated_at", "2019-08-25 18:57:30.227368"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"chrystal@braun.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "chrystal@braun.com"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeri.lakin@hoppe.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jeri.lakin@hoppe.co"], ["encrypted_password", "$2a$04$ntFcXR.k/6N8k6138GgFROeuxy37jDqnh3XjucScI/7XfazrJU2NK"], ["confirmed_at", "2019-08-25 18:57:30.232990"], ["locked_at", "2019-08-25 18:57:30.232999"], ["email", "jeri.lakin@hoppe.co"], ["created_at", "2019-08-25 18:57:30.233674"], ["updated_at", "2019-08-25 18:57:30.233674"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jeri.lakin@hoppe.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jeri.lakin@hoppe.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jamar.hodkiewicz@schoen.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jamar.hodkiewicz@schoen.name"], ["encrypted_password", "$2a$04$sSI9FZVIAQHvqkR9BPTnjugG08tbI6fOYS8Qsl0GBL3ZB4fKwtTP."], ["confirmed_at", "2019-08-25 18:57:30.239859"], ["email", "jamar.hodkiewicz@schoen.name"], ["created_at", "2019-08-25 18:57:30.240714"], ["updated_at", "2019-08-25 18:57:30.240714"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jamar.hodkiewicz@schoen.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jamar.hodkiewicz@schoen.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rafael_spencer@larson.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rafael_spencer@larson.io"], ["encrypted_password", "$2a$04$VtIwHJCGvTJ0lkpiOyiH1e3H0XRaAxVVQtmLAubdJfZ.dbZuMi1be"], ["confirmed_at", "2019-08-25 18:57:33.558691"], ["email", "rafael_spencer@larson.io"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:33.560710"], ["updated_at", "2019-08-25 18:57:33.560710"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"rafael_spencer@larson.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rafael_spencer@larson.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"uhAHIs1rEhiVA99yUwa7bg\":{\"token\":\"$2a$12$39cKWmU90N4PLPtUWw9bPOGg7o8XLAHIUuSntbnbXD620lHD37l3K\",\"expiry\":1567969053,\"last_token\":null,\"updated_at\":\"2019-08-25T13:57:33.589-05:00\"}}"], ["updated_at", "2019-08-25 18:57:33.765013"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:57:33.767696"], ["last_sign_in_at", "2019-08-25 18:57:33.767696"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:57:33.767928"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 189ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "roseann.braun@halvorson.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "roseann.braun@halvorson.co"], ["encrypted_password", "$2a$04$brgkmxzs6zALU2ANbrGQBeWcoQCT6/iv2hGmELB4jio2c5q9Z9I3i"], ["confirmed_at", "2019-08-25 18:57:33.774968"], ["email", "roseann.braun@halvorson.co"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:33.775752"], ["updated_at", "2019-08-25 18:57:33.775752"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"roseann.braun@halvorson.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "roseann.braun@halvorson.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-25 18:57:33.779931"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "danae@king.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "danae@king.io"], ["encrypted_password", "$2a$04$RIUGDCFKF6SQXvy8VmQ24.jC6GUMn9ehfAuvG6TdL4I3thI8rqWqi"], ["confirmation_token", "GDGjtZFzsWx4rpDquHj2"], ["confirmation_sent_at", "2019-08-25 18:57:33.784169"], ["email", "danae@king.io"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:33.784102"], ["updated_at", "2019-08-25 18:57:33.784102"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"danae@king.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "danae@king.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elizabet_okeefe@murazikhegmann.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elizabet_okeefe@murazikhegmann.biz"], ["encrypted_password", "$2a$04$vLvcyRYrk3l30HWloFOkHe/yL0GdtCuZdU/6yOg6T4tFgJeWofM6a"], ["confirmed_at", "2019-08-25 18:57:33.789579"], ["locked_at", "2019-08-25 18:57:33.789587"], ["email", "elizabet_okeefe@murazikhegmann.biz"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:33.790160"], ["updated_at", "2019-08-25 18:57:33.790160"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"elizabet_okeefe@murazikhegmann.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elizabet_okeefe@murazikhegmann.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stephen.luettgen@nolankeeling.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "stephen.luettgen@nolankeeling.org"], ["encrypted_password", "$2a$04$OJ9sKyVWVV3D3qNXGX2UDuhJCh3D9W0Zq8s5Taxw0CqL5PRLGwK3."], ["confirmed_at", "2019-08-25 18:57:33.795934"], ["email", "stephen.luettgen@nolankeeling.org"], ["tokens", "{}"], ["created_at", "2019-08-25 18:57:33.796774"], ["updated_at", "2019-08-25 18:57:33.796774"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"stephen.luettgen@nolankeeling.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stephen.luettgen@nolankeeling.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "orval.price@millsjohnston.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "orval.price@millsjohnston.org"], ["encrypted_password", "$2a$04$oca1AvrQ4JenUftWgxM.b.MJmhqnjpb6ZGVARy2DarEbb56J27Qn2"], ["confirmed_at", "2019-08-25 18:57:37.202607"], ["email", "orval.price@millsjohnston.org"], ["created_at", "2019-08-25 18:57:37.204989"], ["updated_at", "2019-08-25 18:57:37.204989"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"orval.price@millsjohnston.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "orval.price@millsjohnston.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"GM_01WrCQPyc9UYFgp_2jw\":{\"token\":\"$2a$10$AhEk6edzszNAwQzLXtUuuOGEnxxidHBfKXMec2gevTSkev1RU5VNq\",\"expiry\":1567969057,\"updated_at\":\"2019-08-25 18:57:37 UTC\"}}"], ["updated_at", "2019-08-25 18:57:37.280985"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:57:37.283835"], ["last_sign_in_at", "2019-08-25 18:57:37.283835"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:57:37.284204"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 64ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marni@jacobi.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "marni@jacobi.name"], ["encrypted_password", "$2a$04$FniuBBvw5dKUkGgkgEITaeTBdNAhzMqjWbRMKik0BRNFZ08k6T4/q"], ["confirmed_at", "2019-08-25 18:57:37.291479"], ["email", "marni@jacobi.name"], ["created_at", "2019-08-25 18:57:37.292311"], ["updated_at", "2019-08-25 18:57:37.292311"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"marni@jacobi.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marni@jacobi.name"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ronnie@auermarvin.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ronnie@auermarvin.io"], ["encrypted_password", "$2a$04$PRJ3PT4PAWvmH9y/senDWOMAdcb2F8ugEfk8ytSfZ23clSP5tbUoe"], ["confirmation_token", "4BpBojzYNcwAB93SRVFj"], ["confirmation_sent_at", "2019-08-25 18:57:37.302358"], ["email", "ronnie@auermarvin.io"], ["created_at", "2019-08-25 18:57:37.302257"], ["updated_at", "2019-08-25 18:57:37.302257"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ronnie@auermarvin.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ronnie@auermarvin.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clemente_fadel@purdyhaley.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "clemente_fadel@purdyhaley.org"], ["encrypted_password", "$2a$04$S9ZQzgyo7h5dtKoJ0oY.CugIifX3rSAi.ipfgZF0rDLPJdhjWhrYi"], ["confirmed_at", "2019-08-25 18:57:37.308808"], ["locked_at", "2019-08-25 18:57:37.308820"], ["email", "clemente_fadel@purdyhaley.org"], ["created_at", "2019-08-25 18:57:37.309682"], ["updated_at", "2019-08-25 18:57:37.309682"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"clemente_fadel@purdyhaley.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "clemente_fadel@purdyhaley.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bree@johnson.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bree@johnson.io"], ["encrypted_password", "$2a$04$5sIIDM6WabKw3hQbVQRx0.iKW0f.tKyO8v6Uxz.kjqJhEJb6zsLaq"], ["confirmed_at", "2019-08-25 18:57:37.317083"], ["email", "bree@johnson.io"], ["created_at", "2019-08-25 18:57:37.318079"], ["updated_at", "2019-08-25 18:57:37.318079"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"bree@johnson.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bree@johnson.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lee.strosin@effertz.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "lee.strosin@effertz.biz"], ["encrypted_password", "$2a$04$C1ZnNY3iaLq/K6qMmgSNcewbIxjQbaUU2zOYFUiv1JUSRQ.kVbYiq"], ["confirmed_at", "2019-08-25 18:57:40.899488"], ["email", "lee.strosin@effertz.biz"], ["created_at", "2019-08-25 18:57:40.901816"], ["updated_at", "2019-08-25 18:57:40.901816"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lee.strosin@effertz.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lee.strosin@effertz.biz"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"92W8bX3X0FEwWyVs8chdQQ\":{\"token\":\"$2a$10$TwdlU0nbsIY/iSEi0Unj1upcbFQM18WM1aRL/Jso18axVySKAWJY6\",\"expiry\":1567969060,\"updated_at\":\"2019-08-25 18:57:40 UTC\"}}"], ["updated_at", "2019-08-25 18:57:40.975915"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 18:57:40.979088"], ["last_sign_in_at", "2019-08-25 18:57:40.979088"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 18:57:40.979374"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 64ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 12084) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dung@runolfsdottir.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "dung@runolfsdottir.name"], ["encrypted_password", "$2a$04$RBbydLfx/R.gmm3/roX9fOTuL/rGpElsfp5TYVbSuJJwOKt9zHzVq"], ["confirmed_at", "2019-08-25 18:57:40.986827"], ["email", "dung@runolfsdottir.name"], ["created_at", "2019-08-25 18:57:40.987632"], ["updated_at", "2019-08-25 18:57:40.987632"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"dung@runolfsdottir.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dung@runolfsdottir.name"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2101) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jacinda_berge@simonis.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jacinda_berge@simonis.net"], ["encrypted_password", "$2a$04$Ad4P7qbDw2NflgGs3RBiW.fpTc3ibxAXQHxjLgvQLbORn0Caxtm.i"], ["confirmation_token", "xL61JP8jyJV_7iGuAjus"], ["confirmation_sent_at", "2019-08-25 18:57:40.997461"], ["email", "jacinda_berge@simonis.net"], ["created_at", "2019-08-25 18:57:40.997363"], ["updated_at", "2019-08-25 18:57:40.997363"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jacinda_berge@simonis.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jacinda_berge@simonis.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1292) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tuyet_dubuque@bergnaumkuhic.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tuyet_dubuque@bergnaumkuhic.org"], ["encrypted_password", "$2a$04$om/aM4heoWJpL5J823Y64u2w2TDijx.BXjrL/IVeMaCQX2xGGWuiW"], ["confirmed_at", "2019-08-25 18:57:41.004439"], ["locked_at", "2019-08-25 18:57:41.004454"], ["email", "tuyet_dubuque@bergnaumkuhic.org"], ["created_at", "2019-08-25 18:57:41.005594"], ["updated_at", "2019-08-25 18:57:41.005594"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"tuyet_dubuque@bergnaumkuhic.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tuyet_dubuque@bergnaumkuhic.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1310) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kristian.jacobs@baumbachsmitham.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kristian.jacobs@baumbachsmitham.net"], ["encrypted_password", "$2a$04$KR6lwHZG00cCKPUxhusZaey12iaIfkJsLAKL90p0JCyfu2z8O7OVm"], ["confirmed_at", "2019-08-25 18:57:41.013351"], ["email", "kristian.jacobs@baumbachsmitham.net"], ["created_at", "2019-08-25 18:57:41.014326"], ["updated_at", "2019-08-25 18:57:41.014326"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 13:57:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kristian.jacobs@baumbachsmitham.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kristian.jacobs@baumbachsmitham.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1289) TRANSACTION (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'candida@gutkowskisauer.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "candida@gutkowskisauer.com"], ["encrypted_password", "$2a$04$8qCcQPH9xvOvKmzh1swIVOS6Sf5zkN5N3cMGQdSUkEoXDCwSEXGNK"], ["confirmed_at", "2019-08-25 19:58:47.149100"], ["uid", "candida@gutkowskisauer.com"], ["created_at", "2019-08-25 19:58:47.155359"], ["updated_at", "2019-08-25 19:58:47.155359"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"candida@gutkowskisauer.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "candida@gutkowskisauer.com"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LmzZ5-20B8btMljqmP9hIA\":{\"token\":\"$2a$10$anqPsEX59yHO1rnTBSh0TuvtWMyLR0Q4L2MPC5MgtOV7O5RtGmEeu\",\"expiry\":1567972727,\"updated_at\":\"2019-08-25 19:58:47 UTC\"}}"], ["updated_at", "2019-08-25 19:58:47.238364"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-25 19:58:47.243112"], ["current_sign_in_at", "2019-08-25 19:58:47.243112"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 19:58:47.243604"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 67ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'emelda_murazik@willmsgoldner.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "emelda_murazik@willmsgoldner.name"], ["encrypted_password", "$2a$04$BKowCC.MtjSWaRcQ/kfKWOC7MJiZn6XYMRES9NG9Z6Na8e4YNNs0."], ["confirmed_at", "2019-08-25 19:58:47.250420"], ["uid", "emelda_murazik@willmsgoldner.name"], ["created_at", "2019-08-25 19:58:47.251580"], ["updated_at", "2019-08-25 19:58:47.251580"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"emelda_murazik@willmsgoldner.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "emelda_murazik@willmsgoldner.name"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'brande_crona@hermistonschamberger.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "brande_crona@hermistonschamberger.biz"], ["encrypted_password", "$2a$04$0ZjV7QlfusV5OjSqvZnQLO693YjCR18ZA.5Yq5hk84ao/M85/3AR2"], ["uid", "brande_crona@hermistonschamberger.biz"], ["created_at", "2019-08-25 19:58:47.264403"], ["updated_at", "2019-08-25 19:58:47.264403"], ["confirmation_token", "UegbiH3h76-26_yFNczd"], ["confirmation_sent_at", "2019-08-25 19:58:47.264568"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"brande_crona@hermistonschamberger.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "brande_crona@hermistonschamberger.biz"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'douglas@grimesnolan.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "douglas@grimesnolan.info"], ["encrypted_password", "$2a$04$3D0aSm4vIAaMRI74S9AO5OWqkNaX9raP0v.SOcUME/o3xqe6MY/Ka"], ["confirmed_at", "2019-08-25 19:58:47.273289"], ["locked_at", "2019-08-25 19:58:47.273349"], ["uid", "douglas@grimesnolan.info"], ["created_at", "2019-08-25 19:58:47.274165"], ["updated_at", "2019-08-25 19:58:47.274165"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"douglas@grimesnolan.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "douglas@grimesnolan.info"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'darron_lynch@rohan.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "darron_lynch@rohan.net"], ["encrypted_password", "$2a$04$dvr2FgW0Lh0qmI0vowkgOevUQhArlbNZTtI8G8lgBMTGVc5uRk47K"], ["confirmed_at", "2019-08-25 19:58:47.283128"], ["auth_available", "f"], ["uid", "darron_lynch@rohan.net"], ["created_at", "2019-08-25 19:58:47.284126"], ["updated_at", "2019-08-25 19:58:47.284126"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"darron_lynch@rohan.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "darron_lynch@rohan.net"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "daryl_hermiston@kunzeheel.name"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "daryl_hermiston@kunzeheel.name"], ["encrypted_password", "$2a$04$ySUXTVNDqJ73yz7Hg3wEveHual47FhdkMjIlGg5H5DWwIesSqP7NO"], ["confirmed_at", "2019-08-25 19:58:50.791989"], ["email", "daryl_hermiston@kunzeheel.name"], ["tokens", "{}"], ["created_at", "2019-08-25 19:58:50.793376"], ["updated_at", "2019-08-25 19:58:50.793376"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"daryl_hermiston@kunzeheel.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "daryl_hermiston@kunzeheel.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OlI7tEAgR9kaRjQwljjcyg\":{\"token\":\"$2a$12$.hld9jVYMbFGDT.CJ/2VhufDvc8wdAVij5qyBf1g5xjg9e/hxVjxi\",\"expiry\":1567972731,\"last_token\":null,\"updated_at\":\"2019-08-25T14:58:51.004-05:00\"}}"], ["updated_at", "2019-08-25 19:58:51.006261"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 19:58:51.011922"], ["last_sign_in_at", "2019-08-25 19:58:51.011922"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 19:58:51.012325"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 204ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "justine@hayes.net"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "justine@hayes.net"], ["encrypted_password", "$2a$04$9/YHhvh2OrdGRV.XrQUwD.rWeMloYoxUrtGLGLcLZQ86l/kgYbTfa"], ["confirmed_at", "2019-08-25 19:58:51.019699"], ["email", "justine@hayes.net"], ["tokens", "{}"], ["created_at", "2019-08-25 19:58:51.020740"], ["updated_at", "2019-08-25 19:58:51.020740"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"justine@hayes.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "justine@hayes.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-25 19:58:51.025897"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "philip@johnston.com"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "1cb754dbe046238adcfe22b6498057c2a2d2eddf92d074b51546bf37305113ab"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "philip@johnston.com"], ["encrypted_password", "$2a$04$x2ayuUGQmwDNBfuVTBJcju.yNt8AE.DikSPuwrI5R9ul5PVez4Y/6"], ["confirmation_token", "xScCKtKWdeHnM8cU3xru"], ["confirmation_sent_at", "2019-08-25 19:58:51.119507"], ["email", "philip@johnston.com"], ["tokens", "{}"], ["created_at", "2019-08-25 19:58:51.030763"], ["updated_at", "2019-08-25 19:58:51.030763"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"philip@johnston.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "philip@johnston.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "lacy_carroll@haley.name"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lacy_carroll@haley.name"], ["encrypted_password", "$2a$04$eB0W79IFDMAg9etCCjtp3eS5YC4kNxPsaPzU0Di4Z9MCd6TTA7UQe"], ["confirmed_at", "2019-08-25 19:58:51.127561"], ["locked_at", "2019-08-25 19:58:51.127577"], ["email", "lacy_carroll@haley.name"], ["tokens", "{}"], ["created_at", "2019-08-25 19:58:51.128636"], ["updated_at", "2019-08-25 19:58:51.128636"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lacy_carroll@haley.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lacy_carroll@haley.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "therese@medhurstmccullough.name"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "therese@medhurstmccullough.name"], ["encrypted_password", "$2a$04$4TlB3IJUpDQDg.MU5FpQwuo2eRhZHAqcqJzx6wFkJ4yCf93sk5rum"], ["confirmed_at", "2019-08-25 19:58:51.136319"], ["email", "therese@medhurstmccullough.name"], ["tokens", "{}"], ["created_at", "2019-08-25 19:58:51.137249"], ["updated_at", "2019-08-25 19:58:51.137249"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"therese@medhurstmccullough.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "therese@medhurstmccullough.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "calvin.hayes@nicolas.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "calvin.hayes@nicolas.net"], ["encrypted_password", "$2a$04$POQ.yi19kKeHTbM8vNfv0enEcfvqet/rzsgg8uUmKEAIT5gObOV1O"], ["confirmed_at", "2019-08-25 19:58:54.489250"], ["email", "calvin.hayes@nicolas.net"], ["created_at", "2019-08-25 19:58:54.493793"], ["updated_at", "2019-08-25 19:58:54.493793"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"calvin.hayes@nicolas.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "calvin.hayes@nicolas.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"V5AX4lI55VptGbJ96mOByQ\":{\"token\":\"$2a$10$aXIceK/Ty/AF9WKnYAIJhOfxZ1l2YE6d3aBydUJHlM0.Yl9ISqpSK\",\"expiry\":1567972734,\"updated_at\":\"2019-08-25 19:58:54 UTC\"}}"], ["updated_at", "2019-08-25 19:58:54.560554"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 19:58:54.565968"], ["last_sign_in_at", "2019-08-25 19:58:54.565968"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 19:58:54.566669"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 62ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cesar.moen@turcotte.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "cesar.moen@turcotte.co"], ["encrypted_password", "$2a$04$koROUy3F6CbIgtuDgFO0TulLWG8hbOXRZvHwmKafm.vN/dfptYIFm"], ["confirmed_at", "2019-08-25 19:58:54.573952"], ["email", "cesar.moen@turcotte.co"], ["created_at", "2019-08-25 19:58:54.574849"], ["updated_at", "2019-08-25 19:58:54.574849"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"cesar.moen@turcotte.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cesar.moen@turcotte.co"], ["LIMIT", 1]] SQL (0.0ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bloom@nader.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bloom@nader.net"], ["encrypted_password", "$2a$04$9tbrFdYF5RBVm/lqj4HpeugAvPhj3q1uxKlAZrqoj3s.rDLEXFluq"], ["confirmation_token", "N4W1NBZpxPgz6KorTicN"], ["confirmation_sent_at", "2019-08-25 19:58:54.585350"], ["email", "bloom@nader.net"], ["created_at", "2019-08-25 19:58:54.585234"], ["updated_at", "2019-08-25 19:58:54.585234"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"bloom@nader.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bloom@nader.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wes@kutch.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "wes@kutch.com"], ["encrypted_password", "$2a$04$LpEyduOYDi2JSp.yFpOlOusowGxHDUVn6p6DzYtsTNXwtvxalZdja"], ["confirmed_at", "2019-08-25 19:58:54.592849"], ["locked_at", "2019-08-25 19:58:54.592863"], ["email", "wes@kutch.com"], ["created_at", "2019-08-25 19:58:54.593766"], ["updated_at", "2019-08-25 19:58:54.593766"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"wes@kutch.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "wes@kutch.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marcel_carter@welch.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marcel_carter@welch.info"], ["encrypted_password", "$2a$04$F8e1gA/Z.LbJN0dMXBYWP.q5oKcBQBNNZb8M39EKeTSjxFaDFNz0S"], ["confirmed_at", "2019-08-25 19:58:54.601052"], ["email", "marcel_carter@welch.info"], ["created_at", "2019-08-25 19:58:54.602134"], ["updated_at", "2019-08-25 19:58:54.602134"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"marcel_carter@welch.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marcel_carter@welch.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hershel_olson@koepp.info"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "hershel_olson@koepp.info"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hershel_olson@koepp.info"], ["encrypted_password", "$2a$04$DazaQA9n1Qv.PyTDKRrvqejc9h0PopdRevjmSnxbz/kpsbKn14f3C"], ["confirmed_at", "2019-08-25 19:58:57.852148"], ["email", "hershel_olson@koepp.info"], ["tokens", "{}"], ["created_at", "2019-08-25 19:58:57.854529"], ["updated_at", "2019-08-25 19:58:57.854529"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"hershel_olson@koepp.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hershel_olson@koepp.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7qejtWCfLaGUqe6hJAk-eA\":{\"token\":\"$2a$12$SpVpy3TQMycOBovaGCRumOT/5MpuS32IY42bl.l9qZu0Cm0aPzu2O\",\"expiry\":1567972738,\"last_token\":null,\"updated_at\":\"2019-08-25T14:58:58.052-05:00\"}}"], ["updated_at", "2019-08-25 19:58:58.053467"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 19:58:58.056882"], ["last_sign_in_at", "2019-08-25 19:58:58.056882"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 19:58:58.057184"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 189ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "fausto.koepp@bernhard.io"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "fausto.koepp@bernhard.io"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "fausto.koepp@bernhard.io"], ["encrypted_password", "$2a$04$YMlHUnH3KusuP7wTEez3NOXm1XzT74N7VlFUXXZRqvlbcYBs0eom."], ["confirmed_at", "2019-08-25 19:58:58.065504"], ["email", "fausto.koepp@bernhard.io"], ["tokens", "{}"], ["created_at", "2019-08-25 19:58:58.067043"], ["updated_at", "2019-08-25 19:58:58.067043"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"fausto.koepp@bernhard.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "fausto.koepp@bernhard.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-25 19:58:58.072593"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "arthur_hand@kundemedhurst.info"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "arthur_hand@kundemedhurst.info"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "arthur_hand@kundemedhurst.info"], ["encrypted_password", "$2a$04$gRYsZuyZK4CAVFjJnkUya.ta4CmV84FUYY/8GoynL29h9uBDaeYcC"], ["confirmation_token", "LSkGbPScd9b3-Kw4PVnV"], ["confirmation_sent_at", "2019-08-25 19:58:58.077426"], ["email", "arthur_hand@kundemedhurst.info"], ["tokens", "{}"], ["created_at", "2019-08-25 19:58:58.077343"], ["updated_at", "2019-08-25 19:58:58.077343"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"arthur_hand@kundemedhurst.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "arthur_hand@kundemedhurst.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "raphael_heller@granthoeger.io"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "raphael_heller@granthoeger.io"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "raphael_heller@granthoeger.io"], ["encrypted_password", "$2a$04$O7Cv2dQrI60OIUdyjVz0aeNyGShhMkqSvSUnm0/LhBNOMh5x73s92"], ["confirmed_at", "2019-08-25 19:58:58.084269"], ["locked_at", "2019-08-25 19:58:58.084288"], ["email", "raphael_heller@granthoeger.io"], ["tokens", "{}"], ["created_at", "2019-08-25 19:58:58.085890"], ["updated_at", "2019-08-25 19:58:58.085890"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"raphael_heller@granthoeger.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "raphael_heller@granthoeger.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rose@damore.net"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "rose@damore.net"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rose@damore.net"], ["encrypted_password", "$2a$04$M3Kx/t.qANWqDoSSnMLRJujXEgV3hdBpJF5WTrI5HpSYv8pG3sHFW"], ["confirmed_at", "2019-08-25 19:58:58.093245"], ["email", "rose@damore.net"], ["tokens", "{}"], ["created_at", "2019-08-25 19:58:58.094319"], ["updated_at", "2019-08-25 19:58:58.094319"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:58:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"rose@damore.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rose@damore.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sang.crist@yost.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "sang.crist@yost.net"], ["encrypted_password", "$2a$04$/XgJze8bHB4flVQTZSm60exycn75POf7t99je3aQaGye9icHX8Cm."], ["confirmed_at", "2019-08-25 19:59:01.591359"], ["email", "sang.crist@yost.net"], ["created_at", "2019-08-25 19:59:01.593767"], ["updated_at", "2019-08-25 19:59:01.593767"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"sang.crist@yost.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sang.crist@yost.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KQyjaS1Wz5NgAbLUqxNfqg\":{\"token\":\"$2a$10$hVp1S1Jb6zYyyfWo1qYRKuDRPivDHn6X.H02rDD1RN3WAIak9oZR.\",\"expiry\":1567972741,\"updated_at\":\"2019-08-25 19:59:01 UTC\"}}"], ["updated_at", "2019-08-25 19:59:01.678089"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 19:59:01.682175"], ["last_sign_in_at", "2019-08-25 19:59:01.682175"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 19:59:01.682609"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 74ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ava.romaguera@schimmel.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "ava.romaguera@schimmel.org"], ["encrypted_password", "$2a$04$Z1JGrSp3tzbCoWF.RZnZ/utxN7HgvNpGFOqcf8A/fbwxYIpaNvZ2u"], ["confirmed_at", "2019-08-25 19:59:01.690664"], ["email", "ava.romaguera@schimmel.org"], ["created_at", "2019-08-25 19:59:01.691584"], ["updated_at", "2019-08-25 19:59:01.691584"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ava.romaguera@schimmel.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ava.romaguera@schimmel.org"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ru_lang@leuschkewilderman.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ru_lang@leuschkewilderman.org"], ["encrypted_password", "$2a$04$2QMJTnCEPpGgAPn7M2FLte5sKYaKxcn/rJXdgIzo38pXD0EMOAw6u"], ["confirmation_token", "cXc5t2CUDVWazJtznhQt"], ["confirmation_sent_at", "2019-08-25 19:59:01.701415"], ["email", "ru_lang@leuschkewilderman.org"], ["created_at", "2019-08-25 19:59:01.701325"], ["updated_at", "2019-08-25 19:59:01.701325"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ru_lang@leuschkewilderman.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ru_lang@leuschkewilderman.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bernetta.dare@jenkins.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bernetta.dare@jenkins.com"], ["encrypted_password", "$2a$04$LVXB5f/JFgvMg9sOztWlQOOAUgBCqB6ko9rUCLpVCZtPZ/rDoVxEG"], ["confirmed_at", "2019-08-25 19:59:01.707502"], ["locked_at", "2019-08-25 19:59:01.707514"], ["email", "bernetta.dare@jenkins.com"], ["created_at", "2019-08-25 19:59:01.708357"], ["updated_at", "2019-08-25 19:59:01.708357"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"bernetta.dare@jenkins.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bernetta.dare@jenkins.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elaina_pagac@farrell.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "elaina_pagac@farrell.io"], ["encrypted_password", "$2a$04$2vV1KMbzLqsraor4e8WiFOR3v3dgPo//JZGMAxnGH4cffuR1B7iCu"], ["confirmed_at", "2019-08-25 19:59:01.715196"], ["email", "elaina_pagac@farrell.io"], ["created_at", "2019-08-25 19:59:01.716054"], ["updated_at", "2019-08-25 19:59:01.716054"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"elaina_pagac@farrell.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elaina_pagac@farrell.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "valentin.botsford@larkinmurazik.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "valentin.botsford@larkinmurazik.co"], ["encrypted_password", "$2a$04$qv3So8WAjjCq7W5Ay4UWi.Wnd6bWTZFpAbx8.FCN4Ur6.82DbNbrC"], ["confirmed_at", "2019-08-25 19:59:05.099867"], ["email", "valentin.botsford@larkinmurazik.co"], ["tokens", "{}"], ["created_at", "2019-08-25 19:59:05.101834"], ["updated_at", "2019-08-25 19:59:05.101834"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"valentin.botsford@larkinmurazik.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "valentin.botsford@larkinmurazik.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"WPh2GNQvncBtp-ffmdEKRA\":{\"token\":\"$2a$12$Ohe4UsdFfXP374Iy3fGWEOZsjzI1RNXtN/Rb8PXJixW1xV8HC4UDS\",\"expiry\":1567972745,\"last_token\":null,\"updated_at\":\"2019-08-25T14:59:05.124-05:00\"}}"], ["updated_at", "2019-08-25 19:59:05.301741"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 19:59:05.304557"], ["last_sign_in_at", "2019-08-25 19:59:05.304557"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 19:59:05.304809"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 190ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "maurine@prosacco.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "maurine@prosacco.net"], ["encrypted_password", "$2a$04$5GSJgcEvuYB2.Lxl.nDEjOc8G6g5Cdw2Wjiv9woYWNSdXtjDoczY2"], ["confirmed_at", "2019-08-25 19:59:05.312209"], ["email", "maurine@prosacco.net"], ["tokens", "{}"], ["created_at", "2019-08-25 19:59:05.312972"], ["updated_at", "2019-08-25 19:59:05.312972"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"maurine@prosacco.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "maurine@prosacco.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-25 19:59:05.317091"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alvera@schulistcole.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alvera@schulistcole.name"], ["encrypted_password", "$2a$04$g1wVGtifMC/UolvD/KZ9N.At6NvdTqCCRvjpApwIQRU6i6scGs2zq"], ["confirmation_token", "kXwC6KPX7EYsWHy_zUKx"], ["confirmation_sent_at", "2019-08-25 19:59:05.321623"], ["email", "alvera@schulistcole.name"], ["tokens", "{}"], ["created_at", "2019-08-25 19:59:05.321544"], ["updated_at", "2019-08-25 19:59:05.321544"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"alvera@schulistcole.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alvera@schulistcole.name"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cole.reichel@thompson.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cole.reichel@thompson.name"], ["encrypted_password", "$2a$04$h3hCAdBr1nwLEA/yvNOxQubvggfgBV.dn.XyJ92Xvc3vXdAwoH3W2"], ["confirmed_at", "2019-08-25 19:59:05.339174"], ["locked_at", "2019-08-25 19:59:05.339186"], ["email", "cole.reichel@thompson.name"], ["tokens", "{}"], ["created_at", "2019-08-25 19:59:05.340127"], ["updated_at", "2019-08-25 19:59:05.340127"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"cole.reichel@thompson.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cole.reichel@thompson.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "karol_kemmer@brakus.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "karol_kemmer@brakus.info"], ["encrypted_password", "$2a$04$.quLbBQiNJDHtPqyeikNnuwxz5OPyQywD.33/x3jkPjv1FpNAwPSS"], ["confirmed_at", "2019-08-25 19:59:05.347696"], ["email", "karol_kemmer@brakus.info"], ["tokens", "{}"], ["created_at", "2019-08-25 19:59:05.348600"], ["updated_at", "2019-08-25 19:59:05.348600"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"karol_kemmer@brakus.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "karol_kemmer@brakus.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kirstie@schowalterjerde.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "kirstie@schowalterjerde.name"], ["encrypted_password", "$2a$04$t07/j2zZAprsOBIeLPbz1.ggsIFVdU97PgWzWchpB4KhGYqF0B1SS"], ["confirmed_at", "2019-08-25 19:59:08.754261"], ["email", "kirstie@schowalterjerde.name"], ["created_at", "2019-08-25 19:59:08.756307"], ["updated_at", "2019-08-25 19:59:08.756307"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kirstie@schowalterjerde.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kirstie@schowalterjerde.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Q9Cq6WSa7BNvwknqUEpTvA\":{\"token\":\"$2a$10$uKXpa/Rrby6iiSsxORYy8O5z0HIMxKO8gBj294pMyMiJVS25VbeCu\",\"expiry\":1567972748,\"updated_at\":\"2019-08-25 19:59:08 UTC\"}}"], ["updated_at", "2019-08-25 19:59:08.827202"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 19:59:08.830043"], ["last_sign_in_at", "2019-08-25 19:59:08.830043"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 19:59:08.830313"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "willian.pacocha@hodkiewicz.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "willian.pacocha@hodkiewicz.biz"], ["encrypted_password", "$2a$04$ZnhZlDdE0miCZL3otuFbw..shHJQmAlIb0Qj6TmnwU9QgRxu52cKG"], ["confirmed_at", "2019-08-25 19:59:08.838537"], ["email", "willian.pacocha@hodkiewicz.biz"], ["created_at", "2019-08-25 19:59:08.839325"], ["updated_at", "2019-08-25 19:59:08.839325"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"willian.pacocha@hodkiewicz.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "willian.pacocha@hodkiewicz.biz"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rocco@tillmanrutherford.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rocco@tillmanrutherford.name"], ["encrypted_password", "$2a$04$5PcJnUSb9BgCsh1HWMvbNeQQiCmTEbmTGi19V0ScTk/i5NP2zfAYO"], ["confirmation_token", "-goBz9fHssrFFm_dkQoh"], ["confirmation_sent_at", "2019-08-25 19:59:08.848465"], ["email", "rocco@tillmanrutherford.name"], ["created_at", "2019-08-25 19:59:08.848365"], ["updated_at", "2019-08-25 19:59:08.848365"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"rocco@tillmanrutherford.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rocco@tillmanrutherford.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leta@bashirian.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "leta@bashirian.net"], ["encrypted_password", "$2a$04$YYXdLRBgon33AaEhQpLaG.g6oE6366kWVvZVUQu8APuyXxr4zHu9a"], ["confirmed_at", "2019-08-25 19:59:08.854495"], ["locked_at", "2019-08-25 19:59:08.854506"], ["email", "leta@bashirian.net"], ["created_at", "2019-08-25 19:59:08.855287"], ["updated_at", "2019-08-25 19:59:08.855287"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"leta@bashirian.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leta@bashirian.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "demetrius.cormier@corwinhickle.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "demetrius.cormier@corwinhickle.info"], ["encrypted_password", "$2a$04$7FIezToBzVbcVjqAKN90meojZ5lC5TP9AXZKAuSe4z9I0ysqZ8k3G"], ["confirmed_at", "2019-08-25 19:59:08.862120"], ["email", "demetrius.cormier@corwinhickle.info"], ["created_at", "2019-08-25 19:59:08.862979"], ["updated_at", "2019-08-25 19:59:08.862979"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"demetrius.cormier@corwinhickle.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "demetrius.cormier@corwinhickle.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.6ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "teodoro_jenkins@osinski.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "teodoro_jenkins@osinski.org"], ["encrypted_password", "$2a$04$g44iRF0vUp5gPsq3jg2TiOIz0c5OpSFu5pOn5Z1qot9RENjVwZk9O"], ["confirmed_at", "2019-08-25 19:59:12.219378"], ["email", "teodoro_jenkins@osinski.org"], ["created_at", "2019-08-25 19:59:12.220581"], ["updated_at", "2019-08-25 19:59:12.220581"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"teodoro_jenkins@osinski.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "teodoro_jenkins@osinski.org"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NFj9kaLCJ281sXjCJqREtA\":{\"token\":\"$2a$10$.0MqEqsjHDXd9wrifRjJgefZ6RBzFTw/yQgMJgTloRFCX2RJWLEUq\",\"expiry\":1567972752,\"updated_at\":\"2019-08-25 19:59:12 UTC\"}}"], ["updated_at", "2019-08-25 19:59:12.284389"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 19:59:12.288354"], ["last_sign_in_at", "2019-08-25 19:59:12.288354"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 19:59:12.288639"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 56ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 12087) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "richie@glover.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "richie@glover.io"], ["encrypted_password", "$2a$04$AShvqOC4KfOfXq.fh2roZeInMG6Gvd8r64pwXJWnuGEXGLXcJYDGK"], ["confirmed_at", "2019-08-25 19:59:12.297299"], ["email", "richie@glover.io"], ["created_at", "2019-08-25 19:59:12.298098"], ["updated_at", "2019-08-25 19:59:12.298098"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"richie@glover.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "richie@glover.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2101) TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sherman_nicolas@spinka.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sherman_nicolas@spinka.net"], ["encrypted_password", "$2a$04$k/f9fJdJR9UHdq43GfHIiuVmXaEG5taStxh6S7iv36KnETDlgsuhe"], ["confirmation_token", "aCS_vmuo92zHi8kf5w-J"], ["confirmation_sent_at", "2019-08-25 19:59:12.308102"], ["email", "sherman_nicolas@spinka.net"], ["created_at", "2019-08-25 19:59:12.308008"], ["updated_at", "2019-08-25 19:59:12.308008"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"sherman_nicolas@spinka.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sherman_nicolas@spinka.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1292) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elwanda@wyman.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "elwanda@wyman.net"], ["encrypted_password", "$2a$04$WsNqjFWu/oQiIHHP9L5GmeOlBMzYwuGEek0ogV2dbIkWxgVVD92ua"], ["confirmed_at", "2019-08-25 19:59:12.315956"], ["locked_at", "2019-08-25 19:59:12.315994"], ["email", "elwanda@wyman.net"], ["created_at", "2019-08-25 19:59:12.317640"], ["updated_at", "2019-08-25 19:59:12.317640"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"elwanda@wyman.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elwanda@wyman.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1310) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mel_roob@bernier.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mel_roob@bernier.co"], ["encrypted_password", "$2a$04$kntZr/PWlhu.GRmAna03POtuaj04DhaIr.ZDP.G9Xnm2OewTERwoa"], ["confirmed_at", "2019-08-25 19:59:12.325713"], ["email", "mel_roob@bernier.co"], ["created_at", "2019-08-25 19:59:12.326542"], ["updated_at", "2019-08-25 19:59:12.326542"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"mel_roob@bernier.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mel_roob@bernier.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1289) TRANSACTION (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'kennith@roob.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kennith@roob.net"], ["encrypted_password", "$2a$04$FsdO1lZNUl68AD6FUylrcuTZ4U9wUOc/8SN6Ci2GHyUnG1UWeDmHa"], ["confirmed_at", "2019-08-25 19:59:53.009903"], ["uid", "kennith@roob.net"], ["created_at", "2019-08-25 19:59:53.015160"], ["updated_at", "2019-08-25 19:59:53.015160"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kennith@roob.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "kennith@roob.net"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TOkD_tp0_eHBs633eK5N_w\":{\"token\":\"$2a$10$79vek7.cpRmk6pbt7sOjWefnPtv.2wtyvF6T3xVgVewtkbSIy0bfy\",\"expiry\":1567972793,\"updated_at\":\"2019-08-25 19:59:53 UTC\"}}"], ["updated_at", "2019-08-25 19:59:53.100897"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-25 19:59:53.105107"], ["current_sign_in_at", "2019-08-25 19:59:53.105107"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 19:59:53.105503"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 69ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'dena_upton@bauch.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dena_upton@bauch.co"], ["encrypted_password", "$2a$04$P8UBg1HBPdob3Wxntik8P.ktrwEWuq4/3eo.vDrJb4/Sx82hy3aYe"], ["confirmed_at", "2019-08-25 19:59:53.112142"], ["uid", "dena_upton@bauch.co"], ["created_at", "2019-08-25 19:59:53.112978"], ["updated_at", "2019-08-25 19:59:53.112978"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"dena_upton@bauch.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "dena_upton@bauch.co"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'exie_kub@nitzsche.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "exie_kub@nitzsche.co"], ["encrypted_password", "$2a$04$tA0eMmKhs6wyHkxDuJsy1eYXzxzjMNtRaYNXqukq82F2SUcnhiI4u"], ["uid", "exie_kub@nitzsche.co"], ["created_at", "2019-08-25 19:59:53.123986"], ["updated_at", "2019-08-25 19:59:53.123986"], ["confirmation_token", "sTKL1xNmc7sAFk3uMkqD"], ["confirmation_sent_at", "2019-08-25 19:59:53.124131"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"exie_kub@nitzsche.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "exie_kub@nitzsche.co"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'consuela@mills.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "consuela@mills.com"], ["encrypted_password", "$2a$04$eFqe0vHDh9PmyfBT59NR6eCMqCKocvYdb.v0ByGL04joXXsbk5FUe"], ["confirmed_at", "2019-08-25 19:59:53.131963"], ["locked_at", "2019-08-25 19:59:53.132008"], ["uid", "consuela@mills.com"], ["created_at", "2019-08-25 19:59:53.132888"], ["updated_at", "2019-08-25 19:59:53.132888"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"consuela@mills.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "consuela@mills.com"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'shea@walkercronin.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "shea@walkercronin.com"], ["encrypted_password", "$2a$04$aYmTiGtXPNI7rP7cCjnya.QA3VYrkyTcMfqJObNrmaBXnNBFaGQpy"], ["confirmed_at", "2019-08-25 19:59:53.142446"], ["auth_available", "f"], ["uid", "shea@walkercronin.com"], ["created_at", "2019-08-25 19:59:53.143854"], ["updated_at", "2019-08-25 19:59:53.143854"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 14:59:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"shea@walkercronin.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "shea@walkercronin.com"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'pete_robel@stokes.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pete_robel@stokes.net"], ["encrypted_password", "$2a$04$nOUQUoMDTQqotEj/MhQEIOiDkXM9WsxgE7xMCE4mcPc7N02uZiq8O"], ["confirmed_at", "2019-08-25 20:04:40.885515"], ["uid", "pete_robel@stokes.net"], ["created_at", "2019-08-25 20:04:40.893306"], ["updated_at", "2019-08-25 20:04:40.893306"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"pete_robel@stokes.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "pete_robel@stokes.net"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Zij9AIvI4jiqeWqN3C0LHA\":{\"token\":\"$2a$10$1w4nLE9ifpAt1Tx6PQMdve8lL84pzueQtvpW3ujQD3OZwtdWU8SO2\",\"expiry\":1567973080,\"updated_at\":\"2019-08-25 20:04:40 UTC\"}}"], ["updated_at", "2019-08-25 20:04:40.992249"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-25 20:04:40.997750"], ["current_sign_in_at", "2019-08-25 20:04:40.997750"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:04:40.998368"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 79ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'brook@hahn.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "brook@hahn.name"], ["encrypted_password", "$2a$04$sa89AwxCh2qmHDSmvnYDdeTl.nvwPbxm1YDzVEE0lzkHO38yl/IZ."], ["confirmed_at", "2019-08-25 20:04:41.005837"], ["uid", "brook@hahn.name"], ["created_at", "2019-08-25 20:04:41.007044"], ["updated_at", "2019-08-25 20:04:41.007044"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"brook@hahn.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "brook@hahn.name"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'isis.oconner@kohler.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "isis.oconner@kohler.name"], ["encrypted_password", "$2a$04$UKLKwKW5ei0kzvhMWaPmWOfsFPl8iGprvF8wwtzTaR/ziSQt2Ybnu"], ["uid", "isis.oconner@kohler.name"], ["created_at", "2019-08-25 20:04:41.022292"], ["updated_at", "2019-08-25 20:04:41.022292"], ["confirmation_token", "vz5kBqChZ9Urn5GggySG"], ["confirmation_sent_at", "2019-08-25 20:04:41.022519"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"isis.oconner@kohler.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "isis.oconner@kohler.name"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'millard_bernier@creminhintz.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "millard_bernier@creminhintz.info"], ["encrypted_password", "$2a$04$6T6Nm.D8.k9l7WMUe4Zh8OzM3xbHTjYFQYUhM2JlzNgmfAyIw7l6."], ["confirmed_at", "2019-08-25 20:04:41.033641"], ["locked_at", "2019-08-25 20:04:41.033708"], ["uid", "millard_bernier@creminhintz.info"], ["created_at", "2019-08-25 20:04:41.034710"], ["updated_at", "2019-08-25 20:04:41.034710"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"millard_bernier@creminhintz.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "millard_bernier@creminhintz.info"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jillian@legrosbahringer.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "jillian@legrosbahringer.info"], ["encrypted_password", "$2a$04$3n185kl2BJJkXI5xcDEaFempftS839hk.0KCNDFCtsPuVe3y7VvS2"], ["confirmed_at", "2019-08-25 20:04:41.045086"], ["auth_available", "f"], ["uid", "jillian@legrosbahringer.info"], ["created_at", "2019-08-25 20:04:41.046278"], ["updated_at", "2019-08-25 20:04:41.046278"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jillian@legrosbahringer.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "jillian@legrosbahringer.info"]] Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "richard@kiehn.biz"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "richard@kiehn.biz"], ["encrypted_password", "$2a$04$UJ9m6gNRE/d71Ky3gi/xFOvBYwaHoQBiH1G7g1JBmrqju1A2PZzPq"], ["confirmed_at", "2019-08-25 20:04:44.740596"], ["email", "richard@kiehn.biz"], ["tokens", "{}"], ["created_at", "2019-08-25 20:04:44.741759"], ["updated_at", "2019-08-25 20:04:44.741759"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"richard@kiehn.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "richard@kiehn.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-nMqAVGIqoTnRJjRCW09PQ\":{\"token\":\"$2a$12$WSF9/ctWkOxzS27Vt39WlO9ewpOQA0u/I936SbEa5pP1wA5hZuc9i\",\"expiry\":1567973084,\"last_token\":null,\"updated_at\":\"2019-08-25T15:04:44.951-05:00\"}}"], ["updated_at", "2019-08-25 20:04:44.952484"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:04:44.956879"], ["last_sign_in_at", "2019-08-25 20:04:44.956879"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:04:44.957227"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 202ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "james.veum@mccullough.io"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "james.veum@mccullough.io"], ["encrypted_password", "$2a$04$Aet7zVB6FFgZCXE.CM3hGOouflNlfe3y/eu214Ar.7a7k3NBvnYd6"], ["confirmed_at", "2019-08-25 20:04:44.964124"], ["email", "james.veum@mccullough.io"], ["tokens", "{}"], ["created_at", "2019-08-25 20:04:44.965104"], ["updated_at", "2019-08-25 20:04:44.965104"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"james.veum@mccullough.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "james.veum@mccullough.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-25 20:04:44.969043"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "gino@kuhic.net"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "e7687f16e9d7027a212bfe59a25426cf3ac9a6b6135c275a387a146a992d7b6d"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gino@kuhic.net"], ["encrypted_password", "$2a$04$rIs2SLK03NFBLFUo0JrG3ej5idic0lpcHFrb3JhqK/.ME7e7.5Eh."], ["confirmation_token", "TT_xkcaYLg6WWLmTDSPb"], ["confirmation_sent_at", "2019-08-25 20:04:45.056886"], ["email", "gino@kuhic.net"], ["tokens", "{}"], ["created_at", "2019-08-25 20:04:44.972818"], ["updated_at", "2019-08-25 20:04:44.972818"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"gino@kuhic.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gino@kuhic.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "augustus.boyle@johnston.net"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "augustus.boyle@johnston.net"], ["encrypted_password", "$2a$04$GKh7oDTGEz3cPT6XKcxDY.hpudKjTxuWV9bM2esW94AYQQJaoSjQq"], ["confirmed_at", "2019-08-25 20:04:45.063416"], ["locked_at", "2019-08-25 20:04:45.063428"], ["email", "augustus.boyle@johnston.net"], ["tokens", "{}"], ["created_at", "2019-08-25 20:04:45.064165"], ["updated_at", "2019-08-25 20:04:45.064165"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"augustus.boyle@johnston.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "augustus.boyle@johnston.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "janice@kertzmann.org"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "janice@kertzmann.org"], ["encrypted_password", "$2a$04$gzdDE6kdJeSRHSx.uSoevO.n0quTWHepcz4Kp8i/uFH7YCkReN0CW"], ["confirmed_at", "2019-08-25 20:04:45.070908"], ["email", "janice@kertzmann.org"], ["tokens", "{}"], ["created_at", "2019-08-25 20:04:45.071776"], ["updated_at", "2019-08-25 20:04:45.071776"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"janice@kertzmann.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "janice@kertzmann.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "virgen@kertzmannmuller.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "virgen@kertzmannmuller.info"], ["encrypted_password", "$2a$04$K2VgzNtPhqHsrOtfXYbOYOrMU.zRgIjAohwdE75qf1Yc1qVBV.m.G"], ["confirmed_at", "2019-08-25 20:04:48.325565"], ["email", "virgen@kertzmannmuller.info"], ["created_at", "2019-08-25 20:04:48.330215"], ["updated_at", "2019-08-25 20:04:48.330215"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"virgen@kertzmannmuller.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "virgen@kertzmannmuller.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"RwRDjnlTrK9QsNgSXUyeSw\":{\"token\":\"$2a$10$fl2CUw/FO9VlMmE55sIZo.xqv616cEAT7QZEzw6WW0vTqm1mhmZAa\",\"expiry\":1567973088,\"updated_at\":\"2019-08-25 20:04:48 UTC\"}}"], ["updated_at", "2019-08-25 20:04:48.402043"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:04:48.406408"], ["last_sign_in_at", "2019-08-25 20:04:48.406408"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:04:48.406795"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 63ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "devorah_tremblay@treutel.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "devorah_tremblay@treutel.name"], ["encrypted_password", "$2a$04$N7WkhYxZes7b7Van4kC//.sPon13lgyUAvu8XYmoDbi9X034yLM8."], ["confirmed_at", "2019-08-25 20:04:48.413350"], ["email", "devorah_tremblay@treutel.name"], ["created_at", "2019-08-25 20:04:48.414185"], ["updated_at", "2019-08-25 20:04:48.414185"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"devorah_tremblay@treutel.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "devorah_tremblay@treutel.name"], ["LIMIT", 1]] SQL (0.0ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dedra@hettinger.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dedra@hettinger.org"], ["encrypted_password", "$2a$04$j5FtuZai3WEJZCfMOQdJGuMvcR4sr4Uz43S75D18qygTqc6kfgFaa"], ["confirmation_token", "J2YkTkxpx2ScfxiLquQs"], ["confirmation_sent_at", "2019-08-25 20:04:48.422759"], ["email", "dedra@hettinger.org"], ["created_at", "2019-08-25 20:04:48.422687"], ["updated_at", "2019-08-25 20:04:48.422687"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"dedra@hettinger.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dedra@hettinger.org"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leonel@predovicstanton.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "leonel@predovicstanton.org"], ["encrypted_password", "$2a$04$0GbAPH7bgNW4tLH.7nkjsu8PSGE/rQ1.0bUfOWTUjgRRkTY4T.aIy"], ["confirmed_at", "2019-08-25 20:04:48.428051"], ["locked_at", "2019-08-25 20:04:48.428061"], ["email", "leonel@predovicstanton.org"], ["created_at", "2019-08-25 20:04:48.428682"], ["updated_at", "2019-08-25 20:04:48.428682"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"leonel@predovicstanton.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leonel@predovicstanton.org"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "denyse@koelpinturcotte.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "denyse@koelpinturcotte.io"], ["encrypted_password", "$2a$04$hXU3mJc0DSKFkhukTn7QB.d5WIpGbiOPHiUg25eh.uObDjq4r0M.i"], ["confirmed_at", "2019-08-25 20:04:48.433894"], ["email", "denyse@koelpinturcotte.io"], ["created_at", "2019-08-25 20:04:48.434568"], ["updated_at", "2019-08-25 20:04:48.434568"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:04:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"denyse@koelpinturcotte.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "denyse@koelpinturcotte.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'trudy@beerpurdy.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "trudy@beerpurdy.co"], ["encrypted_password", "$2a$04$G.xiznK314RzvqdetumEluxHzWiN8TBGWP.tvPn6cTlc1HLZPtBu6"], ["confirmed_at", "2019-08-25 20:05:15.954125"], ["uid", "trudy@beerpurdy.co"], ["created_at", "2019-08-25 20:05:15.960375"], ["updated_at", "2019-08-25 20:05:15.960375"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"trudy@beerpurdy.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "trudy@beerpurdy.co"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"40CsGi-ehlzFBBS4z9QqRA\":{\"token\":\"$2a$10$gupw.1FXfSz6yPtJ/0Qn0uh2.FCo5J4662D4PASm86uIeNFDRSWW6\",\"expiry\":1567973116,\"updated_at\":\"2019-08-25 20:05:15 UTC\"}}"], ["updated_at", "2019-08-25 20:05:16.041972"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-25 20:05:16.046649"], ["current_sign_in_at", "2019-08-25 20:05:16.046649"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:05:16.047133"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 67ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'camilla_kris@fritsch.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camilla_kris@fritsch.io"], ["encrypted_password", "$2a$04$0KYzTz.8vJvy3N11Z1C.suwwBJPg1Cm90IAhi3IS1XF6DJLjDTYSC"], ["confirmed_at", "2019-08-25 20:05:16.053494"], ["uid", "camilla_kris@fritsch.io"], ["created_at", "2019-08-25 20:05:16.054506"], ["updated_at", "2019-08-25 20:05:16.054506"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"camilla_kris@fritsch.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "camilla_kris@fritsch.io"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'herminia@quitzon.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "herminia@quitzon.com"], ["encrypted_password", "$2a$04$AZeg7Mj7lKFgcYrXRgVSB.4Dr6Te0D4m6rXICdA2P9IZF6aPZkUuG"], ["uid", "herminia@quitzon.com"], ["created_at", "2019-08-25 20:05:16.067601"], ["updated_at", "2019-08-25 20:05:16.067601"], ["confirmation_token", "nk3dDa7WDFZ-u1nFvx8c"], ["confirmation_sent_at", "2019-08-25 20:05:16.067764"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"herminia@quitzon.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "herminia@quitzon.com"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'lynelle@reinger.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "lynelle@reinger.biz"], ["encrypted_password", "$2a$04$a9dTzjL4niBY/VrwQ7XV3ORqoJTjUgorPeW2qqexisAOUylP8dpk."], ["confirmed_at", "2019-08-25 20:05:16.077434"], ["locked_at", "2019-08-25 20:05:16.077497"], ["uid", "lynelle@reinger.biz"], ["created_at", "2019-08-25 20:05:16.078434"], ["updated_at", "2019-08-25 20:05:16.078434"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lynelle@reinger.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "lynelle@reinger.biz"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'juan_predovic@auer.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "juan_predovic@auer.net"], ["encrypted_password", "$2a$04$rzEbqS5x8Rze8dkiEuWC7OmfrEGwu3L9dxoL05WmNsdbV2q/eiy1G"], ["confirmed_at", "2019-08-25 20:05:16.088518"], ["auth_available", "f"], ["uid", "juan_predovic@auer.net"], ["created_at", "2019-08-25 20:05:16.089525"], ["updated_at", "2019-08-25 20:05:16.089525"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"juan_predovic@auer.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "juan_predovic@auer.net"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "toby_dickinson@dibbert.com"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "toby_dickinson@dibbert.com"], ["encrypted_password", "$2a$04$lsv.mwS/vW124TgilpTwsOCJYd44eZkMt5pWMhFgc1MW8wdfgSv5S"], ["confirmed_at", "2019-08-25 20:05:19.918895"], ["email", "toby_dickinson@dibbert.com"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:19.920147"], ["updated_at", "2019-08-25 20:05:19.920147"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"toby_dickinson@dibbert.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "toby_dickinson@dibbert.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"QU2P6IuoTwIkMs4UZbXD5Q\":{\"token\":\"$2a$12$KE4IsWPmDMOtFewFrJtHZeH/5LqIu7NtuX118t.i7a4JWB5FT3bf2\",\"expiry\":1567973120,\"last_token\":null,\"updated_at\":\"2019-08-25T15:05:20.131-05:00\"}}"], ["updated_at", "2019-08-25 20:05:20.131809"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:05:20.136433"], ["last_sign_in_at", "2019-08-25 20:05:20.136433"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:05:20.136790"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 202ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "moises@okonhowell.info"]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "moises@okonhowell.info"], ["encrypted_password", "$2a$04$LnW0RdlfYqTLe1FG.ms7J.buagdiYqAmdoboBx/nCgLREulASIXb."], ["confirmed_at", "2019-08-25 20:05:20.143697"], ["email", "moises@okonhowell.info"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:20.144338"], ["updated_at", "2019-08-25 20:05:20.144338"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"moises@okonhowell.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "moises@okonhowell.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-25 20:05:20.148281"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "alfonso_moriette@schmidt.org"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "7c5fe7d300c815bbd465864455a987dff77a272685722de759822cc5a102e262"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alfonso_moriette@schmidt.org"], ["encrypted_password", "$2a$04$kk2fuxj.hw7U24RGTcESPOU0PE27y0u1PvIk8tTuoHSmOB4b2G5hK"], ["confirmation_token", "V8_oFxAC9cGowSvKYjmC"], ["confirmation_sent_at", "2019-08-25 20:05:20.239508"], ["email", "alfonso_moriette@schmidt.org"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:20.152223"], ["updated_at", "2019-08-25 20:05:20.152223"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"alfonso_moriette@schmidt.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alfonso_moriette@schmidt.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "wilson.daugherty@keler.io"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "wilson.daugherty@keler.io"], ["encrypted_password", "$2a$04$bD4RccC0mTmyB1Opxe4iv.uSOwiXc/N44go4QhbaHradE3qMWAAYG"], ["confirmed_at", "2019-08-25 20:05:20.246550"], ["locked_at", "2019-08-25 20:05:20.246562"], ["email", "wilson.daugherty@keler.io"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:20.247403"], ["updated_at", "2019-08-25 20:05:20.247403"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"wilson.daugherty@keler.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "wilson.daugherty@keler.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "manuel@moore.co"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "manuel@moore.co"], ["encrypted_password", "$2a$04$yIKsl5gQL1KqsWSmiwcHT.il1swRJU/OSnLN/J.yLdFYYv5eLEdJi"], ["confirmed_at", "2019-08-25 20:05:20.254270"], ["email", "manuel@moore.co"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:20.255055"], ["updated_at", "2019-08-25 20:05:20.255055"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"manuel@moore.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "manuel@moore.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "thad@ryanharvey.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "thad@ryanharvey.info"], ["encrypted_password", "$2a$04$qAtDRUSPpm0eD99N9D9PEO6u/fCBKBSRJWofuph/fc2/4ZQJ6V1xu"], ["confirmed_at", "2019-08-25 20:05:23.972083"], ["email", "thad@ryanharvey.info"], ["created_at", "2019-08-25 20:05:23.977985"], ["updated_at", "2019-08-25 20:05:23.977985"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"thad@ryanharvey.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "thad@ryanharvey.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DG9lpNsHuHHV-DM2EznFsg\":{\"token\":\"$2a$10$UvLhWOrSAhfmCwHlDgFhyOZXgTkzGXwX9hCx9/j9Kz6kin04okrju\",\"expiry\":1567973124,\"updated_at\":\"2019-08-25 20:05:24 UTC\"}}"], ["updated_at", "2019-08-25 20:05:24.062185"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:05:24.068011"], ["last_sign_in_at", "2019-08-25 20:05:24.068011"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:05:24.068650"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 74ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "walker.stamm@cummingswhite.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "walker.stamm@cummingswhite.io"], ["encrypted_password", "$2a$04$pi9LsgQ.53iAICcKgXiMzubBZb4RXXqP8q3gSOeZsKZzOqEbTfLe."], ["confirmed_at", "2019-08-25 20:05:24.076263"], ["email", "walker.stamm@cummingswhite.io"], ["created_at", "2019-08-25 20:05:24.077312"], ["updated_at", "2019-08-25 20:05:24.077312"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"walker.stamm@cummingswhite.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "walker.stamm@cummingswhite.io"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "blake@wolf.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "blake@wolf.io"], ["encrypted_password", "$2a$04$dZD7AHL0Kl/rSJvX3U.0Ieg78O.j/MHUtsdVBwLysMY47oavVvjUW"], ["confirmation_token", "NX5ogMNCTszktPQsTY-S"], ["confirmation_sent_at", "2019-08-25 20:05:24.088502"], ["email", "blake@wolf.io"], ["created_at", "2019-08-25 20:05:24.088403"], ["updated_at", "2019-08-25 20:05:24.088403"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"blake@wolf.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "blake@wolf.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "noe.crona@gaylord.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "noe.crona@gaylord.biz"], ["encrypted_password", "$2a$04$T6r0TNW3ifmLKxSxmpreOOx6uK7NkZubvQ2KVCAgCrx1RAVgd9tme"], ["confirmed_at", "2019-08-25 20:05:24.098846"], ["locked_at", "2019-08-25 20:05:24.098867"], ["email", "noe.crona@gaylord.biz"], ["created_at", "2019-08-25 20:05:24.099923"], ["updated_at", "2019-08-25 20:05:24.099923"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"noe.crona@gaylord.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "noe.crona@gaylord.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "robt_berge@baumbach.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "robt_berge@baumbach.biz"], ["encrypted_password", "$2a$04$in6ng4B35CcyRhdX8n3ApukAdCMhWYoscye4G5VGl6KlQSHLZ86Zy"], ["confirmed_at", "2019-08-25 20:05:24.107926"], ["email", "robt_berge@baumbach.biz"], ["created_at", "2019-08-25 20:05:24.109115"], ["updated_at", "2019-08-25 20:05:24.109115"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"robt_berge@baumbach.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "robt_berge@baumbach.biz"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "loyd_ohara@langworthreilly.co"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "loyd_ohara@langworthreilly.co"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "loyd_ohara@langworthreilly.co"], ["encrypted_password", "$2a$04$7DJAcecZsSM3nmtTAno/kOzXrD4m050VaXb0K78crvXiegZlNLa5G"], ["confirmed_at", "2019-08-25 20:05:27.934940"], ["email", "loyd_ohara@langworthreilly.co"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:27.937299"], ["updated_at", "2019-08-25 20:05:27.937299"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"loyd_ohara@langworthreilly.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "loyd_ohara@langworthreilly.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"u4FCJtapvojXpkFekaBvqQ\":{\"token\":\"$2a$12$RhD.Ei7Y47LLD8cS9SJAI.md3ZGuaJZ/iQ9YulrcN7Tf/m1rscgbq\",\"expiry\":1567973128,\"last_token\":null,\"updated_at\":\"2019-08-25T15:05:28.166-05:00\"}}"], ["updated_at", "2019-08-25 20:05:28.167752"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:05:28.172474"], ["last_sign_in_at", "2019-08-25 20:05:28.172474"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:05:28.172889"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 222ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ira@lynch.io"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "ira@lynch.io"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ira@lynch.io"], ["encrypted_password", "$2a$04$kbW6d9DnvRz2F61alaEYiu5NaeA0Lwf5Sn3klNb73pNJcYG.hwN66"], ["confirmed_at", "2019-08-25 20:05:28.181053"], ["email", "ira@lynch.io"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:28.182594"], ["updated_at", "2019-08-25 20:05:28.182594"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"ira@lynch.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ira@lynch.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-25 20:05:28.188036"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elba.schuster@ledner.net"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "elba.schuster@ledner.net"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elba.schuster@ledner.net"], ["encrypted_password", "$2a$04$NKLj8UU7OGB7l/B6XGCKxuAo.SMSus7eRwbajw/cHpzDsWEIHJajG"], ["confirmation_token", "k5yCzS3Hfsnc1usxzqJu"], ["confirmation_sent_at", "2019-08-25 20:05:28.195646"], ["email", "elba.schuster@ledner.net"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:28.195524"], ["updated_at", "2019-08-25 20:05:28.195524"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"elba.schuster@ledner.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elba.schuster@ledner.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leonarda@miller.name"], ["LIMIT", 1]]  (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "leonarda@miller.name"]] SQL (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "leonarda@miller.name"], ["encrypted_password", "$2a$04$tKrpF5KKRPbAlRLM288dn.goAPMd/jfywiYUyBI6UsgacyBiwyys6"], ["confirmed_at", "2019-08-25 20:05:28.206980"], ["locked_at", "2019-08-25 20:05:28.207020"], ["email", "leonarda@miller.name"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:28.210800"], ["updated_at", "2019-08-25 20:05:28.210800"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"leonarda@miller.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leonarda@miller.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stormy@dickinsonrogahn.co"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "stormy@dickinsonrogahn.co"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "stormy@dickinsonrogahn.co"], ["encrypted_password", "$2a$04$3yIJ8oQKR247nn/a87b71uwyzjAokyJiLFT48WX/IzwohZ060EgBe"], ["confirmed_at", "2019-08-25 20:05:28.221745"], ["email", "stormy@dickinsonrogahn.co"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:28.223464"], ["updated_at", "2019-08-25 20:05:28.223464"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"stormy@dickinsonrogahn.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stormy@dickinsonrogahn.co"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lonnie@klocko.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "lonnie@klocko.org"], ["encrypted_password", "$2a$04$5TTuwQY7geJgBj6.F.VH0.d15v/Z/8bHGJJBwP0W35s9pGRZvfdfG"], ["confirmed_at", "2019-08-25 20:05:32.313613"], ["email", "lonnie@klocko.org"], ["created_at", "2019-08-25 20:05:32.316172"], ["updated_at", "2019-08-25 20:05:32.316172"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lonnie@klocko.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lonnie@klocko.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"rTOpyiylSKPJ-iYiDxh7sQ\":{\"token\":\"$2a$10$IyYZOc4X3OS6FW7ymjLb7O3..dUhXS847cyk1XgRtinIKdyGPv80u\",\"expiry\":1567973132,\"updated_at\":\"2019-08-25 20:05:32 UTC\"}}"], ["updated_at", "2019-08-25 20:05:32.401294"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:05:32.404977"], ["last_sign_in_at", "2019-08-25 20:05:32.404977"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:05:32.405433"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 72ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mari.schuppe@bins.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "mari.schuppe@bins.name"], ["encrypted_password", "$2a$04$ouLDbnN0gqnsx0zXsvFr/OuEGO.RPELu4MC/NWoce8ZctqXH7IZR2"], ["confirmed_at", "2019-08-25 20:05:32.411956"], ["email", "mari.schuppe@bins.name"], ["created_at", "2019-08-25 20:05:32.412690"], ["updated_at", "2019-08-25 20:05:32.412690"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"mari.schuppe@bins.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mari.schuppe@bins.name"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lexie_heidenreich@vandervort.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lexie_heidenreich@vandervort.name"], ["encrypted_password", "$2a$04$pnDuV2cX5oLIPW.E8kU1Wu69aYwIn3FJ9qAEQ6t.cFzzIkMF8GLOq"], ["confirmation_token", "ZNH4m_6Yr4iKPJnp6y5d"], ["confirmation_sent_at", "2019-08-25 20:05:32.423141"], ["email", "lexie_heidenreich@vandervort.name"], ["created_at", "2019-08-25 20:05:32.423046"], ["updated_at", "2019-08-25 20:05:32.423046"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"lexie_heidenreich@vandervort.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lexie_heidenreich@vandervort.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "delbert.baumbach@kelerbartell.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "delbert.baumbach@kelerbartell.co"], ["encrypted_password", "$2a$04$mExeyc7mf7UhKIrYv9h2YO3PTLW3ww88oRriprz5y7cY9zrK3ktHG"], ["confirmed_at", "2019-08-25 20:05:32.429601"], ["locked_at", "2019-08-25 20:05:32.429616"], ["email", "delbert.baumbach@kelerbartell.co"], ["created_at", "2019-08-25 20:05:32.430585"], ["updated_at", "2019-08-25 20:05:32.430585"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"delbert.baumbach@kelerbartell.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "delbert.baumbach@kelerbartell.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "max@hagenesullrich.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "max@hagenesullrich.org"], ["encrypted_password", "$2a$04$MGqCxrde8ZxyQePEymggDeFUc25CWcs43CKmZTnFxO.zwHb1KuWtm"], ["confirmed_at", "2019-08-25 20:05:32.438556"], ["email", "max@hagenesullrich.org"], ["created_at", "2019-08-25 20:05:32.439853"], ["updated_at", "2019-08-25 20:05:32.439853"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"max@hagenesullrich.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "max@hagenesullrich.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "peggie@yoststoltenberg.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "peggie@yoststoltenberg.co"], ["encrypted_password", "$2a$04$fv4V168UouFEBnpVoncKHOdwdXj36SMaEnMbvWBF9BWLfS9khc4Fa"], ["confirmed_at", "2019-08-25 20:05:36.260109"], ["email", "peggie@yoststoltenberg.co"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:36.262372"], ["updated_at", "2019-08-25 20:05:36.262372"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"peggie@yoststoltenberg.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "peggie@yoststoltenberg.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Pwn0mIgR1SE4OTIJhgt-CQ\":{\"token\":\"$2a$12$pGQdHYCI0yhkjfNmxFzjB.iA/.b7sXitPV/6kEwlB7HA3WSmqVgRC\",\"expiry\":1567973136,\"last_token\":null,\"updated_at\":\"2019-08-25T15:05:36.289-05:00\"}}"], ["updated_at", "2019-08-25 20:05:36.480767"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:05:36.483796"], ["last_sign_in_at", "2019-08-25 20:05:36.483796"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:05:36.484057"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 206ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leonard@effertz.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "leonard@effertz.net"], ["encrypted_password", "$2a$04$4aZd50F2IHLiqZshyQJYi.BiUbNhpw0kfn/TF3yPv3wFFz8V6.N22"], ["confirmed_at", "2019-08-25 20:05:36.490600"], ["email", "leonard@effertz.net"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:36.491384"], ["updated_at", "2019-08-25 20:05:36.491384"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"leonard@effertz.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leonard@effertz.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-25 20:05:36.495467"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jere_bartoletti@rosenbaum.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jere_bartoletti@rosenbaum.co"], ["encrypted_password", "$2a$04$2GDjlvO6DqZj5yVue9I.xeNHzC1QDVNU3MURfGGUEJj6L/Yc3vHeS"], ["confirmation_token", "fxKp3SkNzH22x7g2EM6w"], ["confirmation_sent_at", "2019-08-25 20:05:36.500069"], ["email", "jere_bartoletti@rosenbaum.co"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:36.499989"], ["updated_at", "2019-08-25 20:05:36.499989"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jere_bartoletti@rosenbaum.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jere_bartoletti@rosenbaum.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jordan@conn.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jordan@conn.net"], ["encrypted_password", "$2a$04$2tl/GPbhcl5EB5pi1VroouWoPMyRcXsYKvumlvHP6fqz9dqoGvlIi"], ["confirmed_at", "2019-08-25 20:05:36.506380"], ["locked_at", "2019-08-25 20:05:36.506389"], ["email", "jordan@conn.net"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:36.507078"], ["updated_at", "2019-08-25 20:05:36.507078"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"jordan@conn.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jordan@conn.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kina_stoltenberg@bode.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kina_stoltenberg@bode.name"], ["encrypted_password", "$2a$04$Eis5MSLZNttPvpm8q612AuziZl1FreI.Ji83TWcXD351n0OcjhFeq"], ["confirmed_at", "2019-08-25 20:05:36.514899"], ["email", "kina_stoltenberg@bode.name"], ["tokens", "{}"], ["created_at", "2019-08-25 20:05:36.516482"], ["updated_at", "2019-08-25 20:05:36.516482"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"kina_stoltenberg@bode.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kina_stoltenberg@bode.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cortney_willms@kerlukefriesen.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "cortney_willms@kerlukefriesen.org"], ["encrypted_password", "$2a$04$cxLw006g1WRfBdn5aGfusu9awBsOjPANtlmzHo8CJGy19zsp.wOJq"], ["confirmed_at", "2019-08-25 20:05:40.617984"], ["email", "cortney_willms@kerlukefriesen.org"], ["created_at", "2019-08-25 20:05:40.620135"], ["updated_at", "2019-08-25 20:05:40.620135"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"cortney_willms@kerlukefriesen.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cortney_willms@kerlukefriesen.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"VeQxDQ0LoXio8y2WI6oK7A\":{\"token\":\"$2a$10$GbPYhLQdu3Tqd.xnqFa4hupUXM12a6dmRZk2FYzkBWz1sAysaY02q\",\"expiry\":1567973140,\"updated_at\":\"2019-08-25 20:05:40 UTC\"}}"], ["updated_at", "2019-08-25 20:05:40.694675"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:05:40.697705"], ["last_sign_in_at", "2019-08-25 20:05:40.697705"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:05:40.698090"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 64ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "teddy.raynor@kuhn.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "teddy.raynor@kuhn.org"], ["encrypted_password", "$2a$04$.1FW.DxxpB1Q.eVlPfhwI.EtmYvmknRc3s12i18QCorn5XTCyehy."], ["confirmed_at", "2019-08-25 20:05:40.705989"], ["email", "teddy.raynor@kuhn.org"], ["created_at", "2019-08-25 20:05:40.706814"], ["updated_at", "2019-08-25 20:05:40.706814"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"teddy.raynor@kuhn.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "teddy.raynor@kuhn.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "daphne@oconnertillman.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "daphne@oconnertillman.co"], ["encrypted_password", "$2a$04$7EBxRSHhLo9KJf/wE8XPPOp1.wlUyZcRFQJDYFhiub19bsh50qrCe"], ["confirmation_token", "zdX64bDDLypfsB7HJsyQ"], ["confirmation_sent_at", "2019-08-25 20:05:40.716764"], ["email", "daphne@oconnertillman.co"], ["created_at", "2019-08-25 20:05:40.716668"], ["updated_at", "2019-08-25 20:05:40.716668"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"daphne@oconnertillman.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "daphne@oconnertillman.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fritz.oberbrunner@kohler.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "fritz.oberbrunner@kohler.biz"], ["encrypted_password", "$2a$04$I8SOBqarAWjqi90jrByObOVo59W/FSheyYAcWyh/2hLv0wUeKz0Bm"], ["confirmed_at", "2019-08-25 20:05:40.723249"], ["locked_at", "2019-08-25 20:05:40.723259"], ["email", "fritz.oberbrunner@kohler.biz"], ["created_at", "2019-08-25 20:05:40.724061"], ["updated_at", "2019-08-25 20:05:40.724061"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"fritz.oberbrunner@kohler.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "fritz.oberbrunner@kohler.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "odell@douglas.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "odell@douglas.info"], ["encrypted_password", "$2a$04$tiqTljV1kBd8S4sWKRfpf.dFdGYIfDW50eaX3S3EiZeSF.C5P/54W"], ["confirmed_at", "2019-08-25 20:05:40.731882"], ["email", "odell@douglas.info"], ["created_at", "2019-08-25 20:05:40.733089"], ["updated_at", "2019-08-25 20:05:40.733089"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"odell@douglas.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "odell@douglas.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "toby@roberts.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "toby@roberts.info"], ["encrypted_password", "$2a$04$ZoGNHuUfjaQq0XFY.CkiL.TKLrqgy6vAGmYpgVTFcI97WD9VoHgrK"], ["confirmed_at", "2019-08-25 20:05:44.587103"], ["email", "toby@roberts.info"], ["created_at", "2019-08-25 20:05:44.588362"], ["updated_at", "2019-08-25 20:05:44.588362"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"toby@roberts.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "toby@roberts.info"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"P9PIZykozJu65ZKqmKIT4w\":{\"token\":\"$2a$10$fLwH8DkL9njfdCkngbQZzuWmSF2wlDwixkUJ5oIJruEn.EkX4Ch.q\",\"expiry\":1567973144,\"updated_at\":\"2019-08-25 20:05:44 UTC\"}}"], ["updated_at", "2019-08-25 20:05:44.659453"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:05:44.663118"], ["last_sign_in_at", "2019-08-25 20:05:44.663118"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:05:44.663357"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 62ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 12084) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "criy.keler@cartwrightwilderman.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "criy.keler@cartwrightwilderman.co"], ["encrypted_password", "$2a$04$NhmLNm6MCm5wD0.lwrbiOucEyn43KZ9WBBQefJYSgPlS8fWZTWdJa"], ["confirmed_at", "2019-08-25 20:05:44.670874"], ["email", "criy.keler@cartwrightwilderman.co"], ["created_at", "2019-08-25 20:05:44.672110"], ["updated_at", "2019-08-25 20:05:44.672110"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"criy.keler@cartwrightwilderman.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "criy.keler@cartwrightwilderman.co"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2103) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joleen_gerhold@wiegand.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "joleen_gerhold@wiegand.co"], ["encrypted_password", "$2a$04$0OJET1UBTL5RCFlQ0jPWxucTT/8ymVkE.YF/zuyqx97KHQbgSV7cy"], ["confirmation_token", "5zLP3rxVd5NPyiA-ziqQ"], ["confirmation_sent_at", "2019-08-25 20:05:44.682503"], ["email", "joleen_gerhold@wiegand.co"], ["created_at", "2019-08-25 20:05:44.682424"], ["updated_at", "2019-08-25 20:05:44.682424"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"joleen_gerhold@wiegand.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "joleen_gerhold@wiegand.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1292) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "augustus@howe.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "augustus@howe.net"], ["encrypted_password", "$2a$04$rKsJvJPJksBL5iVhp.TJQuA2f6Z7Yv8D6JGPRozQivjw1kX5upnRG"], ["confirmed_at", "2019-08-25 20:05:44.688713"], ["locked_at", "2019-08-25 20:05:44.688723"], ["email", "augustus@howe.net"], ["created_at", "2019-08-25 20:05:44.689503"], ["updated_at", "2019-08-25 20:05:44.689503"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"augustus@howe.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "augustus@howe.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1310) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sebastian@walsh.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sebastian@walsh.com"], ["encrypted_password", "$2a$04$CLR.cAjJYe.Gi0NfRNUeO.xoa/cA1urCqTi2PwZ9agYmjAIMAJozy"], ["confirmed_at", "2019-08-25 20:05:44.696651"], ["email", "sebastian@walsh.com"], ["created_at", "2019-08-25 20:05:44.697535"], ["updated_at", "2019-08-25 20:05:44.697535"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:05:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n login(\n email: \"sebastian@walsh.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n}\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sebastian@walsh.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1289) TRANSACTION (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carmine@abbott.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "carmine@abbott.org"], ["encrypted_password", "$2a$04$VHZR2aQYRICme7Y44F3useM9l9sbshMFFxDrr644D1D7KE1Kt/xHG"], ["confirmed_at", "2019-08-25 20:22:57.233282"], ["email", "carmine@abbott.org"], ["created_at", "2019-08-25 20:22:57.235162"], ["updated_at", "2019-08-25 20:22:57.235162"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:22:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"carmine@abbott.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "carmine@abbott.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mfDj0joHulu5bwpX50jhrQ\":{\"token\":\"$2a$10$QO31JN6T94CqU0S3NQL5Qubyj57RF8ExKt6JKl5orgelnu5mSWNX.\",\"expiry\":1567974177,\"updated_at\":\"2019-08-25 20:22:57 UTC\"}}"], ["updated_at", "2019-08-25 20:22:57.316669"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:22:57.319351"], ["last_sign_in_at", "2019-08-25 20:22:57.319351"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:22:57.319634"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 63ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "edmund_mcdermott@hagenes.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "edmund_mcdermott@hagenes.info"], ["encrypted_password", "$2a$04$.hx.i2EKp8r98E4E9mVMUOgn7qDGUdRlWLEz.BYFdp8QPveRMLFom"], ["confirmed_at", "2019-08-25 20:22:57.328882"], ["email", "edmund_mcdermott@hagenes.info"], ["created_at", "2019-08-25 20:22:57.329701"], ["updated_at", "2019-08-25 20:22:57.329701"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:22:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"edmund_mcdermott@hagenes.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "edmund_mcdermott@hagenes.info"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jei_mcclure@nienow.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jei_mcclure@nienow.com"], ["encrypted_password", "$2a$04$AzCDxYcf5TsG8yPs6ne6deoIsScHgfqAzbEl5txSBooSu/59zF4YC"], ["confirmation_token", "PQz2UDumodT71xer2V3s"], ["confirmation_sent_at", "2019-08-25 20:22:57.339367"], ["email", "jei_mcclure@nienow.com"], ["created_at", "2019-08-25 20:22:57.339288"], ["updated_at", "2019-08-25 20:22:57.339288"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:22:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"jei_mcclure@nienow.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jei_mcclure@nienow.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tristan_mclaughlin@wintheiser.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tristan_mclaughlin@wintheiser.com"], ["encrypted_password", "$2a$04$81DGKGdSGLobgpwNJDaYNuLWVcRng9tlzR9nw1eanpon4IvYFl6Xy"], ["confirmed_at", "2019-08-25 20:22:57.345099"], ["locked_at", "2019-08-25 20:22:57.345110"], ["email", "tristan_mclaughlin@wintheiser.com"], ["created_at", "2019-08-25 20:22:57.345792"], ["updated_at", "2019-08-25 20:22:57.345792"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:22:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"tristan_mclaughlin@wintheiser.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tristan_mclaughlin@wintheiser.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "terisa@zemlak.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "terisa@zemlak.name"], ["encrypted_password", "$2a$04$TWX7kAgO5xnaE/dGYP4dxuqUwUX9xxc4SFyZSnIWcrPHaDwqk1PZi"], ["confirmed_at", "2019-08-25 20:22:57.352306"], ["email", "terisa@zemlak.name"], ["created_at", "2019-08-25 20:22:57.353129"], ["updated_at", "2019-08-25 20:22:57.353129"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:22:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"terisa@zemlak.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "terisa@zemlak.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'burl_kris@rolfson.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "burl_kris@rolfson.biz"], ["encrypted_password", "$2a$04$H6.UV2iHC0YSL/yih7wBV.sNyddS8y4Ye0ZCoVNlj33fI7R/9cAvK"], ["confirmed_at", "2019-08-25 20:23:13.751186"], ["uid", "burl_kris@rolfson.biz"], ["created_at", "2019-08-25 20:23:13.757502"], ["updated_at", "2019-08-25 20:23:13.757502"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:23:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"burl_kris@rolfson.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "burl_kris@rolfson.biz"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BGNXljrdyr7VDXQdJQuwIA\":{\"token\":\"$2a$10$vvolYj6YWOhrBm.HwbjTuu/EqFoQCKc3xnAOcoW7rOJOCio9KSV5C\",\"expiry\":1567974193,\"updated_at\":\"2019-08-25 20:23:13 UTC\"}}"], ["updated_at", "2019-08-25 20:23:13.840752"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-25 20:23:13.848442"], ["current_sign_in_at", "2019-08-25 20:23:13.848442"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:23:13.849139"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 70ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'gaye_kovacek@thiel.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gaye_kovacek@thiel.info"], ["encrypted_password", "$2a$04$0jXkklaoWGLvTTAIx4FAOOpEJYgChoJrdpRF43WVMmpnAwkD2qViy"], ["confirmed_at", "2019-08-25 20:23:13.857660"], ["uid", "gaye_kovacek@thiel.info"], ["created_at", "2019-08-25 20:23:13.858701"], ["updated_at", "2019-08-25 20:23:13.858701"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:23:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"gaye_kovacek@thiel.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "gaye_kovacek@thiel.info"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'janine.kuhlman@hoeger.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "janine.kuhlman@hoeger.biz"], ["encrypted_password", "$2a$04$7sDHkmaWSH7Cj7WB3GIS2uyITvq/yseRuKnXcSYXD0oo5EK3I6Z5."], ["uid", "janine.kuhlman@hoeger.biz"], ["created_at", "2019-08-25 20:23:13.872036"], ["updated_at", "2019-08-25 20:23:13.872036"], ["confirmation_token", "6TbEM_4xet753uNqAgQS"], ["confirmation_sent_at", "2019-08-25 20:23:13.872212"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:23:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"janine.kuhlman@hoeger.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "janine.kuhlman@hoeger.biz"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'tomasa_stroman@johnson.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "tomasa_stroman@johnson.info"], ["encrypted_password", "$2a$04$yWSMngSZojCfNDUIeonB7O9Q123sMbYzOWy4RcHZ4Vp0CfwHIrJni"], ["confirmed_at", "2019-08-25 20:23:13.881780"], ["locked_at", "2019-08-25 20:23:13.881849"], ["uid", "tomasa_stroman@johnson.info"], ["created_at", "2019-08-25 20:23:13.882815"], ["updated_at", "2019-08-25 20:23:13.882815"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:23:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"tomasa_stroman@johnson.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "tomasa_stroman@johnson.info"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'graham.abbott@kub.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "graham.abbott@kub.org"], ["encrypted_password", "$2a$04$KJzXAJkDIQlzS7jbYuhLMOiq5KmLGTZ0g1tZlyhSvsIdXt..uotnq"], ["confirmed_at", "2019-08-25 20:23:13.893614"], ["auth_available", "f"], ["uid", "graham.abbott@kub.org"], ["created_at", "2019-08-25 20:23:13.894675"], ["updated_at", "2019-08-25 20:23:13.894675"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:23:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"graham.abbott@kub.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "graham.abbott@kub.org"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "kenyetta.collier@okeefegottlieb.biz"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kenyetta.collier@okeefegottlieb.biz"], ["encrypted_password", "$2a$04$o3n0.wqcAfg1Ouby9sNwx.n9IL9gBDBtq619g4NcsRAc6DeakOnbK"], ["confirmed_at", "2019-08-25 20:23:17.241479"], ["email", "kenyetta.collier@okeefegottlieb.biz"], ["tokens", "{}"], ["created_at", "2019-08-25 20:23:17.242679"], ["updated_at", "2019-08-25 20:23:17.242679"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:23:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"kenyetta.collier@okeefegottlieb.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kenyetta.collier@okeefegottlieb.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9BN3mMhmhvJZLvvNR4Ni7A\":{\"token\":\"$2a$12$3HkRcbeE3ZpBzsCaguDAK.UgrXhpkiaiZ2uxQ76xLlbXbeU/sqpcW\",\"expiry\":1567974197,\"last_token\":null,\"updated_at\":\"2019-08-25T15:23:17.439-05:00\"}}"], ["updated_at", "2019-08-25 20:23:17.440537"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:23:17.445260"], ["last_sign_in_at", "2019-08-25 20:23:17.445260"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:23:17.445618"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (1.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "ardelia.oconnell@gleasonschinner.org"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ardelia.oconnell@gleasonschinner.org"], ["encrypted_password", "$2a$04$1lNwdnJdyl/2dma0fvtt/eLC4v0UL0vNjQvsQab3Tnbm6o4CngDMS"], ["confirmed_at", "2019-08-25 20:23:17.453773"], ["email", "ardelia.oconnell@gleasonschinner.org"], ["tokens", "{}"], ["created_at", "2019-08-25 20:23:17.454538"], ["updated_at", "2019-08-25 20:23:17.454538"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:23:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"ardelia.oconnell@gleasonschinner.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ardelia.oconnell@gleasonschinner.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-25 20:23:17.458730"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "lee@thompsonkirlin.net"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "e444ed75e698ab3dc1cd5371663e3c9bc078474f4d0b2707ba4da5426d7c646f"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lee@thompsonkirlin.net"], ["encrypted_password", "$2a$04$RiujQU9ChdODhEaKGRzjM.xXdjjMuHiKZCopfosFBlP7oqN30HjMy"], ["confirmation_token", "fv_z1f_oJ2-sokUTNpfk"], ["confirmation_sent_at", "2019-08-25 20:23:17.540729"], ["email", "lee@thompsonkirlin.net"], ["tokens", "{}"], ["created_at", "2019-08-25 20:23:17.462900"], ["updated_at", "2019-08-25 20:23:17.462900"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:23:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"lee@thompsonkirlin.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lee@thompsonkirlin.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "azucena@lubowitz.name"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "azucena@lubowitz.name"], ["encrypted_password", "$2a$04$zxW1efukCfsm3jWrYBxt/OYurqq4.tgIy9ZJdxb/FbwZA/argX46q"], ["confirmed_at", "2019-08-25 20:23:17.548014"], ["locked_at", "2019-08-25 20:23:17.548029"], ["email", "azucena@lubowitz.name"], ["tokens", "{}"], ["created_at", "2019-08-25 20:23:17.548914"], ["updated_at", "2019-08-25 20:23:17.548914"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:23:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"azucena@lubowitz.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "azucena@lubowitz.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "dan@bartoletti.name"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dan@bartoletti.name"], ["encrypted_password", "$2a$04$85Oax9pzenR5mwNFSfBx7.ZSm6qIa6wHdfJY0DE1Ni6lCCd6ZvnU2"], ["confirmed_at", "2019-08-25 20:23:17.555987"], ["email", "dan@bartoletti.name"], ["tokens", "{}"], ["created_at", "2019-08-25 20:23:17.556833"], ["updated_at", "2019-08-25 20:23:17.556833"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:23:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"dan@bartoletti.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dan@bartoletti.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'kenton.jerde@sporerkub.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kenton.jerde@sporerkub.info"], ["encrypted_password", "$2a$04$HeZ2VF.NXDo31bO3HCc4hOzolo82EQbgcn/Nx3KdjOzelT/HX34s."], ["confirmed_at", "2019-08-25 20:27:24.499485"], ["uid", "kenton.jerde@sporerkub.info"], ["created_at", "2019-08-25 20:27:24.505068"], ["updated_at", "2019-08-25 20:27:24.505068"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"kenton.jerde@sporerkub.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "kenton.jerde@sporerkub.info"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gvn_XyRHW0kh1LlHxmI-9g\":{\"token\":\"$2a$10$6UDTaICEngdj6uykphsM3OF2ca7VGBwv1FibWDqo.KGR3hjqiXA.y\",\"expiry\":1567974444,\"updated_at\":\"2019-08-25 20:27:24 UTC\"}}"], ["updated_at", "2019-08-25 20:27:24.580038"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-25 20:27:24.583992"], ["current_sign_in_at", "2019-08-25 20:27:24.583992"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:27:24.584358"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'raymon.gislason@nienow.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "raymon.gislason@nienow.net"], ["encrypted_password", "$2a$04$QkJky.X0vCoaBAkUz4rOr.PXxbjlDo5gYso6sx0FP/tbrhmG7iuna"], ["confirmed_at", "2019-08-25 20:27:24.590776"], ["uid", "raymon.gislason@nienow.net"], ["created_at", "2019-08-25 20:27:24.591613"], ["updated_at", "2019-08-25 20:27:24.591613"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"raymon.gislason@nienow.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "raymon.gislason@nienow.net"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jenell.bernhard@dickenschamplin.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "jenell.bernhard@dickenschamplin.co"], ["encrypted_password", "$2a$04$8Nl4RzNUIgZqGWtWy7PJ1OrBilWF4HNL9LMOTrXM574gQhKzllrCu"], ["uid", "jenell.bernhard@dickenschamplin.co"], ["created_at", "2019-08-25 20:27:24.602344"], ["updated_at", "2019-08-25 20:27:24.602344"], ["confirmation_token", "_TA8_pnohB-Wv8Mhzo47"], ["confirmation_sent_at", "2019-08-25 20:27:24.602488"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"jenell.bernhard@dickenschamplin.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "jenell.bernhard@dickenschamplin.co"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'leslie.shields@thompson.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "leslie.shields@thompson.biz"], ["encrypted_password", "$2a$04$/YStSGpNL3A/.c7cMoT/W.HIb.isa0Gl7XjFXDwrsWeJoDfcSwzLm"], ["confirmed_at", "2019-08-25 20:27:24.610406"], ["locked_at", "2019-08-25 20:27:24.610461"], ["uid", "leslie.shields@thompson.biz"], ["created_at", "2019-08-25 20:27:24.611472"], ["updated_at", "2019-08-25 20:27:24.611472"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"leslie.shields@thompson.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "leslie.shields@thompson.biz"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'sophia@mills.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "sophia@mills.co"], ["encrypted_password", "$2a$04$DZmoXTPFK5nl4L6QbwuGy.nIOEVzwunDTO8l3662VSqkmS6m3nGcm"], ["confirmed_at", "2019-08-25 20:27:24.620703"], ["auth_available", "f"], ["uid", "sophia@mills.co"], ["created_at", "2019-08-25 20:27:24.621666"], ["updated_at", "2019-08-25 20:27:24.621666"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"sophia@mills.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "sophia@mills.co"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "gail.krajcik@hoeger.net"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gail.krajcik@hoeger.net"], ["encrypted_password", "$2a$04$lhOeZlGQexvGR0I99uYbE..U8XLBm/Y6mZKixJgQUpadyUXtqvpby"], ["confirmed_at", "2019-08-25 20:27:29.523868"], ["email", "gail.krajcik@hoeger.net"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:29.525105"], ["updated_at", "2019-08-25 20:27:29.525105"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"gail.krajcik@hoeger.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gail.krajcik@hoeger.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"wb7z232NV8-Uv28VqjMb4A\":{\"token\":\"$2a$12$oys1Yuyapf3l1mrV/ifC0.KHSG2oojULUsSkXnIG9vwXFnYbalbZO\",\"expiry\":1567974449,\"last_token\":null,\"updated_at\":\"2019-08-25T15:27:29.723-05:00\"}}"], ["updated_at", "2019-08-25 20:27:29.723831"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:27:29.728380"], ["last_sign_in_at", "2019-08-25 20:27:29.728380"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:27:29.728747"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 192ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "ayanna_wiza@wehner.biz"]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ayanna_wiza@wehner.biz"], ["encrypted_password", "$2a$04$gkVHaE81f2DLm41Cf855sOvaKahoIJwEUqYdbVu4nB1PnAy/uMEJ6"], ["confirmed_at", "2019-08-25 20:27:29.735691"], ["email", "ayanna_wiza@wehner.biz"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:29.736311"], ["updated_at", "2019-08-25 20:27:29.736311"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"ayanna_wiza@wehner.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ayanna_wiza@wehner.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-25 20:27:29.740392"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "alejandro.wuckert@wilderman.org"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "5a19c6ef795af6380d82be0409d9304104ebc4748e70914076ee42291d34afd8"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alejandro.wuckert@wilderman.org"], ["encrypted_password", "$2a$04$7qh4pjgnmDMM2HkdOygaouxR9lkSqLDTuHxV9DHDLeiHY5PkdnMBq"], ["confirmation_token", "69t_8omRoU7yZx3C_374"], ["confirmation_sent_at", "2019-08-25 20:27:29.822479"], ["email", "alejandro.wuckert@wilderman.org"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:29.744485"], ["updated_at", "2019-08-25 20:27:29.744485"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"alejandro.wuckert@wilderman.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alejandro.wuckert@wilderman.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "karl_frami@kuhn.net"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "karl_frami@kuhn.net"], ["encrypted_password", "$2a$04$acY6uGfqFWGZ.u9nVYk8Ne28nF2p7znEneQeuO8kcXPQ7CCRHwVve"], ["confirmed_at", "2019-08-25 20:27:29.829508"], ["locked_at", "2019-08-25 20:27:29.829521"], ["email", "karl_frami@kuhn.net"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:29.830311"], ["updated_at", "2019-08-25 20:27:29.830311"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"karl_frami@kuhn.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "karl_frami@kuhn.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "chandra_wiegand@beier.org"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "chandra_wiegand@beier.org"], ["encrypted_password", "$2a$04$yWoEk73xDaGjyDlHT7inH.kA7s0ds48N.Fvg2I.pouwhet30D9l6y"], ["confirmed_at", "2019-08-25 20:27:29.837193"], ["email", "chandra_wiegand@beier.org"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:29.838047"], ["updated_at", "2019-08-25 20:27:29.838047"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"chandra_wiegand@beier.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "chandra_wiegand@beier.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "asley.boyer@medhurst.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "asley.boyer@medhurst.biz"], ["encrypted_password", "$2a$04$hZ91zm1AhvpuwZzoiJgic.2GCOUFyYqD7Doz2fhsvW4IQR3Qyfgge"], ["confirmed_at", "2019-08-25 20:27:34.839321"], ["email", "asley.boyer@medhurst.biz"], ["created_at", "2019-08-25 20:27:34.843998"], ["updated_at", "2019-08-25 20:27:34.843998"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"asley.boyer@medhurst.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "asley.boyer@medhurst.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"shS4wICWxfR-U1G7Fjr6BQ\":{\"token\":\"$2a$10$gQoXqHqqM5iTt9YObxyXY.UGQe0L/4qALTPH5aWiK8PmSy4rk5XWG\",\"expiry\":1567974454,\"updated_at\":\"2019-08-25 20:27:34 UTC\"}}"], ["updated_at", "2019-08-25 20:27:34.915211"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:27:34.920034"], ["last_sign_in_at", "2019-08-25 20:27:34.920034"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:27:34.920496"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 63ms (Views: 0.2ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kari.wunsch@swiftratke.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "kari.wunsch@swiftratke.io"], ["encrypted_password", "$2a$04$o3Yb16AEETxnwyIfUt5LWetqBdnAZVwVmDL8BIA3DMznpOmGbs9ka"], ["confirmed_at", "2019-08-25 20:27:34.927166"], ["email", "kari.wunsch@swiftratke.io"], ["created_at", "2019-08-25 20:27:34.927898"], ["updated_at", "2019-08-25 20:27:34.927898"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"kari.wunsch@swiftratke.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kari.wunsch@swiftratke.io"], ["LIMIT", 1]] SQL (0.0ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "juliana_deckow@padberg.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "juliana_deckow@padberg.name"], ["encrypted_password", "$2a$04$jqm7MIxkK3I2kBo6yHCrPOiIS3bxalPMNFJ/nTeo.FlUBUVCJr9Ai"], ["confirmation_token", "auAmjQs8ribiyH4dQ_AD"], ["confirmation_sent_at", "2019-08-25 20:27:34.936931"], ["email", "juliana_deckow@padberg.name"], ["created_at", "2019-08-25 20:27:34.936855"], ["updated_at", "2019-08-25 20:27:34.936855"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"juliana_deckow@padberg.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "juliana_deckow@padberg.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "abram.roob@ruel.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "abram.roob@ruel.info"], ["encrypted_password", "$2a$04$H3g.EevZpkGSHWqI2KsZUOcwYD5to72G1weksnv.edPcARoWC5vn2"], ["confirmed_at", "2019-08-25 20:27:34.942517"], ["locked_at", "2019-08-25 20:27:34.942527"], ["email", "abram.roob@ruel.info"], ["created_at", "2019-08-25 20:27:34.943244"], ["updated_at", "2019-08-25 20:27:34.943244"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"abram.roob@ruel.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "abram.roob@ruel.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "roy_cartwright@marquardt.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "roy_cartwright@marquardt.biz"], ["encrypted_password", "$2a$04$vzySndRZ4k3GMgDo8mj8zeyQEnbwXUHp17/O2DVYa/TaJfEdn3eMG"], ["confirmed_at", "2019-08-25 20:27:34.949692"], ["email", "roy_cartwright@marquardt.biz"], ["created_at", "2019-08-25 20:27:34.950554"], ["updated_at", "2019-08-25 20:27:34.950554"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"roy_cartwright@marquardt.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "roy_cartwright@marquardt.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "pamula.kshlerin@huelaltenwerth.io"], ["LIMIT", 1]]  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "pamula.kshlerin@huelaltenwerth.io"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "pamula.kshlerin@huelaltenwerth.io"], ["encrypted_password", "$2a$04$utwpoZAUREzkJfxNK4xONuKZOXkZosOMguapuyo7Wl4/umYloDxle"], ["confirmed_at", "2019-08-25 20:27:39.962717"], ["email", "pamula.kshlerin@huelaltenwerth.io"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:39.964927"], ["updated_at", "2019-08-25 20:27:39.964927"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"pamula.kshlerin@huelaltenwerth.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "pamula.kshlerin@huelaltenwerth.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"xWi_SWdvLx1oUxOYmT-u_w\":{\"token\":\"$2a$12$F31pBAp79j2EJaDr4BWMyOX/Fa9hZ3SZ2Z.72OBeOoocCYIiwAury\",\"expiry\":1567974460,\"last_token\":null,\"updated_at\":\"2019-08-25T15:27:40.166-05:00\"}}"], ["updated_at", "2019-08-25 20:27:40.167577"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:27:40.171032"], ["last_sign_in_at", "2019-08-25 20:27:40.171032"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:27:40.171339"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 192ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dollie@gusikowski.net"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "dollie@gusikowski.net"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dollie@gusikowski.net"], ["encrypted_password", "$2a$04$8VUyU5D/e.WsO/8E7u4mDelU1zWIeQ5iyXX25swNQsZcs.zay1KCG"], ["confirmed_at", "2019-08-25 20:27:40.179457"], ["email", "dollie@gusikowski.net"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:40.180818"], ["updated_at", "2019-08-25 20:27:40.180818"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"dollie@gusikowski.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dollie@gusikowski.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-25 20:27:40.186165"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "silas_crona@williamson.io"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "silas_crona@williamson.io"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "silas_crona@williamson.io"], ["encrypted_password", "$2a$04$tXd7jhcyhzqqRW9NsRU2Y.HCqYhmCwUxVsvvDYFIYOzO.ZLwHPdhu"], ["confirmation_token", "ahCJQwkNNLKe7kusCh_k"], ["confirmation_sent_at", "2019-08-25 20:27:40.191451"], ["email", "silas_crona@williamson.io"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:40.191352"], ["updated_at", "2019-08-25 20:27:40.191352"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"silas_crona@williamson.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "silas_crona@williamson.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "carola_homenick@abbott.com"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "carola_homenick@abbott.com"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "carola_homenick@abbott.com"], ["encrypted_password", "$2a$04$J0TDLVCLjwTs0UyBGIJf0uo4NGvr0zxXgh6iPt1YJerkcvcH5aiR."], ["confirmed_at", "2019-08-25 20:27:40.200023"], ["locked_at", "2019-08-25 20:27:40.200039"], ["email", "carola_homenick@abbott.com"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:40.201352"], ["updated_at", "2019-08-25 20:27:40.201352"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"carola_homenick@abbott.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "carola_homenick@abbott.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "josh_cain@walshschuppe.io"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "josh_cain@walshschuppe.io"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "josh_cain@walshschuppe.io"], ["encrypted_password", "$2a$04$Q7dD6YDAoRBPvUkb2XgRsOzEwV3e0IbuKCfBQrJEQkZjDtXdMVFWK"], ["confirmed_at", "2019-08-25 20:27:40.209033"], ["email", "josh_cain@walshschuppe.io"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:40.210487"], ["updated_at", "2019-08-25 20:27:40.210487"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"josh_cain@walshschuppe.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "josh_cain@walshschuppe.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mabel@ankunding.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "mabel@ankunding.name"], ["encrypted_password", "$2a$04$H0DIbQNFDBuxUg5RcTvWgOC2E4.J2UpRZtQkwlDGmDmkA4q5bSSoq"], ["confirmed_at", "2019-08-25 20:27:45.269376"], ["email", "mabel@ankunding.name"], ["created_at", "2019-08-25 20:27:45.271400"], ["updated_at", "2019-08-25 20:27:45.271400"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"mabel@ankunding.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mabel@ankunding.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LjGDW21MK7g8Ov1Io1nzhg\":{\"token\":\"$2a$10$w5VuB4arZFFVyGJ68yovMOBiSYK8TtE4TbmM31zejmUwZsu9vdjWy\",\"expiry\":1567974465,\"updated_at\":\"2019-08-25 20:27:45 UTC\"}}"], ["updated_at", "2019-08-25 20:27:45.343574"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:27:45.347526"], ["last_sign_in_at", "2019-08-25 20:27:45.347526"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:27:45.348124"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 63ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "keira@schinnershields.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "keira@schinnershields.net"], ["encrypted_password", "$2a$04$AROxtnhQadvmhlsUFNb53OL0KkT9Eo6UmkxoKCLoiLaWQgKumFS/i"], ["confirmed_at", "2019-08-25 20:27:45.355292"], ["email", "keira@schinnershields.net"], ["created_at", "2019-08-25 20:27:45.356045"], ["updated_at", "2019-08-25 20:27:45.356045"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"keira@schinnershields.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "keira@schinnershields.net"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nathanael@lakin.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nathanael@lakin.io"], ["encrypted_password", "$2a$04$yTgfZX4wkXNl5ZCJhyKyLeZGbXwGqNXys8O/mZTIfFrbC.tiOznle"], ["confirmation_token", "AfNG1KRvBYxC2RBeTztd"], ["confirmation_sent_at", "2019-08-25 20:27:45.365729"], ["email", "nathanael@lakin.io"], ["created_at", "2019-08-25 20:27:45.365639"], ["updated_at", "2019-08-25 20:27:45.365639"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"nathanael@lakin.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nathanael@lakin.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "damion_ritchie@kuhn.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "damion_ritchie@kuhn.com"], ["encrypted_password", "$2a$04$2vGKttgQx4wyJZSihUzLJum0fsXGdq6M3Hr0zgWjvdz5enbjnWlt2"], ["confirmed_at", "2019-08-25 20:27:45.371718"], ["locked_at", "2019-08-25 20:27:45.371728"], ["email", "damion_ritchie@kuhn.com"], ["created_at", "2019-08-25 20:27:45.372526"], ["updated_at", "2019-08-25 20:27:45.372526"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"damion_ritchie@kuhn.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "damion_ritchie@kuhn.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kayce_lemke@dubuque.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kayce_lemke@dubuque.net"], ["encrypted_password", "$2a$04$sgH/BxrBeKWlb63Pew6s5exraz0eJu2cZ8J4YiDCVSDC/ljgFNeZO"], ["confirmed_at", "2019-08-25 20:27:45.379089"], ["email", "kayce_lemke@dubuque.net"], ["created_at", "2019-08-25 20:27:45.379976"], ["updated_at", "2019-08-25 20:27:45.379976"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"kayce_lemke@dubuque.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kayce_lemke@dubuque.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "natividad.bogisich@terry.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "natividad.bogisich@terry.net"], ["encrypted_password", "$2a$04$8Si21UnR9ziAGLEElQOoM.omHKmBajAwMhsx/jRK5Dyt4IGgYiAuy"], ["confirmed_at", "2019-08-25 20:27:50.473075"], ["email", "natividad.bogisich@terry.net"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:50.475274"], ["updated_at", "2019-08-25 20:27:50.475274"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"natividad.bogisich@terry.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "natividad.bogisich@terry.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LM4M55iG6IKVqBURVhUJXw\":{\"token\":\"$2a$12$YfPDDcKmrGzcssrQSwyaVOB0sxFFasQa72.pTQ/5M7mPGXd9SbFqm\",\"expiry\":1567974470,\"last_token\":null,\"updated_at\":\"2019-08-25T15:27:50.500-05:00\"}}"], ["updated_at", "2019-08-25 20:27:50.681256"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:27:50.684365"], ["last_sign_in_at", "2019-08-25 20:27:50.684365"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:27:50.684681"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 195ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ronda.torphy@schiller.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ronda.torphy@schiller.net"], ["encrypted_password", "$2a$04$SsSTayiH8UUN6ntG6tnguus3qfXBXjc5t7IK.IYmLSRO8jJ9X2Uge"], ["confirmed_at", "2019-08-25 20:27:50.691437"], ["email", "ronda.torphy@schiller.net"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:50.692324"], ["updated_at", "2019-08-25 20:27:50.692324"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"ronda.torphy@schiller.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ronda.torphy@schiller.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-25 20:27:50.696842"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carol@buckridgeschroeder.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "carol@buckridgeschroeder.io"], ["encrypted_password", "$2a$04$4GbvvQv9ExW85skJ/TzLGurykaOw2qi0XUqy4I7/6QQMURDHb/6rS"], ["confirmation_token", "msPuG8UL_m3VRsH6D_xW"], ["confirmation_sent_at", "2019-08-25 20:27:50.701580"], ["email", "carol@buckridgeschroeder.io"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:50.701494"], ["updated_at", "2019-08-25 20:27:50.701494"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"carol@buckridgeschroeder.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "carol@buckridgeschroeder.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "zana@crist.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "zana@crist.info"], ["encrypted_password", "$2a$04$G8A8nkE.RObTt/VkhMYekOzkhDnlnn8k1I1t4SJFOli4j476Zxqza"], ["confirmed_at", "2019-08-25 20:27:50.708053"], ["locked_at", "2019-08-25 20:27:50.708064"], ["email", "zana@crist.info"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:50.708887"], ["updated_at", "2019-08-25 20:27:50.708887"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"zana@crist.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "zana@crist.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deneen@huelslesch.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "deneen@huelslesch.name"], ["encrypted_password", "$2a$04$yGo7EmqO8x9C8xLpe0QMguGtgBvsiuyRTJ4fayXQKjrSHx/gzm1wm"], ["confirmed_at", "2019-08-25 20:27:50.716170"], ["email", "deneen@huelslesch.name"], ["tokens", "{}"], ["created_at", "2019-08-25 20:27:50.717043"], ["updated_at", "2019-08-25 20:27:50.717043"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"deneen@huelslesch.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "deneen@huelslesch.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leslie@beahankertzmann.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "leslie@beahankertzmann.co"], ["encrypted_password", "$2a$04$AC5wfi5bIdfTfXT0KitqietHIJOH7XyWozvDdKnObSrJwPczIEMBi"], ["confirmed_at", "2019-08-25 20:27:56.038057"], ["email", "leslie@beahankertzmann.co"], ["created_at", "2019-08-25 20:27:56.040273"], ["updated_at", "2019-08-25 20:27:56.040273"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"leslie@beahankertzmann.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leslie@beahankertzmann.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Wp3t_gTV3YbHs2F6_VLURA\":{\"token\":\"$2a$10$PbuyeY9ZEQYEhn4U6QdV6unoxKgkQKr6/pmboJuUbiwGVwxDKw9v2\",\"expiry\":1567974476,\"updated_at\":\"2019-08-25 20:27:56 UTC\"}}"], ["updated_at", "2019-08-25 20:27:56.115077"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:27:56.117934"], ["last_sign_in_at", "2019-08-25 20:27:56.117934"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:27:56.118213"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 63ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mana@schummyundt.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "mana@schummyundt.info"], ["encrypted_password", "$2a$04$x52Vd8l8Dc0EAJ7EQre.Qu6nwgnFC/9WCysUGWp3og3YSZM6meiRq"], ["confirmed_at", "2019-08-25 20:27:56.125115"], ["email", "mana@schummyundt.info"], ["created_at", "2019-08-25 20:27:56.125970"], ["updated_at", "2019-08-25 20:27:56.125970"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"mana@schummyundt.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mana@schummyundt.info"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jamison_shanahan@purdy.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jamison_shanahan@purdy.net"], ["encrypted_password", "$2a$04$5nRYT2ZhVLHQt8qJCo.IaOQCwrihy7zPe6kdjZ3fDcYS0oZKWUyt6"], ["confirmation_token", "xoDToJ1tRim1Wz96LnXz"], ["confirmation_sent_at", "2019-08-25 20:27:56.135445"], ["email", "jamison_shanahan@purdy.net"], ["created_at", "2019-08-25 20:27:56.135361"], ["updated_at", "2019-08-25 20:27:56.135361"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"jamison_shanahan@purdy.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jamison_shanahan@purdy.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "raphael_bashirian@osinski.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "raphael_bashirian@osinski.com"], ["encrypted_password", "$2a$04$Idpk5.VkVwi9DqSzB3GVV.du2FbQu4vz//atQ/SyUVT/86nRISOp2"], ["confirmed_at", "2019-08-25 20:27:56.141566"], ["locked_at", "2019-08-25 20:27:56.141578"], ["email", "raphael_bashirian@osinski.com"], ["created_at", "2019-08-25 20:27:56.142324"], ["updated_at", "2019-08-25 20:27:56.142324"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"raphael_bashirian@osinski.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "raphael_bashirian@osinski.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "pasquale@lemkestreich.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "pasquale@lemkestreich.com"], ["encrypted_password", "$2a$04$E.UQJXvxjjTwN0LvE9t5L.tXBWo36YBxRxXz5sttv/dl06PUubVrm"], ["confirmed_at", "2019-08-25 20:27:56.149379"], ["email", "pasquale@lemkestreich.com"], ["created_at", "2019-08-25 20:27:56.150248"], ["updated_at", "2019-08-25 20:27:56.150248"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:27:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"pasquale@lemkestreich.com\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "pasquale@lemkestreich.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dorian_powlowski@schowalter.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "dorian_powlowski@schowalter.org"], ["encrypted_password", "$2a$04$Yyf/dNbjlfiUgUVmWevAB.o0/yOSIei5eegaxFfVZN5yOnc21Ynoy"], ["confirmed_at", "2019-08-25 20:28:01.523183"], ["email", "dorian_powlowski@schowalter.org"], ["created_at", "2019-08-25 20:28:01.524391"], ["updated_at", "2019-08-25 20:28:01.524391"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:28:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"dorian_powlowski@schowalter.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dorian_powlowski@schowalter.org"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mLi6GWuDbfUBHj2KH_dMJw\":{\"token\":\"$2a$10$PnrKZdZlY2NypfN.oHhxAe1hhTucL4wfkwfzJ5mkCzZT7tBVUg2yC\",\"expiry\":1567974481,\"updated_at\":\"2019-08-25 20:28:01 UTC\"}}"], ["updated_at", "2019-08-25 20:28:01.604238"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-25 20:28:01.607338"], ["last_sign_in_at", "2019-08-25 20:28:01.607338"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-25 20:28:01.607586"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 72ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 12089) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "robt@braun.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "robt@braun.biz"], ["encrypted_password", "$2a$04$2/FaO3nzW1aKllX9W0czH.jHtRGsEM3jaLX7XZLRCTTahudf6joRO"], ["confirmed_at", "2019-08-25 20:28:01.615717"], ["email", "robt@braun.biz"], ["created_at", "2019-08-25 20:28:01.616545"], ["updated_at", "2019-08-25 20:28:01.616545"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:28:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"robt@braun.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "robt@braun.biz"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2101) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lurlene.reichel@monahan.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lurlene.reichel@monahan.name"], ["encrypted_password", "$2a$04$TxwcTgQM2MDOX1pwBLe99.4K6NVokVIZAO81vyUeYlpcHBEZYSkuW"], ["confirmation_token", "MrFL-LxW1GeoiHa2Vp1s"], ["confirmation_sent_at", "2019-08-25 20:28:01.626497"], ["email", "lurlene.reichel@monahan.name"], ["created_at", "2019-08-25 20:28:01.626406"], ["updated_at", "2019-08-25 20:28:01.626406"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:28:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"lurlene.reichel@monahan.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lurlene.reichel@monahan.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1292) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "pricilla@stiedemann.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "pricilla@stiedemann.org"], ["encrypted_password", "$2a$04$KQ/v7M1Kx0PMCbDiKbpqRua6pvoPRNfvi7pxW3S8ZQ7VUH4XIrQPS"], ["confirmed_at", "2019-08-25 20:28:01.633232"], ["locked_at", "2019-08-25 20:28:01.633245"], ["email", "pricilla@stiedemann.org"], ["created_at", "2019-08-25 20:28:01.634100"], ["updated_at", "2019-08-25 20:28:01.634100"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:28:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"pricilla@stiedemann.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "pricilla@stiedemann.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1310) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gladys@shields.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gladys@shields.net"], ["encrypted_password", "$2a$04$F0aA4wMfEFIQhq8fD6PRQOHNVTXP2pHgd1pGccKo/BinUVRzlJTE."], ["confirmed_at", "2019-08-25 20:28:01.641386"], ["email", "gladys@shields.net"], ["created_at", "2019-08-25 20:28:01.642252"], ["updated_at", "2019-08-25 20:28:01.642252"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 15:28:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"gladys@shields.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gladys@shields.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1289) TRANSACTION (0.3ms) rollback transaction  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shantelle@aufderharmoriette.info"], ["provider", "email"], ["LIMIT", 1]] User Create (2.8ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "shantelle@aufderharmoriette.info"], ["encrypted_password", "$2a$04$vg9dyPG.UZDD2kT4vLlqXeoOYRmFQhWXowSKCTuLsSRwgke1sSRoK"], ["confirmed_at", "2019-08-26 01:35:34.566908"], ["email", "shantelle@aufderharmoriette.info"], ["created_at", "2019-08-26 01:35:34.570361"], ["updated_at", "2019-08-26 01:35:34.570361"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 20:35:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"shantelle@aufderharmoriette.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leslie@goodwin.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "leslie@goodwin.biz"], ["encrypted_password", "$2a$04$nVK4aE2ZGJNhGDXk7kZ9AunbCbhhFOMlCCu5p/.XqrxyhLQHo816."], ["confirmed_at", "2019-08-26 01:35:34.623174"], ["email", "leslie@goodwin.biz"], ["created_at", "2019-08-26 01:35:34.624030"], ["updated_at", "2019-08-26 01:35:34.624030"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 20:35:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"leslie@goodwin.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wallace_prosacco@spinka.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "wallace_prosacco@spinka.net"], ["encrypted_password", "$2a$04$F8MtJNiC6WiYAMd/s8qYMevsNb13jnHLtpBXhMwzj28bVh59Hk5c2"], ["confirmation_token", "HQV5TsJwVr9yB4etZx8n"], ["confirmation_sent_at", "2019-08-26 01:35:34.630525"], ["email", "wallace_prosacco@spinka.net"], ["created_at", "2019-08-26 01:35:34.630432"], ["updated_at", "2019-08-26 01:35:34.630432"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 20:35:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"wallace_prosacco@spinka.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "erminia@howell.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "erminia@howell.net"], ["encrypted_password", "$2a$04$5APoobMH/Cn1ZxbonxhNPu2ito.GqdSQIiKTpVvvY.QgSpE8Z2WQ6"], ["confirmed_at", "2019-08-26 01:35:34.636725"], ["locked_at", "2019-08-26 01:35:34.636739"], ["email", "erminia@howell.net"], ["created_at", "2019-08-26 01:35:34.637603"], ["updated_at", "2019-08-26 01:35:34.637603"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 20:35:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"erminia@howell.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) [1mbegin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lorriane.champlin@bruen.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lorriane.champlin@bruen.org"], ["encrypted_password", "$2a$04$8EizrcI0YDjHqXwuwqRrOehZQo2Ty1znV9w6Aqmb5jmudivSjAytq"], ["confirmed_at", "2019-08-26 01:35:34.644512"], ["email", "lorriane.champlin@bruen.org"], ["created_at", "2019-08-26 01:35:34.645497"], ["updated_at", "2019-08-26 01:35:34.645497"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 20:35:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"lorriane.champlin@bruen.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elroy@fisherbotsford.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "elroy@fisherbotsford.info"], ["encrypted_password", "$2a$04$GsW0gP4IWeTWidAkDHTVh.IyUFIKlLiBg1SrxIUmjNJAnedsNZrji"], ["confirmed_at", "2019-08-26 02:06:16.972562"], ["email", "elroy@fisherbotsford.info"], ["created_at", "2019-08-26 02:06:16.974844"], ["updated_at", "2019-08-26 02:06:16.974844"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:06:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"elroy@fisherbotsford.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "floyd_kovacek@renner.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "floyd_kovacek@renner.name"], ["encrypted_password", "$2a$04$udKXJ8pQm8Cq5jPZ43cgCOoSU9k5VqEV23aQxvAqY2HupqWdejkEG"], ["confirmed_at", "2019-08-26 02:06:17.009183"], ["email", "floyd_kovacek@renner.name"], ["created_at", "2019-08-26 02:06:17.010059"], ["updated_at", "2019-08-26 02:06:17.010059"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:06:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"floyd_kovacek@renner.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alberto_carter@homenick.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alberto_carter@homenick.org"], ["encrypted_password", "$2a$04$DylWwSIjc9aBtFOl15AG2.xU1.d5OntsW10ckCiJWC61.TP5tvMNG"], ["confirmation_token", "Dfya4BjGxTqrXswLmc7q"], ["confirmation_sent_at", "2019-08-26 02:06:17.016218"], ["email", "alberto_carter@homenick.org"], ["created_at", "2019-08-26 02:06:17.016138"], ["updated_at", "2019-08-26 02:06:17.016138"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:06:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"alberto_carter@homenick.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "edison_konopelski@morar.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "edison_konopelski@morar.io"], ["encrypted_password", "$2a$04$RKp6eLI5qQZK3mscthoEYeihRHGZlGkLklRjrc68b1cHHutn.l42i"], ["confirmed_at", "2019-08-26 02:06:17.021578"], ["locked_at", "2019-08-26 02:06:17.021598"], ["email", "edison_konopelski@morar.io"], ["created_at", "2019-08-26 02:06:17.022543"], ["updated_at", "2019-08-26 02:06:17.022543"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:06:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"edison_konopelski@morar.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kim@anderson.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kim@anderson.io"], ["encrypted_password", "$2a$04$K1.CcD2muYhGGBLOBS9MQe.yevFJ.4cUAWe0hHMS3TbIYcBPzKM9y"], ["confirmed_at", "2019-08-26 02:06:17.028673"], ["email", "kim@anderson.io"], ["created_at", "2019-08-26 02:06:17.029750"], ["updated_at", "2019-08-26 02:06:17.029750"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:06:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"kim@anderson.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sharonda.jacobs@mertz.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "sharonda.jacobs@mertz.biz"], ["encrypted_password", "$2a$04$zP/jhgaOEG096vTZqBfzk.iDAJm4Touuz/SxvSUNzZDrl9RQqi1fS"], ["confirmed_at", "2019-08-26 02:06:41.594253"], ["email", "sharonda.jacobs@mertz.biz"], ["created_at", "2019-08-26 02:06:41.596521"], ["updated_at", "2019-08-26 02:06:41.596521"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:06:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"sharonda.jacobs@mertz.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hong@doyle.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "hong@doyle.org"], ["encrypted_password", "$2a$04$.zvZDd68ZapKbCvLPXuQruPsyt8s.RfHJOr3UxpLRmOaKEktkSGw6"], ["confirmed_at", "2019-08-26 02:07:24.356765"], ["email", "hong@doyle.org"], ["created_at", "2019-08-26 02:07:24.358180"], ["updated_at", "2019-08-26 02:07:24.358180"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:07:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"hong@doyle.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "thomasine@walsh.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "thomasine@walsh.org"], ["encrypted_password", "$2a$04$oT8OCYBS/INe3HKqrL2/celsStLcKOYhHdc7DFIXnQkG7T9AAhsVS"], ["confirmation_token", "WpwVX5_bDSxPNmw2XYAz"], ["confirmation_sent_at", "2019-08-26 02:07:24.367145"], ["email", "thomasine@walsh.org"], ["created_at", "2019-08-26 02:07:24.367018"], ["updated_at", "2019-08-26 02:07:24.367018"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:07:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"thomasine@walsh.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "abraham_rosenbaum@mcdermott.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "abraham_rosenbaum@mcdermott.co"], ["encrypted_password", "$2a$04$rQ8xDvT5p9F.x8StSWoS/.T8kKjtp8NbvZIvg4HHjL0hh5pViWcrS"], ["confirmed_at", "2019-08-26 02:07:24.373691"], ["locked_at", "2019-08-26 02:07:24.373707"], ["email", "abraham_rosenbaum@mcdermott.co"], ["created_at", "2019-08-26 02:07:24.374773"], ["updated_at", "2019-08-26 02:07:24.374773"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:07:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"abraham_rosenbaum@mcdermott.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "adelaida@zboncak.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "adelaida@zboncak.biz"], ["encrypted_password", "$2a$04$2TupZFN08RKtcqQ5ofFMxez5udl7DqFu.6zlNtm0QR4Uu00AzNLc6"], ["confirmed_at", "2019-08-26 02:07:24.381552"], ["email", "adelaida@zboncak.biz"], ["created_at", "2019-08-26 02:07:24.382451"], ["updated_at", "2019-08-26 02:07:24.382451"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:07:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n login(\n email: \"adelaida@zboncak.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sherry@cummings.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "sherry@cummings.info"], ["encrypted_password", "$2a$04$lvJwegx/k5zUdzhau/7.HutyUvCINm.VtNvL9p3aJ4OnEC1PyurBO"], ["confirmed_at", "2019-08-26 02:07:28.233386"], ["email", "sherry@cummings.info"], ["created_at", "2019-08-26 02:07:28.235605"], ["updated_at", "2019-08-26 02:07:28.235605"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:07:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sherry@cummings.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sherry@cummings.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-J9MGsYlFMQdSZ2kQQ87GA\":{\"token\":\"$2a$10$rr4fCamIlMB2a5VoDr3CGuODb0YfVDpBlcBWDZ8EZez.wE/3WVxWa\",\"expiry\":1567994848,\"updated_at\":\"2019-08-26 02:07:28 UTC\"}}"], ["updated_at", "2019-08-26 02:07:28.308673"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-26 02:07:28.311479"], ["last_sign_in_at", "2019-08-26 02:07:28.311479"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-26 02:07:28.311768"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 61ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kandis@williamsonkoepp.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "kandis@williamsonkoepp.info"], ["encrypted_password", "$2a$04$EnWPpaflcCJSDlSu53X3xOOLFAzZN.9BHIxbVXdVSabV9byCd9Ly."], ["confirmed_at", "2019-08-26 02:07:35.487067"], ["email", "kandis@williamsonkoepp.info"], ["created_at", "2019-08-26 02:07:35.488445"], ["updated_at", "2019-08-26 02:07:35.488445"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:07:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kandis@williamsonkoepp.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kandis@williamsonkoepp.info"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "corina.goyette@lang.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "corina.goyette@lang.name"], ["encrypted_password", "$2a$04$hsSfrpwCKwCq0pU2BkWnzexphi7O60XvUvNT5eyrd0cKcnKQSX/Om"], ["confirmation_token", "GkFwjajNbzXqSgyXuNxM"], ["confirmation_sent_at", "2019-08-26 02:07:35.503743"], ["email", "corina.goyette@lang.name"], ["created_at", "2019-08-26 02:07:35.503617"], ["updated_at", "2019-08-26 02:07:35.503617"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:07:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"corina.goyette@lang.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "corina.goyette@lang.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "particia_robel@kovacek.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "particia_robel@kovacek.biz"], ["encrypted_password", "$2a$04$FLLSz8BuWF4oRMJ1ABhfMOdrnqVB5rlkbINez62Z2Kc0/FWYXNPhK"], ["confirmed_at", "2019-08-26 02:07:35.510717"], ["locked_at", "2019-08-26 02:07:35.510732"], ["email", "particia_robel@kovacek.biz"], ["created_at", "2019-08-26 02:07:35.511628"], ["updated_at", "2019-08-26 02:07:35.511628"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:07:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"particia_robel@kovacek.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "particia_robel@kovacek.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jennine_parisian@runolfsdottirwest.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jennine_parisian@runolfsdottirwest.org"], ["encrypted_password", "$2a$04$txPLXqIX/x8sjGLqP6E0r.vGpbIO4otWWApgRoLgIl6xZNv4GT3Um"], ["confirmed_at", "2019-08-26 02:07:35.518560"], ["email", "jennine_parisian@runolfsdottirwest.org"], ["created_at", "2019-08-26 02:07:35.519398"], ["updated_at", "2019-08-26 02:07:35.519398"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:07:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jennine_parisian@runolfsdottirwest.org\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jennine_parisian@runolfsdottirwest.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dale.lindgren@keeblerheathcote.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "dale.lindgren@keeblerheathcote.io"], ["encrypted_password", "$2a$04$fzmgYLOtS0G/7XZf177lbuggh5CQl1N/7OaAsuG6TAFrkTyAgqhQS"], ["confirmed_at", "2019-08-26 02:08:19.064319"], ["email", "dale.lindgren@keeblerheathcote.io"], ["created_at", "2019-08-26 02:08:19.066525"], ["updated_at", "2019-08-26 02:08:19.066525"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:08:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dale.lindgren@keeblerheathcote.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dale.lindgren@keeblerheathcote.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"zhJI86QwCU7Ig_X8-d2gHA\":{\"token\":\"$2a$10$JIW4E1q0XCs1aaE3F95bo.dOwn9c8vhrHpJNnUDeRFpaP1kTi4.9i\",\"expiry\":1567994899,\"updated_at\":\"2019-08-26 02:08:19 UTC\"}}"], ["updated_at", "2019-08-26 02:08:19.136636"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-26 02:08:19.139448"], ["last_sign_in_at", "2019-08-26 02:08:19.139448"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-26 02:08:19.139775"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 59ms (Views: 0.3ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "paul@runte.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "paul@runte.io"], ["encrypted_password", "$2a$04$i6zkrDqGBjQmnP2s6fhkZ.b9WjhLpjL7/MhYAzb2XOefYBqpHMNbe"], ["confirmed_at", "2019-08-26 02:08:19.147882"], ["email", "paul@runte.io"], ["created_at", "2019-08-26 02:08:19.148727"], ["updated_at", "2019-08-26 02:08:19.148727"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:08:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"paul@runte.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "paul@runte.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "werner@stark.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "werner@stark.io"], ["encrypted_password", "$2a$04$ctLjuiSaZ2OtR75dRoIXX.Vv8WPPfpZbIlfamx6g6zHbss975uBQ6"], ["confirmation_token", "6LUYp6G5ZDBbkcCAhgJQ"], ["confirmation_sent_at", "2019-08-26 02:08:19.159218"], ["email", "werner@stark.io"], ["created_at", "2019-08-26 02:08:19.159125"], ["updated_at", "2019-08-26 02:08:19.159125"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:08:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"werner@stark.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "werner@stark.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "regine_volkman@wymanglover.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "regine_volkman@wymanglover.biz"], ["encrypted_password", "$2a$04$sZt1U4v2tWr.s28FtYfUOeLDT7QLUUpij2kiQjyr5cLnHsMLeIIw."], ["confirmed_at", "2019-08-26 02:08:19.165785"], ["locked_at", "2019-08-26 02:08:19.165799"], ["email", "regine_volkman@wymanglover.biz"], ["created_at", "2019-08-26 02:08:19.166648"], ["updated_at", "2019-08-26 02:08:19.166648"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:08:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"regine_volkman@wymanglover.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "regine_volkman@wymanglover.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "caprice@lesch.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "caprice@lesch.biz"], ["encrypted_password", "$2a$04$MYqxjtAp7q9OQp8c6HS/GOHza.Mq3mfcTJQ3Eem1/1lFTFvR3xhyW"], ["confirmed_at", "2019-08-26 02:08:19.173833"], ["email", "caprice@lesch.biz"], ["created_at", "2019-08-26 02:08:19.174716"], ["updated_at", "2019-08-26 02:08:19.174716"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:08:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"caprice@lesch.biz\",\n password: \"12345678\"\n ) {\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "caprice@lesch.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hedy_jacobi@rolfsonmetz.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "hedy_jacobi@rolfsonmetz.co"], ["encrypted_password", "$2a$04$3Py58f4YV52a3HJx1mfCeORkFlLCXz4fn0mdGQu7dY0B.Ey3.It5O"], ["confirmed_at", "2019-08-26 02:09:54.598301"], ["email", "hedy_jacobi@rolfsonmetz.co"], ["created_at", "2019-08-26 02:09:54.600228"], ["updated_at", "2019-08-26 02:09:54.600228"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:09:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"hedy_jacobi@rolfsonmetz.co\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hedy_jacobi@rolfsonmetz.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"tTHjjW1UYztxd6aeOLHJkw\":{\"token\":\"$2a$10$4gu5tQXx1FaDLGHsMZDbe.aVaWfLRO24kV7vN9yTmKXFNkni9XyAm\",\"expiry\":1567994994,\"updated_at\":\"2019-08-26 02:09:54 UTC\"}}"], ["updated_at", "2019-08-26 02:09:54.670753"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-26 02:09:54.673696"], ["last_sign_in_at", "2019-08-26 02:09:54.673696"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-26 02:09:54.674040"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "betty_carter@pfannerstill.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "betty_carter@pfannerstill.io"], ["encrypted_password", "$2a$04$VpVIhrO46ESQR7uQSz9KOuVRJP/HhGAATBi2LilCqz6o/CuHO7QfS"], ["confirmed_at", "2019-08-26 02:09:54.687706"], ["email", "betty_carter@pfannerstill.io"], ["created_at", "2019-08-26 02:09:54.688567"], ["updated_at", "2019-08-26 02:09:54.688567"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:09:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"betty_carter@pfannerstill.io\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "betty_carter@pfannerstill.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alva@kutch.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alva@kutch.net"], ["encrypted_password", "$2a$04$5R0Kx91z.Rvi.U2sfC4ogOwLHN0ZLrLZTD14K55sFq8/XE7zTtLYK"], ["confirmation_token", "xMBqXoz8gYpAdWLvog5c"], ["confirmation_sent_at", "2019-08-26 02:09:54.698067"], ["email", "alva@kutch.net"], ["created_at", "2019-08-26 02:09:54.697986"], ["updated_at", "2019-08-26 02:09:54.697986"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:09:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"alva@kutch.net\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alva@kutch.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stefan.west@heller.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "stefan.west@heller.info"], ["encrypted_password", "$2a$04$G2.U36wKX0cigKMMLEEBc.AEwzSH7OtB2AO/F/FkO1y.WVcvy.fUu"], ["confirmed_at", "2019-08-26 02:09:54.704044"], ["locked_at", "2019-08-26 02:09:54.704054"], ["email", "stefan.west@heller.info"], ["created_at", "2019-08-26 02:09:54.704837"], ["updated_at", "2019-08-26 02:09:54.704837"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:09:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"stefan.west@heller.info\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stefan.west@heller.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lenita.beatty@muller.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lenita.beatty@muller.co"], ["encrypted_password", "$2a$04$qvHTfdChLkF2EYGTVxStA.LDgMbkhRtK9dIW4QjtjOohdhLf1STD2"], ["confirmed_at", "2019-08-26 02:09:54.711694"], ["email", "lenita.beatty@muller.co"], ["created_at", "2019-08-26 02:09:54.712579"], ["updated_at", "2019-08-26 02:09:54.712579"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:09:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lenita.beatty@muller.co\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lenita.beatty@muller.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arianna_abbott@zulauf.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "arianna_abbott@zulauf.biz"], ["encrypted_password", "$2a$04$BgBxy8vXYdiLvPYRmcMW5OB70srYhLEEZMe3QGoaE5qBRh0M9QKpy"], ["confirmed_at", "2019-08-26 02:12:26.470793"], ["name", "Barb Dwyer"], ["email", "arianna_abbott@zulauf.biz"], ["created_at", "2019-08-26 02:12:26.473067"], ["updated_at", "2019-08-26 02:12:26.473067"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:12:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"arianna_abbott@zulauf.biz\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "arianna_abbott@zulauf.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"C39gp7x4wgLi3SO2xQBYwA\":{\"token\":\"$2a$10$9YKaUG5hlE3P1W9icyyWO.GhlL5.isJItYWBtdvuCCM7MiP/96gbG\",\"expiry\":1567995146,\"updated_at\":\"2019-08-26 02:12:26 UTC\"}}"], ["updated_at", "2019-08-26 02:12:26.542442"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-26 02:12:26.545382"], ["last_sign_in_at", "2019-08-26 02:12:26.545382"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-26 02:12:26.545712"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 58ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "scotty_shanahan@grimeslittel.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "scotty_shanahan@grimeslittel.org"], ["encrypted_password", "$2a$04$kjLcQNkwiEJ3xHn75NKsceWLcwMyyWOu.mLgYIPxuEN.3TBWZKK1O"], ["confirmed_at", "2019-08-26 02:12:26.551726"], ["name", "Darryl Likt"], ["email", "scotty_shanahan@grimeslittel.org"], ["created_at", "2019-08-26 02:12:26.552332"], ["updated_at", "2019-08-26 02:12:26.552332"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:12:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"scotty_shanahan@grimeslittel.org\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "scotty_shanahan@grimeslittel.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sylvester@dickinsonwaters.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sylvester@dickinsonwaters.org"], ["encrypted_password", "$2a$04$e.0AqCN98auV9O23GNCNA.pP50oK7WnAZhHLCugOUfkGlXJOsvXFa"], ["confirmation_token", "-Zfsbhh4R1jbwfkDq_zp"], ["confirmation_sent_at", "2019-08-26 02:12:26.560656"], ["name", "Stu Pitt"], ["email", "sylvester@dickinsonwaters.org"], ["created_at", "2019-08-26 02:12:26.560582"], ["updated_at", "2019-08-26 02:12:26.560582"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:12:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sylvester@dickinsonwaters.org\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sylvester@dickinsonwaters.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stefan_wolff@kuhlman.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "stefan_wolff@kuhlman.biz"], ["encrypted_password", "$2a$04$PSpKV7ecLwGDQDCWYUS.Pez0yDq6cSl344NzLlk4BA6i7fbaowc0C"], ["confirmed_at", "2019-08-26 02:12:26.566457"], ["locked_at", "2019-08-26 02:12:26.566467"], ["name", "Lily Livard"], ["email", "stefan_wolff@kuhlman.biz"], ["created_at", "2019-08-26 02:12:26.567107"], ["updated_at", "2019-08-26 02:12:26.567107"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:12:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"stefan_wolff@kuhlman.biz\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stefan_wolff@kuhlman.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "peter@pfannerstillwilkinson.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "peter@pfannerstillwilkinson.name"], ["encrypted_password", "$2a$04$D7Ka70FeMY9GDPVIzS3ONudGMl1jN7.Vy64qVVTIHPCd5Q5v5P9g6"], ["confirmed_at", "2019-08-26 02:12:26.575751"], ["name", "Harrison Fire"], ["email", "peter@pfannerstillwilkinson.name"], ["created_at", "2019-08-26 02:12:26.577314"], ["updated_at", "2019-08-26 02:12:26.577314"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 21:12:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"peter@pfannerstillwilkinson.name\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "peter@pfannerstillwilkinson.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dottie_barton@thompson.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dottie_barton@thompson.net"], ["encrypted_password", "$2a$04$/DFTXaIn6dnLsRwXz4pspOYk0fXvyYCjiNobocelR2kLCGahiHqE2"], ["confirmed_at", "2019-08-26 03:08:16.921693"], ["name", "Sally Mander"], ["email", "dottie_barton@thompson.net"], ["created_at", "2019-08-26 03:08:16.924341"], ["updated_at", "2019-08-26 03:08:16.924341"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 22:08:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dottie_barton@thompson.net\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dottie_barton@thompson.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"AOQPBV0F3aEvv00nUrrATw\":{\"token\":\"$2a$10$9cnlsCKV1E5itJUuvxKnSu.X3qiPLuC9p2Jq.tDrGBxN7avaItXPu\",\"expiry\":1567998497,\"updated_at\":\"2019-08-26 03:08:16 UTC\"}}"], ["updated_at", "2019-08-26 03:08:17.008511"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-26 03:08:17.011913"], ["last_sign_in_at", "2019-08-26 03:08:17.011913"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-26 03:08:17.012391"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 70ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "selma@jast.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "selma@jast.com"], ["encrypted_password", "$2a$04$NJAorAG3EZHnctSXDTpo1O9Q54TXT/VQX9NoMwWi6/mH07jbO3s3O"], ["confirmed_at", "2019-08-26 03:08:17.020445"], ["name", "Marv Ellis"], ["email", "selma@jast.com"], ["created_at", "2019-08-26 03:08:17.021390"], ["updated_at", "2019-08-26 03:08:17.021390"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 22:08:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"selma@jast.com\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "selma@jast.com"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mac_hackett@stark.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mac_hackett@stark.co"], ["encrypted_password", "$2a$04$lOK9Xxov8AyvzvgJwySe...FF0uvzs9ZPb4gGZIzCkR.pI6QjZ/c."], ["confirmation_token", "tA2RZE7svKfn3LKaoH34"], ["confirmation_sent_at", "2019-08-26 03:08:17.032981"], ["name", "Will Power"], ["email", "mac_hackett@stark.co"], ["created_at", "2019-08-26 03:08:17.032879"], ["updated_at", "2019-08-26 03:08:17.032879"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 22:08:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"mac_hackett@stark.co\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mac_hackett@stark.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sharilyn.lueilwitz@stehr.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sharilyn.lueilwitz@stehr.name"], ["encrypted_password", "$2a$04$CAO/chtnXeUe8Y8aAuKppOxN3UtMAfEYgNq09lBvaLEvv28oPLWC6"], ["confirmed_at", "2019-08-26 03:08:17.040084"], ["locked_at", "2019-08-26 03:08:17.040098"], ["name", "Lisa Carr"], ["email", "sharilyn.lueilwitz@stehr.name"], ["created_at", "2019-08-26 03:08:17.041247"], ["updated_at", "2019-08-26 03:08:17.041247"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 22:08:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sharilyn.lueilwitz@stehr.name\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sharilyn.lueilwitz@stehr.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "percy@streichrodriguez.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "percy@streichrodriguez.net"], ["encrypted_password", "$2a$04$f2Ipv/rbAabiPUTTUYRkEO3fzh9T13qBaM82wFnu9abETOeqU8.Me"], ["confirmed_at", "2019-08-26 03:08:17.048857"], ["name", "Barry Cade"], ["email", "percy@streichrodriguez.net"], ["created_at", "2019-08-26 03:08:17.050080"], ["updated_at", "2019-08-26 03:08:17.050080"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-25 22:08:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"percy@streichrodriguez.net\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "percy@streichrodriguez.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "robert@schowalter.org"], ["provider", "email"], ["LIMIT", 1]] User Create (2.9ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "robert@schowalter.org"], ["encrypted_password", "$2a$04$BbScv4q8kNY1Ixrx6lRRaeThmvP3qhEuD8n.KIbDnatSbEX9.8GqG"], ["confirmed_at", "2019-08-30 02:37:17.840933"], ["name", "Sal Ami"], ["email", "robert@schowalter.org"], ["created_at", "2019-08-30 02:37:17.845197"], ["updated_at", "2019-08-30 02:37:17.845197"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:37:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"robert@schowalter.org\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sal.spinka@kiehnmurazik.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sal.spinka@kiehnmurazik.org"], ["encrypted_password", "$2a$04$FQhokYtLX2knhPk6DDsm1OSirUKOomZq4H9Wu1mbUigYNdfMKeGBm"], ["confirmed_at", "2019-08-30 02:37:17.897840"], ["name", "Willie Waite"], ["email", "sal.spinka@kiehnmurazik.org"], ["created_at", "2019-08-30 02:37:17.898739"], ["updated_at", "2019-08-30 02:37:17.898739"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:37:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sal.spinka@kiehnmurazik.org\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clara.torp@mertz.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "clara.torp@mertz.net"], ["encrypted_password", "$2a$04$L/4fflUSWblq3sJBUlWA9ee/toOl7G8T8Jg3mKLW3Kj0iU8XTcw/S"], ["confirmation_token", "WG5d611m3y5fCxeRa-ah"], ["confirmation_sent_at", "2019-08-30 02:37:17.905675"], ["name", "Sal Sage"], ["email", "clara.torp@mertz.net"], ["created_at", "2019-08-30 02:37:17.905569"], ["updated_at", "2019-08-30 02:37:17.905569"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:37:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"clara.torp@mertz.net\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ted_bosco@dare.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ted_bosco@dare.info"], ["encrypted_password", "$2a$04$r58BgPLoi19WSKTbLfSXfORM4sazViQp4SbXbxt/6CuCKJMPfjvmC"], ["confirmed_at", "2019-08-30 02:37:17.912326"], ["locked_at", "2019-08-30 02:37:17.912350"], ["name", "May Furst"], ["email", "ted_bosco@dare.info"], ["created_at", "2019-08-30 02:37:17.913612"], ["updated_at", "2019-08-30 02:37:17.913612"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:37:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ted_bosco@dare.info\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "norbert@lednerdietrich.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "norbert@lednerdietrich.name"], ["encrypted_password", "$2a$04$9/4yZr0UDFBJQGg.xCVdYuRKeQaNGiMa8XqxFKTQ/rNmIqajFKGRG"], ["confirmed_at", "2019-08-30 02:37:17.920607"], ["name", "Justin Tune"], ["email", "norbert@lednerdietrich.name"], ["created_at", "2019-08-30 02:37:17.921839"], ["updated_at", "2019-08-30 02:37:17.921839"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:37:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"norbert@lednerdietrich.name\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joanne@hellerwolff.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "joanne@hellerwolff.biz"], ["encrypted_password", "$2a$04$kXHGUMpcwZEJUwsGYb3u3Oemkq2rXz40d6XWRbcWud5tfeluLP78O"], ["confirmed_at", "2019-08-30 02:37:46.255497"], ["name", "Chris Ko"], ["email", "joanne@hellerwolff.biz"], ["created_at", "2019-08-30 02:37:46.257443"], ["updated_at", "2019-08-30 02:37:46.257443"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:37:46 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"joanne@hellerwolff.biz\",\n password: \"12345678\"\n ) {\n authenticable { email name }\n success\n errors\n }\n }\n"} Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "erwin.olson@damoreolson.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "erwin.olson@damoreolson.biz"], ["encrypted_password", "$2a$04$TF8B/wZFw4ZIa.fevPMxK.aglIBDKNRA5VpPwTHVA70W1YfEHC7BO"], ["confirmed_at", "2019-08-30 02:39:19.729465"], ["name", "Rusty Keyes"], ["email", "erwin.olson@damoreolson.biz"], ["created_at", "2019-08-30 02:39:19.731364"], ["updated_at", "2019-08-30 02:39:19.731364"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:39:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"erwin.olson@damoreolson.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ivan_kozey@king.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ivan_kozey@king.info"], ["encrypted_password", "$2a$04$Mdp52tjOVrn9IFczWIAr7.L2FiGLNx2fi/MiFQ.DufF2i5KBuoaPq"], ["confirmed_at", "2019-08-30 02:39:47.717906"], ["name", "Harry Legg"], ["email", "ivan_kozey@king.info"], ["created_at", "2019-08-30 02:39:47.721121"], ["updated_at", "2019-08-30 02:39:47.721121"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:39:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ivan_kozey@king.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ivan_kozey@king.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dv6cY4b0vFwLVBiOblzFzw\":{\"token\":\"$2a$10$tfmQPuE0BiI/MsWrfRuRqu21CFsRh0iYDKc3K23z2QA3JDdQ9/1EG\",\"expiry\":1568342387,\"updated_at\":\"2019-08-30 02:39:47 UTC\"}}"], ["updated_at", "2019-08-30 02:39:47.787800"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 02:39:47.791791"], ["last_sign_in_at", "2019-08-30 02:39:47.791791"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 02:39:47.792314"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rory.bartell@denesikrohan.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rory.bartell@denesikrohan.co"], ["encrypted_password", "$2a$04$dKL20o7b7P4r7XnXGSx1h.c7pADwdxfeku78k6/wTcmhDPLB0.SS6"], ["confirmed_at", "2019-08-30 02:42:34.112378"], ["name", "Woody Forrest"], ["email", "rory.bartell@denesikrohan.co"], ["created_at", "2019-08-30 02:42:34.114318"], ["updated_at", "2019-08-30 02:42:34.114318"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:42:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rory.bartell@denesikrohan.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rory.bartell@denesikrohan.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"y2fup81l2OfCPfPX_13ZUA\":{\"token\":\"$2a$10$JwcY7L7xIKH0J9V5az0Bqupe6RmQWwJ0Wnio/0DWche7auE26S9SO\",\"expiry\":1568342554,\"updated_at\":\"2019-08-30 02:42:34 UTC\"}}"], ["updated_at", "2019-08-30 02:42:34.182701"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 02:42:34.186143"], ["last_sign_in_at", "2019-08-30 02:42:34.186143"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 02:42:34.186656"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tameka@kuhn.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tameka@kuhn.net"], ["encrypted_password", "$2a$04$iSmMGJ8ZL.leADReSer8HO7m3Oqi0qUjxmV9xwS7kFVHxOQd0qxiy"], ["confirmed_at", "2019-08-30 02:45:38.413086"], ["name", "Doug Witherspoon"], ["email", "tameka@kuhn.net"], ["created_at", "2019-08-30 02:45:38.414908"], ["updated_at", "2019-08-30 02:45:38.414908"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:45:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tameka@kuhn.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tameka@kuhn.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bRc95Tdwmx8mx9gAzYDm6w\":{\"token\":\"$2a$10$P4ROz7qwCs7c6Pj3Ea9QqeMcfIBnaJMUeKPRj6tfXFFstjCSjr0oW\",\"expiry\":1568342738,\"updated_at\":\"2019-08-30 02:45:38 UTC\"}}"], ["updated_at", "2019-08-30 02:45:38.484242"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 02:45:38.487668"], ["last_sign_in_at", "2019-08-30 02:45:38.487668"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 02:45:38.488094"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "darius_schuppe@moenkihn.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "darius_schuppe@moenkihn.co"], ["encrypted_password", "$2a$04$ioXzIkyxXHjynk/b1zWR3eHoFNthiTurCEC/Hp9Qn9vgHYRqxVF.S"], ["confirmed_at", "2019-08-30 02:45:44.735024"], ["name", "Chrystal Glass"], ["email", "darius_schuppe@moenkihn.co"], ["created_at", "2019-08-30 02:45:44.736861"], ["updated_at", "2019-08-30 02:45:44.736861"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:45:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"darius_schuppe@moenkihn.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "darius_schuppe@moenkihn.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9EOsXC4ngcSjmwFhA8AwFw\":{\"token\":\"$2a$10$2UAmrU7EuKGBnfxBwLzoV.kneVD.JnTgmtO1ZC.TmxLJPZ.iKf.gC\",\"expiry\":1568342744,\"updated_at\":\"2019-08-30 02:45:44 UTC\"}}"], ["updated_at", "2019-08-30 02:45:44.804823"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 02:45:44.808406"], ["last_sign_in_at", "2019-08-30 02:45:44.808406"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 02:45:44.808693"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elmo.medhurst@stracke.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "elmo.medhurst@stracke.org"], ["encrypted_password", "$2a$04$VRpoJIYC5xSIvCo5szEqFeqvWxu.I31Xi7s4R9uyH6TAthlcDJBVy"], ["confirmed_at", "2019-08-30 02:45:44.815821"], ["name", "Stan Dup"], ["email", "elmo.medhurst@stracke.org"], ["created_at", "2019-08-30 02:45:44.816588"], ["updated_at", "2019-08-30 02:45:44.816588"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:45:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"elmo.medhurst@stracke.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elmo.medhurst@stracke.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "luz.ziemann@schulist.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "luz.ziemann@schulist.org"], ["encrypted_password", "$2a$04$pydMW1p6RFuutFdZgcSHsuCt9W0P3ZMPYi8JsfunRINJNbhfHT/Ry"], ["confirmation_token", "wkvKvjqjDNuhRqLwqcsz"], ["confirmation_sent_at", "2019-08-30 02:45:44.825845"], ["name", "Rich Mann"], ["email", "luz.ziemann@schulist.org"], ["created_at", "2019-08-30 02:45:44.825762"], ["updated_at", "2019-08-30 02:45:44.825762"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:45:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"luz.ziemann@schulist.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "luz.ziemann@schulist.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (1.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wade_klocko@millchroeder.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "wade_klocko@millchroeder.org"], ["encrypted_password", "$2a$04$1hpucTw4Khhfkw8HOCCMLeK.0hMXf4slaFI19cwSBMx.TZk2KzTeO"], ["confirmed_at", "2019-08-30 02:45:44.833374"], ["locked_at", "2019-08-30 02:45:44.833403"], ["name", "Lance Lyde"], ["email", "wade_klocko@millchroeder.org"], ["created_at", "2019-08-30 02:45:44.835261"], ["updated_at", "2019-08-30 02:45:44.835261"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:45:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"wade_klocko@millchroeder.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "wade_klocko@millchroeder.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "isaac_schmidt@schulistwilliamson.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "isaac_schmidt@schulistwilliamson.net"], ["encrypted_password", "$2a$04$Ymdd1Q8o5zDcXAcGjtOdqulgcI6PaHzRA2CohfACw0P.1k3jJM.SO"], ["confirmed_at", "2019-08-30 02:45:44.843022"], ["name", "Al Kaholic"], ["email", "isaac_schmidt@schulistwilliamson.net"], ["created_at", "2019-08-30 02:45:44.843874"], ["updated_at", "2019-08-30 02:45:44.843874"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:45:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"isaac_schmidt@schulistwilliamson.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "isaac_schmidt@schulistwilliamson.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "collin.homenick@crist.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "collin.homenick@crist.com"], ["encrypted_password", "$2a$04$d4KdWjyeIXNENp3lxfSoSe7YPitX.QjTWk0OJGS8K6B20164JzOEu"], ["confirmed_at", "2019-08-30 02:46:15.012722"], ["name", "Helena Hanbaskett"], ["email", "collin.homenick@crist.com"], ["created_at", "2019-08-30 02:46:15.014576"], ["updated_at", "2019-08-30 02:46:15.014576"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:46:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"collin.homenick@crist.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "collin.homenick@crist.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7P6pFWL6hs1pNWofk0NOkQ\":{\"token\":\"$2a$10$xMtE5RmkPt9E2SESAKJdreA/fDFNrTKDxVqG.pjKSGtnbRZNEgn1G\",\"expiry\":1568342775,\"updated_at\":\"2019-08-30 02:46:15 UTC\"}}"], ["updated_at", "2019-08-30 02:46:15.067900"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 02:46:15.070493"], ["last_sign_in_at", "2019-08-30 02:46:15.070493"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 02:46:15.070756"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "martin_donnelly@howe.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "martin_donnelly@howe.com"], ["encrypted_password", "$2a$04$2o3DbNR8Ka9RgsRgwn471.BWyfTHqsA.SAKXWcbGJY.Ezu/zCzi/W"], ["confirmed_at", "2019-08-30 02:46:15.077720"], ["name", "Rufus Leaking"], ["email", "martin_donnelly@howe.com"], ["created_at", "2019-08-30 02:46:15.078518"], ["updated_at", "2019-08-30 02:46:15.078518"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:46:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"martin_donnelly@howe.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "martin_donnelly@howe.com"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 15ms (Views: 0.4ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cristobal_zemlak@greenfelderkertzmann.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cristobal_zemlak@greenfelderkertzmann.net"], ["encrypted_password", "$2a$04$zDRGRmOeeMNSCl4evAecIuc0rzd30.3YyuH3gNK3TNgZGSAqOAm3G"], ["confirmation_token", "wJj4MP3s7sYs3xsiDUxe"], ["confirmation_sent_at", "2019-08-30 02:46:15.101802"], ["name", "April Schauer"], ["email", "cristobal_zemlak@greenfelderkertzmann.net"], ["created_at", "2019-08-30 02:46:15.101693"], ["updated_at", "2019-08-30 02:46:15.101693"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:46:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"cristobal_zemlak@greenfelderkertzmann.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cristobal_zemlak@greenfelderkertzmann.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carey@ruel.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "carey@ruel.info"], ["encrypted_password", "$2a$04$.BrGQaS0bkd5bNaESwpTZOAmdjR6QCXo8A7WjLcW1lGUZflODwTdu"], ["confirmed_at", "2019-08-30 02:46:15.109264"], ["locked_at", "2019-08-30 02:46:15.109280"], ["name", "Bill Lowney"], ["email", "carey@ruel.info"], ["created_at", "2019-08-30 02:46:15.110238"], ["updated_at", "2019-08-30 02:46:15.110238"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:46:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"carey@ruel.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "carey@ruel.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stevie@collins.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "stevie@collins.co"], ["encrypted_password", "$2a$04$H.L9xXmRyi6depIuLGivme99Jd8mejKn8PjemMQVR.lqMzK3dJ9SK"], ["confirmed_at", "2019-08-30 02:46:15.118296"], ["name", "Doug Witherspoon"], ["email", "stevie@collins.co"], ["created_at", "2019-08-30 02:46:15.119205"], ["updated_at", "2019-08-30 02:46:15.119205"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:46:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"stevie@collins.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stevie@collins.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "angel_becker@fayhodkiewicz.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "angel_becker@fayhodkiewicz.co"], ["encrypted_password", "$2a$04$fbXiG/P0flXUKWhM2qVNkOJ8AIq4sYUhkRY7gxV0kuiDCsBkpCg1."], ["confirmed_at", "2019-08-30 02:46:37.152934"], ["name", "Lina Ginster"], ["email", "angel_becker@fayhodkiewicz.co"], ["created_at", "2019-08-30 02:46:37.154809"], ["updated_at", "2019-08-30 02:46:37.154809"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:46:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"angel_becker@fayhodkiewicz.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "angel_becker@fayhodkiewicz.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"okS3WJTHMBBURn31EDR8QA\":{\"token\":\"$2a$10$pre/CeYeNPyV1A3/RhnIrumxtbYKyPyhf5Ndp7BbfO78.hzDMpXIy\",\"expiry\":1568342797,\"updated_at\":\"2019-08-30 02:46:37 UTC\"}}"], ["updated_at", "2019-08-30 02:46:37.218768"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 02:46:37.222228"], ["last_sign_in_at", "2019-08-30 02:46:37.222228"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 02:46:37.222691"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tana.klocko@damore.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tana.klocko@damore.io"], ["encrypted_password", "$2a$04$BcTPe8Dd996Ar3WSiCX.je4y65sbx7ZCxAyaOUWa7McXNaWwKl30C"], ["confirmed_at", "2019-08-30 02:46:37.231268"], ["name", "Abbie Birthday"], ["email", "tana.klocko@damore.io"], ["created_at", "2019-08-30 02:46:37.232126"], ["updated_at", "2019-08-30 02:46:37.232126"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:46:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tana.klocko@damore.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tana.klocko@damore.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lane_grimes@nitzsche.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lane_grimes@nitzsche.co"], ["encrypted_password", "$2a$04$iKP58yaRtjys7V4UP5MiXuc91Tzzo27BIQzQIMVrIVMsWpKkXSjxm"], ["confirmation_token", "uEJz3Xfzz2feDUeS8cMj"], ["confirmation_sent_at", "2019-08-30 02:46:37.242355"], ["name", "Clara Nett"], ["email", "lane_grimes@nitzsche.co"], ["created_at", "2019-08-30 02:46:37.242259"], ["updated_at", "2019-08-30 02:46:37.242259"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:46:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lane_grimes@nitzsche.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lane_grimes@nitzsche.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rico@mills.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rico@mills.org"], ["encrypted_password", "$2a$04$GWOq0PCmYENpfnC4s8mJQejMIvjmD6MXTSyGZ1tqNNRmS20XI0wQu"], ["confirmed_at", "2019-08-30 02:46:37.250246"], ["locked_at", "2019-08-30 02:46:37.250269"], ["name", "Rocky Rhoades"], ["email", "rico@mills.org"], ["created_at", "2019-08-30 02:46:37.251367"], ["updated_at", "2019-08-30 02:46:37.251367"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:46:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rico@mills.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rico@mills.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eddie_runolfon@jenkins.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "eddie_runolfon@jenkins.name"], ["encrypted_password", "$2a$04$nIRPQZKdJF7VY2mtKCwlSOgIQ0a3ABV31ZLK9CxAu/9iJ3C2ueN3i"], ["confirmed_at", "2019-08-30 02:46:37.259220"], ["name", "Sonny Day"], ["email", "eddie_runolfon@jenkins.name"], ["created_at", "2019-08-30 02:46:37.260116"], ["updated_at", "2019-08-30 02:46:37.260116"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 21:46:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"eddie_runolfon@jenkins.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "eddie_runolfon@jenkins.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "luvenia@schimmel.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "luvenia@schimmel.net"], ["encrypted_password", "$2a$04$jeJg5zHqDpMZ9Sv0raW.AOKx60v7YmN8QNwCLZF5ixvjZuMUHIreS"], ["confirmed_at", "2019-08-30 03:12:34.729202"], ["name", "Katy Litter"], ["email", "luvenia@schimmel.net"], ["created_at", "2019-08-30 03:12:34.731137"], ["updated_at", "2019-08-30 03:12:34.731137"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:12:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"luvenia@schimmel.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "luvenia@schimmel.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mC22cF0jAG9CFGBTfl7sXA\":{\"token\":\"$2a$10$UGxfjGCneJcN54i8skslWutFfWsX/cqBQQLlF8dAfKOQy/wjKHF2q\",\"expiry\":1568344354,\"updated_at\":\"2019-08-30 03:12:34 UTC\"}}"], ["updated_at", "2019-08-30 03:12:34.804604"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 03:12:34.807851"], ["last_sign_in_at", "2019-08-30 03:12:34.807851"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 03:12:34.808158"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 63ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mohammad_homenick@hackett.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mohammad_homenick@hackett.org"], ["encrypted_password", "$2a$04$e6tAQ6WkWMM384BJO92QHOkBq2lXgBbIHcNjs1sEtkcZI0Z6SLqBe"], ["confirmed_at", "2019-08-30 03:12:34.815665"], ["name", "Lowden Clear"], ["email", "mohammad_homenick@hackett.org"], ["created_at", "2019-08-30 03:12:34.816516"], ["updated_at", "2019-08-30 03:12:34.816516"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:12:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"mohammad_homenick@hackett.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mohammad_homenick@hackett.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "porfirio@vandervort.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "porfirio@vandervort.com"], ["encrypted_password", "$2a$04$fmQ.pEyg7kqfAX8aFrBWcuyIzdshR0r.CD/Bd3bJSyH/pvACBg/A."], ["confirmation_token", "Hb6Jyur39X9R4to6Qspy"], ["confirmation_sent_at", "2019-08-30 03:12:34.826483"], ["name", "Max Power"], ["email", "porfirio@vandervort.com"], ["created_at", "2019-08-30 03:12:34.826395"], ["updated_at", "2019-08-30 03:12:34.826395"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:12:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"porfirio@vandervort.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "porfirio@vandervort.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hong_lakin@batzreynolds.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hong_lakin@batzreynolds.biz"], ["encrypted_password", "$2a$04$dF7KB88Wosk2bQr.uSr8XO4i1miCBOvYoRKKno51It85i3stkiaTi"], ["confirmed_at", "2019-08-30 03:12:34.833080"], ["locked_at", "2019-08-30 03:12:34.833100"], ["name", "Annie Matter"], ["email", "hong_lakin@batzreynolds.biz"], ["created_at", "2019-08-30 03:12:34.833972"], ["updated_at", "2019-08-30 03:12:34.833972"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:12:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"hong_lakin@batzreynolds.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hong_lakin@batzreynolds.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "harrison@oreilly.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "harrison@oreilly.net"], ["encrypted_password", "$2a$04$Nqo4z/II9GgNTDvWG9plaO6Ih36g4fdUTSPXzLz78wikkMSLFcs6G"], ["confirmed_at", "2019-08-30 03:12:34.841197"], ["name", "Jack Tupp"], ["email", "harrison@oreilly.net"], ["created_at", "2019-08-30 03:12:34.842118"], ["updated_at", "2019-08-30 03:12:34.842118"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:12:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"harrison@oreilly.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "harrison@oreilly.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:25:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms)  (0.0ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:26:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 627ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.0ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:26:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 634ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "noelle@harris.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "noelle@harris.org"], ["encrypted_password", "$2a$04$rOr3kDR.qfpgHFoKljk4R.3L.Wh2dS56R3zliYW3Tmizytll63POG"], ["confirmed_at", "2019-08-30 03:26:45.768588"], ["name", "Braxton Hicks"], ["email", "noelle@harris.org"], ["created_at", "2019-08-30 03:26:45.770328"], ["updated_at", "2019-08-30 03:26:45.770328"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:26:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 545ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "johnie@paucek.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "johnie@paucek.name"], ["encrypted_password", "$2a$04$qFRKtEtj0MXx6WpYTR8sDeUKwrYTH1qw0FmuRA9YW4YamRqc692D2"], ["confirmed_at", "2019-08-30 03:27:12.647890"], ["name", "Jo King"], ["email", "johnie@paucek.name"], ["created_at", "2019-08-30 03:27:12.653070"], ["updated_at", "2019-08-30 03:27:12.653070"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jacquline@schowalter.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jacquline@schowalter.name"], ["encrypted_password", "$2a$04$xTZzYImn.E9TXckW3hw1geT8pxV978wUs07D0CwPqDc5GOpSELAhy"], ["confirmed_at", "2019-08-30 03:27:44.468820"], ["name", "Mark Mywords"], ["email", "jacquline@schowalter.name"], ["created_at", "2019-08-30 03:27:44.470970"], ["updated_at", "2019-08-30 03:27:44.470970"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"v9-MJWHcnAj3y1V5ZRKQsw\":{\"token\":\"$2a$10$BJbWAMvy5zuQsZUlUuu..e.rbspN.7T0WSvgotOmSUcjcDRTjdjGq\",\"expiry\":1568345264,\"updated_at\":\"2019-08-30 03:27:44 UTC\"}}"], ["updated_at", "2019-08-30 03:27:44.515509"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:27:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jacquline@schowalter.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 03:27:44.584508"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 57ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "timika@carter.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "timika@carter.io"], ["encrypted_password", "$2a$04$EEIWILA555Gg5eZzqRL.RO3PbI6yJm4ol4331ej0nJWQhQrubeGvG"], ["confirmed_at", "2019-08-30 03:29:11.528360"], ["name", "Joy Kil"], ["email", "timika@carter.io"], ["created_at", "2019-08-30 03:29:11.530252"], ["updated_at", "2019-08-30 03:29:11.530252"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CZBTvc0o8AOIZeo-fhlppw\":{\"token\":\"$2a$10$mIF6.L38Z8/WUGg558LVguoWUR65gH2AeMcJJSjlaCPEpBr2DyVXq\",\"expiry\":1568345351,\"updated_at\":\"2019-08-30 03:29:11 UTC\"}}"], ["updated_at", "2019-08-30 03:29:11.573839"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:29:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "timika@carter.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 03:29:11.643491"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hyun_haag@schambergerkling.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hyun_haag@schambergerkling.io"], ["encrypted_password", "$2a$04$2Lfbo6QQppgj88xaXMmQq.JM4ISULn2Fr/imU1etqxHUU5Y6q8bgG"], ["confirmed_at", "2019-08-30 03:32:43.557251"], ["name", "Owen Moore"], ["email", "hyun_haag@schambergerkling.io"], ["created_at", "2019-08-30 03:32:43.559149"], ["updated_at", "2019-08-30 03:32:43.559149"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-C3YuE2UmYO5ye6o8zI8mg\":{\"token\":\"$2a$10$Z29k1p.K4n/uhLB1eruHkemq/0nrO9HE9BFe2pLH/A7e7tXaKHTjW\",\"expiry\":1568345563,\"updated_at\":\"2019-08-30 03:32:43 UTC\"}}"], ["updated_at", "2019-08-30 03:32:43.603911"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:32:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "hyun_haag@schambergerkling.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 03:32:43.674828"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:32:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "josh@hettinger.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "josh@hettinger.net"], ["encrypted_password", "$2a$04$B0GzF29Q43YvHnzpD4g.xO31MWraYV/wtril5e6A6fHuOUwKF/Z7W"], ["confirmed_at", "2019-08-30 03:32:43.687397"], ["name", "Carlotta Tendant"], ["email", "josh@hettinger.net"], ["created_at", "2019-08-30 03:32:43.688325"], ["updated_at", "2019-08-30 03:32:43.688325"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hal@thiel.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hal@thiel.biz"], ["encrypted_password", "$2a$04$MYZDCLYE6XlFxEDxzkso9egUdBKTFJ3Z7J8zFWa691THHrFJ.viDu"], ["confirmed_at", "2019-08-30 03:33:13.107257"], ["name", "Lisa Carr"], ["email", "hal@thiel.biz"], ["created_at", "2019-08-30 03:33:13.109099"], ["updated_at", "2019-08-30 03:33:13.109099"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YvxWQgAhlFEpQCvMDJhgow\":{\"token\":\"$2a$10$mc/ACWKHTHjMf9ZFLLC71ecHwUuncje0g1NYzYRZlHa4r18jeb8z2\",\"expiry\":1568345593,\"updated_at\":\"2019-08-30 03:33:13 UTC\"}}"], ["updated_at", "2019-08-30 03:33:13.158999"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:33:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "hal@thiel.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:33:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "juliane@gusikowski.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "juliane@gusikowski.io"], ["encrypted_password", "$2a$04$AEusryFx135AulyEMLui5.DnKgcUGGA9qsEuZsEr16hgojrM5m5WS"], ["confirmed_at", "2019-08-30 03:33:13.243235"], ["name", "Tommy Gunn"], ["email", "juliane@gusikowski.io"], ["created_at", "2019-08-30 03:33:13.244168"], ["updated_at", "2019-08-30 03:33:13.244168"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "quiana_hickle@lubowitz.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "quiana_hickle@lubowitz.net"], ["encrypted_password", "$2a$04$DFy7nnDpdpcjwyK3OxO.vOxg9jeJ.knanvfG8VBlmLObLcev5H5BC"], ["confirmed_at", "2019-08-30 03:33:25.848108"], ["name", "Emerald Stone"], ["email", "quiana_hickle@lubowitz.net"], ["created_at", "2019-08-30 03:33:25.849891"], ["updated_at", "2019-08-30 03:33:25.849891"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9FVJK3Q4IB1l3u5hVxR64A\":{\"token\":\"$2a$10$KTBnteckNT4oL4BDHiyhfecGPFD/JWSdnKroUO8FX6HLnDgfm/tKq\",\"expiry\":1568345605,\"updated_at\":\"2019-08-30 03:33:25 UTC\"}}"], ["updated_at", "2019-08-30 03:33:25.898660"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:33:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "quiana_hickle@lubowitz.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 03:33:25.968824"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 56ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 22:33:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eduardo@vonruedengutkowski.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "eduardo@vonruedengutkowski.com"], ["encrypted_password", "$2a$04$QG1I9oDYZ7SS3CaTnbCEG.kLpfRjTNWKOPLNzbL5CVtifWo4VhpKm"], ["confirmed_at", "2019-08-30 03:33:25.977735"], ["name", "Rosie Peach"], ["email", "eduardo@vonruedengutkowski.com"], ["created_at", "2019-08-30 03:33:25.978369"], ["updated_at", "2019-08-30 03:33:25.978369"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clark@doyle.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "clark@doyle.net"], ["encrypted_password", "$2a$04$XW0u7ascHO4HtKvDW4q14uNGM0rIEm32fSoa3vnP0YF85OrFEFm9m"], ["confirmed_at", "2019-08-30 04:09:19.618071"], ["name", "Darryl Likt"], ["email", "clark@doyle.net"], ["created_at", "2019-08-30 04:09:19.619900"], ["updated_at", "2019-08-30 04:09:19.619900"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"w3uslPMf92eVRWu89tBikw\":{\"token\":\"$2a$10$DnZKs7cOVaNnnDEy4ZGA8O0JnTx3O9UQLAyLFQ0P0duQbtqB3oE9C\",\"expiry\":1568347759,\"updated_at\":\"2019-08-30 04:09:19 UTC\"}}"], ["updated_at", "2019-08-30 04:09:19.663141"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:09:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "clark@doyle.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:09:19.734922"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:09:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nathan_ernser@langosh.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nathan_ernser@langosh.name"], ["encrypted_password", "$2a$04$0lU3S66kG5YPDW.3KI9KqOprMAyfgD/psPuw41r.7HIjQLZQZ4n5a"], ["confirmed_at", "2019-08-30 04:09:19.744781"], ["name", "Abe Rudder"], ["email", "nathan_ernser@langosh.name"], ["created_at", "2019-08-30 04:09:19.745577"], ["updated_at", "2019-08-30 04:09:19.745577"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "lazaro@bergstromhoeger.biz"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lazaro@bergstromhoeger.biz"], ["encrypted_password", "$2a$04$r4TWSg4JxchySjRb2T/y0uiqHWwdBViqFKZTgMCTPw1m5VcevkjeO"], ["confirmed_at", "2019-08-30 04:31:17.902634"], ["name", "Claire Voyance"], ["email", "lazaro@bergstromhoeger.biz"], ["tokens", "{}"], ["created_at", "2019-08-30 04:31:17.903943"], ["updated_at", "2019-08-30 04:31:17.903943"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:31:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lazaro@bergstromhoeger.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lazaro@bergstromhoeger.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"00kfHD2b-LNj6fmx0YOtfA\":{\"token\":\"$2a$12$CR/kZ.PNq3OthLbcETSgROhFEbTqUpAvsfr6uJ.JLuZ0soosYIz/a\",\"expiry\":1568349078,\"last_token\":null,\"updated_at\":\"2019-08-29T23:31:18.109-05:00\"}}"], ["updated_at", "2019-08-30 04:31:18.110347"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:31:18.115905"], ["last_sign_in_at", "2019-08-30 04:31:18.115905"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:31:18.116466"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 197ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "gaylord@braun.io"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gaylord@braun.io"], ["encrypted_password", "$2a$04$VdXRZvRay4kX8Bguww54ouR6inAXZuJ0HLnEGzbHLHV/zhS1o29U2"], ["confirmed_at", "2019-08-30 04:31:18.126478"], ["name", "Terry Bull"], ["email", "gaylord@braun.io"], ["tokens", "{}"], ["created_at", "2019-08-30 04:31:18.127228"], ["updated_at", "2019-08-30 04:31:18.127228"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:31:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"gaylord@braun.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gaylord@braun.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 04:31:18.131936"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "tamica@moore.net"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "c02d547c96db0b11c8cfe8c31c15856748f114f6702f94570afa2062735a6fc2"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tamica@moore.net"], ["encrypted_password", "$2a$04$yn.Hh6D/yg.aRG8.kBFb3evqgLAKTdwoQvs4s0FEVGcx8Zx19H5aO"], ["confirmation_token", "wFzJAxjxZswb_Nj7qnop"], ["confirmation_sent_at", "2019-08-30 04:31:18.221190"], ["name", "Art Exhibit"], ["email", "tamica@moore.net"], ["tokens", "{}"], ["created_at", "2019-08-30 04:31:18.136189"], ["updated_at", "2019-08-30 04:31:18.136189"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:31:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tamica@moore.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tamica@moore.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "griselda@weinat.org"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "griselda@weinat.org"], ["encrypted_password", "$2a$04$mQBnwctIj6i/vlEJbNNq6e6u7EG88XZ2PdQUaiNV5QcSQ1jGVYgoq"], ["confirmed_at", "2019-08-30 04:31:18.228602"], ["locked_at", "2019-08-30 04:31:18.228614"], ["name", "Art Exhibit"], ["email", "griselda@weinat.org"], ["tokens", "{}"], ["created_at", "2019-08-30 04:31:18.229431"], ["updated_at", "2019-08-30 04:31:18.229431"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:31:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"griselda@weinat.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "griselda@weinat.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "erika_bradtke@towne.info"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "erika_bradtke@towne.info"], ["encrypted_password", "$2a$04$REoMMk7h0CXyN13m6InWxOY1U2fKVGdZ4Xbw2UtFzlFPpLifKvEGe"], ["confirmed_at", "2019-08-30 04:31:18.236140"], ["name", "Emma Royds"], ["email", "erika_bradtke@towne.info"], ["tokens", "{}"], ["created_at", "2019-08-30 04:31:18.236821"], ["updated_at", "2019-08-30 04:31:18.236821"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:31:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"erika_bradtke@towne.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "erika_bradtke@towne.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "ronald_stiedemann@rogahn.net"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ronald_stiedemann@rogahn.net"], ["encrypted_password", "$2a$04$j5TFybhz0UUI4ocX1NZi3eX26j6vVE/k6r3cZ7h2iiYTkOnmPN.da"], ["confirmed_at", "2019-08-30 04:31:18.244427"], ["name", "Armand Hammer"], ["email", "ronald_stiedemann@rogahn.net"], ["tokens", "{}"], ["created_at", "2019-08-30 04:31:18.245444"], ["updated_at", "2019-08-30 04:31:18.245444"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5st9fGoJZZAnzCLSVs2k6Q\":{\"token\":\"$2a$12$dpdcv3IWBStW48BkaVycVO23URFzseByNw/GQeWScYPdj0oyr7y/a\",\"expiry\":1568349078,\"last_token\":null,\"updated_at\":\"2019-08-29T23:31:18.430-05:00\"}}"], ["updated_at", "2019-08-30 04:31:18.430637"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:31:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ronald_stiedemann@rogahn.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 04:31:18.601993"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5st9fGoJZZAnzCLSVs2k6Q\":{\"token\":\"$2a$12$RfdxUAne4tqKmM9x.nEFVOJ/TfahPzWeiXqQXuJmoSCcQjK4A4tEa\",\"expiry\":1568349078,\"last_token\":null,\"updated_at\":\"2019-08-29T23:31:18.776-05:00\"}}"], ["updated_at", "2019-08-30 04:31:18.777398"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 346ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:31:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "frank@bruen.co"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "frank@bruen.co"], ["encrypted_password", "$2a$04$0my.VbiSD2yFEozeFJMCz.nyNk0BUB7tWFxa1qkuCATOvk0CTvqFm"], ["confirmed_at", "2019-08-30 04:31:57.209417"], ["name", "Annie Moore"], ["email", "frank@bruen.co"], ["tokens", "{}"], ["created_at", "2019-08-30 04:31:57.210634"], ["updated_at", "2019-08-30 04:31:57.210634"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "corie@leffler.name"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "corie@leffler.name"], ["encrypted_password", "$2a$04$KnB//O/kwFa6gFoVe05kUOK3Mky4IlRW/3LNPZ.egmN61urgp4VeC"], ["confirmed_at", "2019-08-30 04:34:13.644730"], ["name", "Rip Tile"], ["email", "corie@leffler.name"], ["tokens", "{}"], ["created_at", "2019-08-30 04:34:13.646082"], ["updated_at", "2019-08-30 04:34:13.646082"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:34:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"corie@leffler.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "corie@leffler.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"qSZtRpX4qBNlBS2viNGbxg\":{\"token\":\"$2a$12$h6RjTmnba/ITkSWe/tKIY.IdACKTQ2meo29eEhlNTY8GWu7lKWbAS\",\"expiry\":1568349253,\"last_token\":null,\"updated_at\":\"2019-08-29T23:34:13.844-05:00\"}}"], ["updated_at", "2019-08-30 04:34:13.845650"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:34:13.850135"], ["last_sign_in_at", "2019-08-30 04:34:13.850135"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:34:13.850503"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 192ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.2ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "dwayne@feeney.co"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dwayne@feeney.co"], ["encrypted_password", "$2a$04$Z55GtIZuKEcRlJCmnQQesed9qUxByScPfYKPJ6iV1cCw3/5dWSj6W"], ["confirmed_at", "2019-08-30 04:34:13.859577"], ["name", "Leo Tarred"], ["email", "dwayne@feeney.co"], ["tokens", "{}"], ["created_at", "2019-08-30 04:34:13.860302"], ["updated_at", "2019-08-30 04:34:13.860302"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:34:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dwayne@feeney.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dwayne@feeney.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 04:34:13.864441"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "rocco@mante.org"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "87fa69817c0fb21e665195a933fa04f3c715d2ebc663da4d2af60ca8713da40f"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rocco@mante.org"], ["encrypted_password", "$2a$04$izBG2mVyMOxRM8BSAX4OCup8PQfqcq6.PXdDAK2cZFfD21iXvRVBW"], ["confirmation_token", "DFi6yHA7VXqVzZYtEy76"], ["confirmation_sent_at", "2019-08-30 04:34:13.949141"], ["name", "Sal Minella"], ["email", "rocco@mante.org"], ["tokens", "{}"], ["created_at", "2019-08-30 04:34:13.868429"], ["updated_at", "2019-08-30 04:34:13.868429"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:34:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rocco@mante.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rocco@mante.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "marylin@monahan.biz"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "marylin@monahan.biz"], ["encrypted_password", "$2a$04$IFa0/Y23pgdqsikFZ1TzK.1M0wOl/fko2tUgC8Oguys1pMeZLxr2a"], ["confirmed_at", "2019-08-30 04:34:13.956550"], ["locked_at", "2019-08-30 04:34:13.956563"], ["name", "Val Veeta"], ["email", "marylin@monahan.biz"], ["tokens", "{}"], ["created_at", "2019-08-30 04:34:13.957417"], ["updated_at", "2019-08-30 04:34:13.957417"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:34:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"marylin@monahan.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marylin@monahan.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "arlen_stiedemann@lemke.biz"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "arlen_stiedemann@lemke.biz"], ["encrypted_password", "$2a$04$skh8/gHNX8AsO7HB5u92t.5hgOkqQczf31K69uBHodfaV3QPSg51a"], ["confirmed_at", "2019-08-30 04:34:13.964890"], ["name", "Katy Litter"], ["email", "arlen_stiedemann@lemke.biz"], ["tokens", "{}"], ["created_at", "2019-08-30 04:34:13.965754"], ["updated_at", "2019-08-30 04:34:13.965754"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:34:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"arlen_stiedemann@lemke.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "arlen_stiedemann@lemke.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "paige@nicolaslakin.info"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "paige@nicolaslakin.info"], ["encrypted_password", "$2a$04$rRLZNX0Ts/wkkdtiFnAY0u6cuDItdmywy9RzEK0F5pedbOjmRfogu"], ["confirmed_at", "2019-08-30 04:34:13.974285"], ["name", "Lou Briccant"], ["email", "paige@nicolaslakin.info"], ["tokens", "{}"], ["created_at", "2019-08-30 04:34:13.975164"], ["updated_at", "2019-08-30 04:34:13.975164"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"p-44cppV7n046ppWiu2jRw\":{\"token\":\"$2a$12$I6FJtTkbKEtmkk2VQedX/.Om7ml/OCqAxRosGlLm3ZwfjNzQUAtyG\",\"expiry\":1568349254,\"last_token\":null,\"updated_at\":\"2019-08-29T23:34:14.161-05:00\"}}"], ["updated_at", "2019-08-30 04:34:14.161981"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:34:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "paige@nicolaslakin.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 04:34:14.330619"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 168ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:34:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "nicolette_walter@runolfon.info"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nicolette_walter@runolfon.info"], ["encrypted_password", "$2a$04$ufNQMU9E2jOaHm.H6P3cgeB3icAT87j6SRH8yjaUT9jell8iUPOnW"], ["confirmed_at", "2019-08-30 04:34:21.776259"], ["name", "Marshall Law"], ["email", "nicolette_walter@runolfon.info"], ["tokens", "{}"], ["created_at", "2019-08-30 04:34:21.777263"], ["updated_at", "2019-08-30 04:34:21.777263"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "rubie@kerluke.io"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rubie@kerluke.io"], ["encrypted_password", "$2a$04$VToM8.5CFawmRzSZy16v1eUCgUR3jpQIFKh/IqVXg4KUgujLfR4ae"], ["confirmed_at", "2019-08-30 04:41:44.345588"], ["name", "Anna Sasin"], ["email", "rubie@kerluke.io"], ["tokens", "{}"], ["created_at", "2019-08-30 04:41:44.346849"], ["updated_at", "2019-08-30 04:41:44.346849"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:41:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rubie@kerluke.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rubie@kerluke.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"XG3VynoTJHpsI2HHmO5y6w\":{\"token\":\"$2a$12$zSXP4.EI.U0zT.KtLay5L.BPv3MIWbquIGI6hbTxWjzqdB0CG1L1a\",\"expiry\":1568349704,\"last_token\":null,\"updated_at\":\"2019-08-29T23:41:44.546-05:00\"}}"], ["updated_at", "2019-08-30 04:41:44.547167"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:41:44.551555"], ["last_sign_in_at", "2019-08-30 04:41:44.551555"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:41:44.551902"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "anika@raynor.info"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "anika@raynor.info"], ["encrypted_password", "$2a$04$qkFOONO9vLFZhtw70EF4bOTOLNryi6VoQbeZDlJXe8IKwtpJGbj7a"], ["confirmed_at", "2019-08-30 04:41:44.559425"], ["name", "Bea Lowe"], ["email", "anika@raynor.info"], ["tokens", "{}"], ["created_at", "2019-08-30 04:41:44.560204"], ["updated_at", "2019-08-30 04:41:44.560204"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:41:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"anika@raynor.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anika@raynor.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 04:41:44.564414"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "truman@bins.com"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "ef85b9f5ff8d9a6f156a70ad7c070b6a4e28a049297476f89b53f606a18bfe5a"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "truman@bins.com"], ["encrypted_password", "$2a$04$VHqay9XeIY/LKt.JRw5kbOYyi33QO0doL6B6IVj3hqG5MQXa9b4yC"], ["confirmation_token", "_ssxLHVVpPZhGsmYFdta"], ["confirmation_sent_at", "2019-08-30 04:41:44.649142"], ["name", "Marj Oram"], ["email", "truman@bins.com"], ["tokens", "{}"], ["created_at", "2019-08-30 04:41:44.568394"], ["updated_at", "2019-08-30 04:41:44.568394"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:41:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"truman@bins.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "truman@bins.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "jenny@mcglynn.org"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jenny@mcglynn.org"], ["encrypted_password", "$2a$04$W1sF1x644fR7/VfhNwEIQO4/sLVBZemEj/oInQ58AJq2PshowsmmC"], ["confirmed_at", "2019-08-30 04:41:44.657060"], ["locked_at", "2019-08-30 04:41:44.657085"], ["name", "Walt Smedley"], ["email", "jenny@mcglynn.org"], ["tokens", "{}"], ["created_at", "2019-08-30 04:41:44.657989"], ["updated_at", "2019-08-30 04:41:44.657989"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:41:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jenny@mcglynn.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jenny@mcglynn.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "chadwick@cainprosacco.co"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "chadwick@cainprosacco.co"], ["encrypted_password", "$2a$04$ihbqh6aFN4iOSL5nz2qt0emCrQFe1D8t6k2JIrOOpuu5m1r2kSrjq"], ["confirmed_at", "2019-08-30 04:41:44.666025"], ["name", "Ben O'Drill"], ["email", "chadwick@cainprosacco.co"], ["tokens", "{}"], ["created_at", "2019-08-30 04:41:44.666897"], ["updated_at", "2019-08-30 04:41:44.666897"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:41:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"chadwick@cainprosacco.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "chadwick@cainprosacco.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "darci_raynor@lubowitz.net"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "darci_raynor@lubowitz.net"], ["encrypted_password", "$2a$04$DvvUC5FbRr0s0Ir0BCSKW.L1467uYo.19DpRXadhmfmdBNz6CM8Ba"], ["confirmed_at", "2019-08-30 04:41:44.675231"], ["name", "Tim Burr"], ["email", "darci_raynor@lubowitz.net"], ["tokens", "{}"], ["created_at", "2019-08-30 04:41:44.676165"], ["updated_at", "2019-08-30 04:41:44.676165"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"JY4mV8Hb40EX0ibNKIYSmw\":{\"token\":\"$2a$12$rUlHDir9QuzIGAUXXH2XeuMfTji4aavauySfKssAOPLZzB49tBWtG\",\"expiry\":1568349704,\"last_token\":null,\"updated_at\":\"2019-08-29T23:41:44.861-05:00\"}}"], ["updated_at", "2019-08-30 04:41:44.862138"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:41:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "darci_raynor@lubowitz.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 04:41:45.034022"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 171ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:41:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "gil_kiehn@dibbertlemke.name"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gil_kiehn@dibbertlemke.name"], ["encrypted_password", "$2a$04$bf/9ehCMcQFcPc.AIsHR.OCz2RVrRy6.IhW5.MKee7BxQkQvhVRQy"], ["confirmed_at", "2019-08-30 04:41:47.252971"], ["name", "Neve Adda"], ["email", "gil_kiehn@dibbertlemke.name"], ["tokens", "{}"], ["created_at", "2019-08-30 04:41:47.254007"], ["updated_at", "2019-08-30 04:41:47.254007"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'weston.marks@howe.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Sonny Day"], ["email", "weston.marks@howe.co"], ["encrypted_password", "$2a$04$J2Nn5y9xm164IbtD1gbUdOIlWSLrsFjR1J8rF4HBxAIBj7kR04DOW"], ["confirmed_at", "2019-08-30 04:42:13.311446"], ["uid", "weston.marks@howe.co"], ["created_at", "2019-08-30 04:42:13.324325"], ["updated_at", "2019-08-30 04:42:13.324325"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"weston.marks@howe.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "weston.marks@howe.co"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CcL-rvmSurgs-ZbTMtgllw\":{\"token\":\"$2a$10$lE4tCy6b/TP5ywznUpRwi.V3f7GEyqXSSNt3Waso0WdaRbiJC7w1e\",\"expiry\":1568349733,\"updated_at\":\"2019-08-30 04:42:13 UTC\"}}"], ["updated_at", "2019-08-30 04:42:13.433245"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-30 04:42:13.439712"], ["current_sign_in_at", "2019-08-30 04:42:13.439712"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:42:13.440558"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 79ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'elizebeth@stehrharber.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Rita Story"], ["email", "elizebeth@stehrharber.org"], ["encrypted_password", "$2a$04$4XkUN4VHsJfXbUbeNsajMus9ceZRGUmp.koZyAXcKW.Ce0T5Pi6RG"], ["confirmed_at", "2019-08-30 04:42:13.448558"], ["uid", "elizebeth@stehrharber.org"], ["created_at", "2019-08-30 04:42:13.449405"], ["updated_at", "2019-08-30 04:42:13.449405"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"elizebeth@stehrharber.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "elizebeth@stehrharber.org"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'louisa_nolan@pfannerstillrunolfon.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Adam Zapel"], ["email", "louisa_nolan@pfannerstillrunolfon.info"], ["encrypted_password", "$2a$04$TjRhDxxRvKjwiPcgmdpbOec35Cb54opgxJPjImslLyt7.XlvePo7a"], ["uid", "louisa_nolan@pfannerstillrunolfon.info"], ["created_at", "2019-08-30 04:42:13.461320"], ["updated_at", "2019-08-30 04:42:13.461320"], ["confirmation_token", "3uuC3q56_qNE3ZfC_aBY"], ["confirmation_sent_at", "2019-08-30 04:42:13.461477"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"louisa_nolan@pfannerstillrunolfon.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "louisa_nolan@pfannerstillrunolfon.info"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jesica_haley@marksgorczany.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Frank Enstein"], ["email", "jesica_haley@marksgorczany.net"], ["encrypted_password", "$2a$04$7yZ2oSI6M/ZupgU49R3ZHurwQLxw.GKCbVzYIaWM3ncAbWs0m31Xi"], ["confirmed_at", "2019-08-30 04:42:13.470574"], ["locked_at", "2019-08-30 04:42:13.470640"], ["uid", "jesica_haley@marksgorczany.net"], ["created_at", "2019-08-30 04:42:13.471588"], ["updated_at", "2019-08-30 04:42:13.471588"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jesica_haley@marksgorczany.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "jesica_haley@marksgorczany.net"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'ayesha@koeppweimann.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Hammond Eggs"], ["email", "ayesha@koeppweimann.org"], ["encrypted_password", "$2a$04$.1VUHrKy/XY3gbS.JwfBFeW77X3S0MyRRreyMK00yahzzeClCp/7O"], ["confirmed_at", "2019-08-30 04:42:13.481770"], ["auth_available", "f"], ["uid", "ayesha@koeppweimann.org"], ["created_at", "2019-08-30 04:42:13.482816"], ["updated_at", "2019-08-30 04:42:13.482816"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ayesha@koeppweimann.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "ayesha@koeppweimann.org"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'bridgett@dooley.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Homan Provement"], ["email", "bridgett@dooley.info"], ["encrypted_password", "$2a$04$JU3.btY/pGwo7AYfxUvDie.w92N3RBvbJtOrMU8ZSfKeTHJaGS3Rm"], ["confirmed_at", "2019-08-30 04:42:13.494246"], ["uid", "bridgett@dooley.info"], ["created_at", "2019-08-30 04:42:13.495255"], ["updated_at", "2019-08-30 04:42:13.495255"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bLS23lcWuLJikvBhFC3xGA\":{\"token\":\"$2a$10$CfStShpJYGNzYsN.dv8Moe9R7RQr8UYYQzQtKVMa40APNFWSCMQJ2\",\"expiry\":1568349733,\"updated_at\":\"2019-08-30 04:42:13 UTC\"}}"], ["updated_at", "2019-08-30 04:42:13.553774"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "bridgett@dooley.info"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:42:13.621936"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 62ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'june@muller.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Ilene Left"], ["email", "june@muller.com"], ["encrypted_password", "$2a$04$.TqNuS7aQfvIrSkqnGFMHu9vYgUG7CQggqBpdNUMX5Bxu2TnpwzzC"], ["confirmed_at", "2019-08-30 04:42:13.634123"], ["uid", "june@muller.com"], ["created_at", "2019-08-30 04:42:13.635435"], ["updated_at", "2019-08-30 04:42:13.635435"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "mohammad.heidenreich@stark.com"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mohammad.heidenreich@stark.com"], ["encrypted_password", "$2a$04$rNIWiuiObXfYCHoVyfsVyu345kZm36OSYNvgGKNaA9kiV67cuczZi"], ["confirmed_at", "2019-08-30 04:42:17.325881"], ["name", "Rocky Rhoades"], ["email", "mohammad.heidenreich@stark.com"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:17.327122"], ["updated_at", "2019-08-30 04:42:17.327122"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"mohammad.heidenreich@stark.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mohammad.heidenreich@stark.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3BGUIaWHkODbwB_StOjv2Q\":{\"token\":\"$2a$12$N.iSh9YYmXZO.LIE1pxVAeheDTRrrgFaliDKS5QFV8NWTjw5K6C.y\",\"expiry\":1568349737,\"last_token\":null,\"updated_at\":\"2019-08-29T23:42:17.529-05:00\"}}"], ["updated_at", "2019-08-30 04:42:17.529828"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:42:17.534785"], ["last_sign_in_at", "2019-08-30 04:42:17.534785"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:42:17.535282"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 197ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "marcelina.mclaughlin@macejkovic.co"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "marcelina.mclaughlin@macejkovic.co"], ["encrypted_password", "$2a$04$Yc3loBH2uv2zp6Yco6Dh8eIQjDPfqiKUDGMosIl1rySemsjrt75BO"], ["confirmed_at", "2019-08-30 04:42:17.543482"], ["name", "Iona Ford"], ["email", "marcelina.mclaughlin@macejkovic.co"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:17.544245"], ["updated_at", "2019-08-30 04:42:17.544245"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"marcelina.mclaughlin@macejkovic.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marcelina.mclaughlin@macejkovic.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 04:42:17.548770"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "earnest_luettgen@mraz.org"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "f68767f57974246f914966f31c2ca36db3676d788d454fa22a04b694e53e9e7a"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "earnest_luettgen@mraz.org"], ["encrypted_password", "$2a$04$oOe24e/h.3Gw1gw2GVQ6YejEM7ytEm..8QS1WlwApU/tGNlec4TPm"], ["confirmation_token", "4XzL4fuP84xoe1mZZmYp"], ["confirmation_sent_at", "2019-08-30 04:42:17.645949"], ["name", "Barry Shmelly"], ["email", "earnest_luettgen@mraz.org"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:17.554405"], ["updated_at", "2019-08-30 04:42:17.554405"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"earnest_luettgen@mraz.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "earnest_luettgen@mraz.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "christoper_brekke@schoen.net"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "christoper_brekke@schoen.net"], ["encrypted_password", "$2a$04$q4LFV4lBjlySxpw95Bzq3OHUAzDxTeqpOF9GV5HJdbEIF3eIQBLHy"], ["confirmed_at", "2019-08-30 04:42:17.653247"], ["locked_at", "2019-08-30 04:42:17.653261"], ["name", "Biff Wellington"], ["email", "christoper_brekke@schoen.net"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:17.654081"], ["updated_at", "2019-08-30 04:42:17.654081"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"christoper_brekke@schoen.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "christoper_brekke@schoen.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "suzi.upton@reilly.name"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "suzi.upton@reilly.name"], ["encrypted_password", "$2a$04$USDJLu29zT42r43buNNkpem2Tkxg20JDsWbZvAinHSb9SF0KXvRlO"], ["confirmed_at", "2019-08-30 04:42:17.661762"], ["name", "Jim Laucher"], ["email", "suzi.upton@reilly.name"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:17.662784"], ["updated_at", "2019-08-30 04:42:17.662784"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"suzi.upton@reilly.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "suzi.upton@reilly.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "emilia.rau@mayertoy.co"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "emilia.rau@mayertoy.co"], ["encrypted_password", "$2a$04$0lqMm4HrX5ZK5uUVEjgdpO2X.EXKdIrW2F6/gjY9lriUgumo878cG"], ["confirmed_at", "2019-08-30 04:42:17.671200"], ["name", "Anna Conda"], ["email", "emilia.rau@mayertoy.co"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:17.672277"], ["updated_at", "2019-08-30 04:42:17.672277"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0K2tFhUuErWMS1oSeeI8Aw\":{\"token\":\"$2a$12$3ctnnUmqsWlezHhRFYkotO/sV.6ompgKhvySOHXqpP1o09xPRC0Ay\",\"expiry\":1568349737,\"last_token\":null,\"updated_at\":\"2019-08-29T23:42:17.873-05:00\"}}"], ["updated_at", "2019-08-30 04:42:17.875037"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "emilia.rau@mayertoy.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 04:42:18.078712"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 202ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "sophia@feest.net"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sophia@feest.net"], ["encrypted_password", "$2a$04$wV3zG9ftYEyJGqZelAxgxOTTlNAfOVHaFUziOaIGNRq8S8DoL9a4i"], ["confirmed_at", "2019-08-30 04:42:18.085982"], ["name", "Chris Mass"], ["email", "sophia@feest.net"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:18.086728"], ["updated_at", "2019-08-30 04:42:18.086728"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hermila.ebert@douglasjohns.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hermila.ebert@douglasjohns.name"], ["encrypted_password", "$2a$04$aqR/XzuSy4DkzNiHb2ikR.WMaqWan2sWrXBvnH9zT55KnAmu/GoPy"], ["confirmed_at", "2019-08-30 04:42:21.486679"], ["name", "Artie Choke"], ["email", "hermila.ebert@douglasjohns.name"], ["created_at", "2019-08-30 04:42:21.497395"], ["updated_at", "2019-08-30 04:42:21.497395"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"hermila.ebert@douglasjohns.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hermila.ebert@douglasjohns.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kq-EVFRtylqrFjS-4K3NsQ\":{\"token\":\"$2a$10$BYnDhBZcEEtO7UICCRCHIeBpKjXPIITnNkvIjRlNDxBlOQr4z9ste\",\"expiry\":1568349741,\"updated_at\":\"2019-08-30 04:42:21 UTC\"}}"], ["updated_at", "2019-08-30 04:42:21.572862"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:42:21.578058"], ["last_sign_in_at", "2019-08-30 04:42:21.578058"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:42:21.578532"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 67ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ben@greenmueller.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ben@greenmueller.net"], ["encrypted_password", "$2a$04$DAesQ8uo47YmYfZOn.IgVOXaP0SwgAyE6cQ5CEV2Q1.cwJ1GDnZyq"], ["confirmed_at", "2019-08-30 04:42:21.586205"], ["name", "Ed Venture"], ["email", "ben@greenmueller.net"], ["created_at", "2019-08-30 04:42:21.587077"], ["updated_at", "2019-08-30 04:42:21.587077"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ben@greenmueller.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ben@greenmueller.net"], ["LIMIT", 1]] SQL (0.0ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jacquelyn.donnelly@wunschohara.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jacquelyn.donnelly@wunschohara.com"], ["encrypted_password", "$2a$04$uLi9n0Dc0Lza59ezbZlLkeZcHT2P2Bvc9cTkxDnJfsf1Tt2J3pcP."], ["confirmation_token", "zdugnhe6VWENboF3zEU6"], ["confirmation_sent_at", "2019-08-30 04:42:21.596399"], ["name", "Oren Jellow"], ["email", "jacquelyn.donnelly@wunschohara.com"], ["created_at", "2019-08-30 04:42:21.596320"], ["updated_at", "2019-08-30 04:42:21.596320"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jacquelyn.donnelly@wunschohara.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jacquelyn.donnelly@wunschohara.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "katharine@hartmannschumm.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "katharine@hartmannschumm.info"], ["encrypted_password", "$2a$04$HBIn24ucPSjEv1ZamVKi1.9aYy5cp/Ko.prPbFpW/kNSjPW/aTMQ6"], ["confirmed_at", "2019-08-30 04:42:21.602269"], ["locked_at", "2019-08-30 04:42:21.602278"], ["name", "Ali Katt"], ["email", "katharine@hartmannschumm.info"], ["created_at", "2019-08-30 04:42:21.603021"], ["updated_at", "2019-08-30 04:42:21.603021"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"katharine@hartmannschumm.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "katharine@hartmannschumm.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "warner@hermannreichel.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "warner@hermannreichel.io"], ["encrypted_password", "$2a$04$AwBisndiqEJn.WGZCB4ntufYRCsiNWBZH6aODtWods9afrQc3dIx2"], ["confirmed_at", "2019-08-30 04:42:21.609527"], ["name", "Terry Achey"], ["email", "warner@hermannreichel.io"], ["created_at", "2019-08-30 04:42:21.610380"], ["updated_at", "2019-08-30 04:42:21.610380"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"warner@hermannreichel.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "warner@hermannreichel.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wally.grant@jast.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "wally.grant@jast.io"], ["encrypted_password", "$2a$04$aJOGJwG3kV2azbeKBI35TuMjiyW71L1O02Ponz4hvR4ZPX4dcCLOG"], ["confirmed_at", "2019-08-30 04:42:21.618208"], ["name", "Emerald Stone"], ["email", "wally.grant@jast.io"], ["created_at", "2019-08-30 04:42:21.619184"], ["updated_at", "2019-08-30 04:42:21.619184"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9sDUWk1qAyMh7RsMDGNSpA\":{\"token\":\"$2a$10$Lpu5D0KN7gaE1TygO0.pgOgBOyngwm8qVX8d48avyLOG6Nz/YXpO2\",\"expiry\":1568349741,\"updated_at\":\"2019-08-30 04:42:21 UTC\"}}"], ["updated_at", "2019-08-30 04:42:21.674040"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "wally.grant@jast.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:42:21.724059"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rosina@collierpaucek.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rosina@collierpaucek.io"], ["encrypted_password", "$2a$04$MmEFN8hCIxh2.OAhPlvJm.relBUVKopVV8G98mNoXLkxguxrKuxAK"], ["confirmed_at", "2019-08-30 04:42:21.731702"], ["name", "Raney Schauer"], ["email", "rosina@collierpaucek.io"], ["created_at", "2019-08-30 04:42:21.732598"], ["updated_at", "2019-08-30 04:42:21.732598"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jerold_jakubowski@kunzereichel.info"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "jerold_jakubowski@kunzereichel.info"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jerold_jakubowski@kunzereichel.info"], ["encrypted_password", "$2a$04$4H8Z95/ozsJQdOxcE8E/6u9gTJ9vZlby9HtnA19SVQz2Y5wY9mW0a"], ["confirmed_at", "2019-08-30 04:42:25.421243"], ["name", "Rip Torn"], ["email", "jerold_jakubowski@kunzereichel.info"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:25.426043"], ["updated_at", "2019-08-30 04:42:25.426043"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jerold_jakubowski@kunzereichel.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jerold_jakubowski@kunzereichel.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"eXkA8MfpjNMs-33RQLC1PQ\":{\"token\":\"$2a$12$4pJWHLDOEv9C0HNnlPEak.ZfOXywKX2HIS/DyZu29n4d4zWFz/PBG\",\"expiry\":1568349745,\"last_token\":null,\"updated_at\":\"2019-08-29T23:42:25.629-05:00\"}}"], ["updated_at", "2019-08-30 04:42:25.630249"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:42:25.634007"], ["last_sign_in_at", "2019-08-30 04:42:25.634007"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:42:25.634323"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 192ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "preston_wiza@schinnerjast.name"], ["LIMIT", 1]]  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "preston_wiza@schinnerjast.name"]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "preston_wiza@schinnerjast.name"], ["encrypted_password", "$2a$04$6yygZ6nQ9dJekiz5lw05P.Xd./OFx15hN8Z3Qxt7BLBkzlZlgYAEi"], ["confirmed_at", "2019-08-30 04:42:25.641740"], ["name", "Lou Briccant"], ["email", "preston_wiza@schinnerjast.name"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:25.642684"], ["updated_at", "2019-08-30 04:42:25.642684"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"preston_wiza@schinnerjast.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "preston_wiza@schinnerjast.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 04:42:25.646729"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tamekia.jenkins@kuphal.com"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "tamekia.jenkins@kuphal.com"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tamekia.jenkins@kuphal.com"], ["encrypted_password", "$2a$04$9hyjICXYB.kARA.H8kUYKOUd1s/oYc1r3U6lLMlGEcihn3D3brzDm"], ["confirmation_token", "qU1aJ-bK-FH4e4vRFFEF"], ["confirmation_sent_at", "2019-08-30 04:42:25.652722"], ["name", "Joe Czarfunee"], ["email", "tamekia.jenkins@kuphal.com"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:25.652629"], ["updated_at", "2019-08-30 04:42:25.652629"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tamekia.jenkins@kuphal.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tamekia.jenkins@kuphal.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sindy@connskiles.io"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "sindy@connskiles.io"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sindy@connskiles.io"], ["encrypted_password", "$2a$04$G9ATsvFV08HfMqmC3TjcCuBqwacyeneTmxR1i92uoriDCEOrh0c.e"], ["confirmed_at", "2019-08-30 04:42:25.659903"], ["locked_at", "2019-08-30 04:42:25.659913"], ["name", "Iona Frisbee"], ["email", "sindy@connskiles.io"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:25.660921"], ["updated_at", "2019-08-30 04:42:25.660921"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sindy@connskiles.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sindy@connskiles.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leola_kshlerin@goyettedaniel.name"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "leola_kshlerin@goyettedaniel.name"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "leola_kshlerin@goyettedaniel.name"], ["encrypted_password", "$2a$04$XCcj7CdMETeBZV9b6Sywc.XcEZQEoq7gLg6GOvguZng4FK99Zk8vm"], ["confirmed_at", "2019-08-30 04:42:25.667609"], ["name", "Brooke Waters"], ["email", "leola_kshlerin@goyettedaniel.name"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:25.668638"], ["updated_at", "2019-08-30 04:42:25.668638"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"leola_kshlerin@goyettedaniel.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leola_kshlerin@goyettedaniel.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rebecca@okeefeklein.io"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "rebecca@okeefeklein.io"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rebecca@okeefeklein.io"], ["encrypted_password", "$2a$04$MsMeHIPX.U7xZAraKWDs/OjBCazsp.pdkuhGoOH.p4PaaPxptac7a"], ["confirmed_at", "2019-08-30 04:42:25.676225"], ["name", "Rusty Carr"], ["email", "rebecca@okeefeklein.io"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:25.677542"], ["updated_at", "2019-08-30 04:42:25.677542"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DUxTZzWtP1opjeZhEe2K0g\":{\"token\":\"$2a$12$qpnyxMil1YCguEVqwH0ZEOjvwz.FAnTq09rCdeC/1XXdhM5rt8XXa\",\"expiry\":1568349745,\"last_token\":null,\"updated_at\":\"2019-08-29T23:42:25.865-05:00\"}}"], ["updated_at", "2019-08-30 04:42:25.865836"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "rebecca@okeefeklein.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 04:42:26.035602"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 169ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "daniela.fahey@conn.com"], ["LIMIT", 1]]  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "daniela.fahey@conn.com"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "daniela.fahey@conn.com"], ["encrypted_password", "$2a$04$qQMpUCUJAaUpNWbtpTrqQe6VLcM76Twe7HKWKqfyKRVDosQb9r4dS"], ["confirmed_at", "2019-08-30 04:42:26.043456"], ["name", "Doris Open"], ["email", "daniela.fahey@conn.com"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:26.044509"], ["updated_at", "2019-08-30 04:42:26.044509"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marquis_oberbrunner@heathcote.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marquis_oberbrunner@heathcote.org"], ["encrypted_password", "$2a$04$EzoQ0/ZACbsFakKqVslD8..JOSTbfomZi/7m.W2uCIFe8MD4cIrkm"], ["confirmed_at", "2019-08-30 04:42:29.318444"], ["name", "Diane Toluvia"], ["email", "marquis_oberbrunner@heathcote.org"], ["created_at", "2019-08-30 04:42:29.320252"], ["updated_at", "2019-08-30 04:42:29.320252"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"marquis_oberbrunner@heathcote.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marquis_oberbrunner@heathcote.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Jl3VBh-LNYjrxWOZgZ06aQ\":{\"token\":\"$2a$10$IMb0hpP4mcdq0mHZVafVnu.7eoL3KCdpb.COnB200wf0SVE39sUmu\",\"expiry\":1568349749,\"updated_at\":\"2019-08-30 04:42:29 UTC\"}}"], ["updated_at", "2019-08-30 04:42:29.386996"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:42:29.390971"], ["last_sign_in_at", "2019-08-30 04:42:29.390971"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:42:29.391650"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "courtney_turcotte@hermannzieme.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "courtney_turcotte@hermannzieme.name"], ["encrypted_password", "$2a$04$e77I/crDjvqqDWMdZw1K5uNVRcaBxxqlxi7XW9/0.I5RpTQrtbjPa"], ["confirmed_at", "2019-08-30 04:42:29.400259"], ["name", "Carl Arm"], ["email", "courtney_turcotte@hermannzieme.name"], ["created_at", "2019-08-30 04:42:29.401124"], ["updated_at", "2019-08-30 04:42:29.401124"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"courtney_turcotte@hermannzieme.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "courtney_turcotte@hermannzieme.name"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "trudy@stroman.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "trudy@stroman.info"], ["encrypted_password", "$2a$04$A4CsxPtCBBB2WszI4kv9OOsKfh4PQPIw5dIFq8EpqQv1EM9RD.D0a"], ["confirmation_token", "sCjyUm5N8x6ri6ux3mYt"], ["confirmation_sent_at", "2019-08-30 04:42:29.411407"], ["name", "Otto Whackew"], ["email", "trudy@stroman.info"], ["created_at", "2019-08-30 04:42:29.411317"], ["updated_at", "2019-08-30 04:42:29.411317"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"trudy@stroman.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "trudy@stroman.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shela.gutkowski@marks.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "shela.gutkowski@marks.biz"], ["encrypted_password", "$2a$04$9GEzzReW0k8ACYSbv8PxtOEu9MfZoeOmTzRoNEVsbiPH02BK7i/xe"], ["confirmed_at", "2019-08-30 04:42:29.417889"], ["locked_at", "2019-08-30 04:42:29.417899"], ["name", "Hy Marx"], ["email", "shela.gutkowski@marks.biz"], ["created_at", "2019-08-30 04:42:29.418670"], ["updated_at", "2019-08-30 04:42:29.418670"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"shela.gutkowski@marks.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shela.gutkowski@marks.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tim@botsford.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tim@botsford.biz"], ["encrypted_password", "$2a$04$kV0dYI7KWsw7YIiqZJ6wzeNjnVXOmQoWnY4uHhIPvN51CCM..wZY6"], ["confirmed_at", "2019-08-30 04:42:29.425640"], ["name", "Noah Riddle"], ["email", "tim@botsford.biz"], ["created_at", "2019-08-30 04:42:29.426517"], ["updated_at", "2019-08-30 04:42:29.426517"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tim@botsford.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tim@botsford.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "garrett_jaskolski@feestbruen.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "garrett_jaskolski@feestbruen.net"], ["encrypted_password", "$2a$04$sjeyeucSIskT09SPisOEKOycSOqoTAAhO8Su.6qdEKMJGpQf3TGpK"], ["confirmed_at", "2019-08-30 04:42:29.434587"], ["name", "Hy Lowe"], ["email", "garrett_jaskolski@feestbruen.net"], ["created_at", "2019-08-30 04:42:29.435515"], ["updated_at", "2019-08-30 04:42:29.435515"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"MEZDG9IfhBHbF2NZokAX4Q\":{\"token\":\"$2a$10$Ce0uKz2H4mpsLA6O8p2rn.2irIPjiUKqgR/5nMiRTov6NK8eHq2/.\",\"expiry\":1568349749,\"updated_at\":\"2019-08-30 04:42:29 UTC\"}}"], ["updated_at", "2019-08-30 04:42:29.490632"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "garrett_jaskolski@feestbruen.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:42:29.544703"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lucius.harris@larkinerdman.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lucius.harris@larkinerdman.co"], ["encrypted_password", "$2a$04$jKXtnw/aoGZcTyou.6r83OemJ8Vn3wiSZXBKI/ZIzzhlv72/36CzC"], ["confirmed_at", "2019-08-30 04:42:29.552374"], ["name", "Juan Fortharoad"], ["email", "lucius.harris@larkinerdman.co"], ["created_at", "2019-08-30 04:42:29.553179"], ["updated_at", "2019-08-30 04:42:29.553179"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "garrett@naderdooley.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "garrett@naderdooley.name"], ["encrypted_password", "$2a$04$8Q6vhXPEFapCaXZZ..vhoeQyfKGcqboR9ox/8m4xWnQ600t5mfgeK"], ["confirmed_at", "2019-08-30 04:42:32.889376"], ["name", "Rhea Pollster"], ["email", "garrett@naderdooley.name"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:32.892113"], ["updated_at", "2019-08-30 04:42:32.892113"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"garrett@naderdooley.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "garrett@naderdooley.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Xkow4bPGgN3NO0ble_wR-g\":{\"token\":\"$2a$12$8HdRstItWXEURlszcQECQuu7ZyCviPNZedKqsAv5hbsDzsUM1PFdO\",\"expiry\":1568349752,\"last_token\":null,\"updated_at\":\"2019-08-29T23:42:32.921-05:00\"}}"], ["updated_at", "2019-08-30 04:42:33.100935"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:42:33.103969"], ["last_sign_in_at", "2019-08-30 04:42:33.103969"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:42:33.104223"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 194ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dillon.tromp@vonruedenlittel.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dillon.tromp@vonruedenlittel.name"], ["encrypted_password", "$2a$04$cjI0LC2pxQvGMfLzAW.zruBTUf0iLHvdilueDSmlZPb0PPTwFSdlC"], ["confirmed_at", "2019-08-30 04:42:33.111305"], ["name", "Jack Tupp"], ["email", "dillon.tromp@vonruedenlittel.name"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:33.112062"], ["updated_at", "2019-08-30 04:42:33.112062"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dillon.tromp@vonruedenlittel.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dillon.tromp@vonruedenlittel.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 04:42:33.116358"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fletcher_erdman@sanford.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "fletcher_erdman@sanford.net"], ["encrypted_password", "$2a$04$0Sqpu/Q5B1QO5nskpl8DqOkMTf8RFxkLilI5roQ4tXbAPrauKxJDu"], ["confirmation_token", "RUtWQFsqYxyNqhCvjGCG"], ["confirmation_sent_at", "2019-08-30 04:42:33.120512"], ["name", "Ellie Noise"], ["email", "fletcher_erdman@sanford.net"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:33.120430"], ["updated_at", "2019-08-30 04:42:33.120430"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"fletcher_erdman@sanford.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "fletcher_erdman@sanford.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "archie@hamill.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "archie@hamill.com"], ["encrypted_password", "$2a$04$sCbbXLh6u2VMbNXnuR8XX.d5uqBE9CCSaa4.3P4UYcCieJS1nKzxW"], ["confirmed_at", "2019-08-30 04:42:33.126603"], ["locked_at", "2019-08-30 04:42:33.126611"], ["name", "Rhoda Mule"], ["email", "archie@hamill.com"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:33.127313"], ["updated_at", "2019-08-30 04:42:33.127313"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"archie@hamill.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "archie@hamill.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brittny_ankunding@white.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "brittny_ankunding@white.co"], ["encrypted_password", "$2a$04$MTwi2cEJGkXsgOAMnB5nJuPy3cdVA3UsZcofezaYsVM6b3cb8RZku"], ["confirmed_at", "2019-08-30 04:42:33.134041"], ["name", "Barry Shmelly"], ["email", "brittny_ankunding@white.co"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:33.134895"], ["updated_at", "2019-08-30 04:42:33.134895"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"brittny_ankunding@white.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "brittny_ankunding@white.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "graham.olson@mannwitting.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "graham.olson@mannwitting.info"], ["encrypted_password", "$2a$04$fXiyqNxdB5IDhhfFqzR.oOYOY857F2GWlN8XIkW6w1Vtzxo4n3gge"], ["confirmed_at", "2019-08-30 04:42:33.142960"], ["name", "Daisy Chain"], ["email", "graham.olson@mannwitting.info"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:33.144698"], ["updated_at", "2019-08-30 04:42:33.144698"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3I2ut32adUUdWpqlKUo8ww\":{\"token\":\"$2a$12$dIWVCFREfCNEnLPofFxC8udPS2UZPWXTcltk99yYcg5eqmWowmyey\",\"expiry\":1568349753,\"last_token\":null,\"updated_at\":\"2019-08-29T23:42:33.146-05:00\"}}"], ["updated_at", "2019-08-30 04:42:33.329736"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "graham.olson@mannwitting.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 04:42:33.499799"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 169ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "will.mayert@roob.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "will.mayert@roob.name"], ["encrypted_password", "$2a$04$Z5RfGAXlG6ZAu6UPzFj3veDus7K4gesBV1k4W38EdQgiAej2ZrG6u"], ["confirmed_at", "2019-08-30 04:42:33.507643"], ["name", "Kenny Dewitt"], ["email", "will.mayert@roob.name"], ["tokens", "{}"], ["created_at", "2019-08-30 04:42:33.508401"], ["updated_at", "2019-08-30 04:42:33.508401"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kevin@schmidtabbott.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kevin@schmidtabbott.com"], ["encrypted_password", "$2a$04$ZhDlVoyNvD6pfEp6uH6IiOiyuQYq/oMeROONU1eBxg/YUvV2r9mz6"], ["confirmed_at", "2019-08-30 04:42:36.808365"], ["name", "Izzy Backyet"], ["email", "kevin@schmidtabbott.com"], ["created_at", "2019-08-30 04:42:36.810398"], ["updated_at", "2019-08-30 04:42:36.810398"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kevin@schmidtabbott.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kevin@schmidtabbott.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Q3r-0PUMVb1bn0wv_D1gvA\":{\"token\":\"$2a$10$nqjMVMOJ/elr.qemz0EOTOVA2GqkfDsJzXDxCwJsZS4FxMBzX7RDS\",\"expiry\":1568349756,\"updated_at\":\"2019-08-30 04:42:36 UTC\"}}"], ["updated_at", "2019-08-30 04:42:36.881565"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:42:36.884422"], ["last_sign_in_at", "2019-08-30 04:42:36.884422"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:42:36.884727"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 62ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bud.anderson@hansen.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bud.anderson@hansen.net"], ["encrypted_password", "$2a$04$ggdps8nWG72w2IzZ.NIUde/b3c.XoN.wV/hoHMpZ2WSuLrvmnx2.2"], ["confirmed_at", "2019-08-30 04:42:36.892706"], ["name", "Tad Moore"], ["email", "bud.anderson@hansen.net"], ["created_at", "2019-08-30 04:42:36.893596"], ["updated_at", "2019-08-30 04:42:36.893596"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"bud.anderson@hansen.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bud.anderson@hansen.net"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "michelina_ebert@schmidtwillms.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "michelina_ebert@schmidtwillms.org"], ["encrypted_password", "$2a$04$j/doRNy.n8e4YGetUhQ/fO8MT1TtJd57l9Gvgb7QzJH5WNgAqwb2K"], ["confirmation_token", "cBzkAquMtoWQnyNntFzP"], ["confirmation_sent_at", "2019-08-30 04:42:36.903124"], ["name", "Joe King"], ["email", "michelina_ebert@schmidtwillms.org"], ["created_at", "2019-08-30 04:42:36.903041"], ["updated_at", "2019-08-30 04:42:36.903041"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"michelina_ebert@schmidtwillms.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michelina_ebert@schmidtwillms.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mohammed@kertzmann.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mohammed@kertzmann.net"], ["encrypted_password", "$2a$04$AKblv7PeyI3wPTdCRNtwEuQNFBPkjEkZPzrqwR8H7JPq.jCWdnGDW"], ["confirmed_at", "2019-08-30 04:42:36.909533"], ["locked_at", "2019-08-30 04:42:36.909543"], ["name", "Polly Ester"], ["email", "mohammed@kertzmann.net"], ["created_at", "2019-08-30 04:42:36.910323"], ["updated_at", "2019-08-30 04:42:36.910323"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"mohammed@kertzmann.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mohammed@kertzmann.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kip@wardgerhold.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kip@wardgerhold.org"], ["encrypted_password", "$2a$04$qYox1RW/psyOw3q9B5bbvuA6HzHMOSgIHJYsjX8b65JCtmLJW7HFu"], ["confirmed_at", "2019-08-30 04:42:36.917414"], ["name", "Owen Big"], ["email", "kip@wardgerhold.org"], ["created_at", "2019-08-30 04:42:36.918286"], ["updated_at", "2019-08-30 04:42:36.918286"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kip@wardgerhold.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kip@wardgerhold.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "moshe_volkman@friesendare.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "moshe_volkman@friesendare.info"], ["encrypted_password", "$2a$04$f40qdJJUTWhdXXeLfEon9uv2sG/hx1oXbyXBbZxvMOrxZQ5bClcUq"], ["confirmed_at", "2019-08-30 04:42:36.926588"], ["name", "Ali Gator"], ["email", "moshe_volkman@friesendare.info"], ["created_at", "2019-08-30 04:42:36.927514"], ["updated_at", "2019-08-30 04:42:36.927514"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"wYd-g3sn0uFXY4d22s8llQ\":{\"token\":\"$2a$10$2KMeK3zKMWA98.rTIeOYIeHKaFEQjHfJyfd07opaLGRVfuezos/nS\",\"expiry\":1568349756,\"updated_at\":\"2019-08-30 04:42:36 UTC\"}}"], ["updated_at", "2019-08-30 04:42:36.982666"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "moshe_volkman@friesendare.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:42:37.037648"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chung@mayer.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "chung@mayer.info"], ["encrypted_password", "$2a$04$lj2Vka8Lv3DA84uuln407u6AMFkxHALMc6IXovhDndFagHBHvl8cm"], ["confirmed_at", "2019-08-30 04:42:37.045799"], ["name", "Ilene East"], ["email", "chung@mayer.info"], ["created_at", "2019-08-30 04:42:37.046857"], ["updated_at", "2019-08-30 04:42:37.046857"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (1.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "miles.schaefer@rath.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "miles.schaefer@rath.info"], ["encrypted_password", "$2a$04$biK326eQeppWACyQNn/g0.THteA6NCc7BGJJo/A/GoJHDp4wbnxtm"], ["confirmed_at", "2019-08-30 04:42:40.541761"], ["name", "Nick O'Time"], ["email", "miles.schaefer@rath.info"], ["created_at", "2019-08-30 04:42:40.543128"], ["updated_at", "2019-08-30 04:42:40.543128"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"miles.schaefer@rath.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "miles.schaefer@rath.info"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"M4Rlpgzp_hjWsUklvrkN_A\":{\"token\":\"$2a$10$4C6xE2cjrJ4zXGVxNC.vrOZrSdFIqR4LLyAf8BmhPPTVBzb3qpGWO\",\"expiry\":1568349760,\"updated_at\":\"2019-08-30 04:42:40 UTC\"}}"], ["updated_at", "2019-08-30 04:42:40.618106"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:42:40.620934"], ["last_sign_in_at", "2019-08-30 04:42:40.620934"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:42:40.621118"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 62ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 11928) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "melda_wolf@kertzmannkertzmann.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "melda_wolf@kertzmannkertzmann.io"], ["encrypted_password", "$2a$04$N4R4E5gO.fG2goqf8sqJmubenii/A6lSPDime4zcy8hsfhiByp6zi"], ["confirmed_at", "2019-08-30 04:42:40.628379"], ["name", "Kristie Hannity"], ["email", "melda_wolf@kertzmannkertzmann.io"], ["created_at", "2019-08-30 04:42:40.629171"], ["updated_at", "2019-08-30 04:42:40.629171"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"melda_wolf@kertzmannkertzmann.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "melda_wolf@kertzmannkertzmann.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2055) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alonso.grimes@cain.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alonso.grimes@cain.net"], ["encrypted_password", "$2a$04$rjLzaV75AyuByZZBY/Xyme/.U1Qb3ym/YL.hFS7mQq3GPgAoaBUUS"], ["confirmation_token", "sufu8KqR67s_ty7em1UJ"], ["confirmation_sent_at", "2019-08-30 04:42:40.638476"], ["name", "Dan Deline"], ["email", "alonso.grimes@cain.net"], ["created_at", "2019-08-30 04:42:40.638406"], ["updated_at", "2019-08-30 04:42:40.638406"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"alonso.grimes@cain.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alonso.grimes@cain.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1406) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dougla.dare@kohler.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dougla.dare@kohler.info"], ["encrypted_password", "$2a$04$D9IqlZWEFIG0/UsIp7NU7ufOIwLdoPebQTBFTZHZKgdwZ5ITZuBEu"], ["confirmed_at", "2019-08-30 04:42:40.644504"], ["locked_at", "2019-08-30 04:42:40.644513"], ["name", "Billy Rubin"], ["email", "dougla.dare@kohler.info"], ["created_at", "2019-08-30 04:42:40.645204"], ["updated_at", "2019-08-30 04:42:40.645204"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dougla.dare@kohler.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dougla.dare@kohler.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1425) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sidney@swiftherman.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sidney@swiftherman.co"], ["encrypted_password", "$2a$04$NUdSV58Hh2GwO3XcInEny.0ie6fn02CyAWXX.vnKp0mWKmvlyAfqm"], ["confirmed_at", "2019-08-30 04:42:40.652320"], ["name", "Bart Ender"], ["email", "sidney@swiftherman.co"], ["created_at", "2019-08-30 04:42:40.653171"], ["updated_at", "2019-08-30 04:42:40.653171"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sidney@swiftherman.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sidney@swiftherman.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1404) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jude.hackett@tremblay.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jude.hackett@tremblay.net"], ["encrypted_password", "$2a$04$brCb5s3OmOy6GZ2tnR9/KeLsr1or21xIJnJQxD9VjPFKAMRtjYZ0m"], ["confirmed_at", "2019-08-30 04:42:40.661395"], ["name", "Clara Sabell"], ["email", "jude.hackett@tremblay.net"], ["created_at", "2019-08-30 04:42:40.662332"], ["updated_at", "2019-08-30 04:42:40.662332"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"m59fqgh99YaHxFKqvWR3-g\":{\"token\":\"$2a$10$3YgPqQuGXEOQpzl52gj8gOl/7qUoIwQHSmxIb8TNL9Avckd654zPC\",\"expiry\":1568349760,\"updated_at\":\"2019-08-30 04:42:40 UTC\"}}"], ["updated_at", "2019-08-30 04:42:40.716466"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jude.hackett@tremblay.net"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:42:40.769988"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 54ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 1972) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:42:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1002) TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "idalia@bergstrom.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "idalia@bergstrom.net"], ["encrypted_password", "$2a$04$OApz38eJMjZXmgazeTuOCOrJJ5wo0z9eQ9Ksi8UrDrguVIH14lxvW"], ["confirmed_at", "2019-08-30 04:42:40.779772"], ["name", "Frank Furter"], ["email", "idalia@bergstrom.net"], ["created_at", "2019-08-30 04:42:40.780665"], ["updated_at", "2019-08-30 04:42:40.780665"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'rufus@mrazrolfson.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Rex Karrs"], ["email", "rufus@mrazrolfson.io"], ["encrypted_password", "$2a$04$l1bKpnintKHjDO/aR.ysfOUDIkux.Lu8Lpk.NU87T9ke1feHdxWCq"], ["confirmed_at", "2019-08-30 04:45:51.649325"], ["uid", "rufus@mrazrolfson.io"], ["created_at", "2019-08-30 04:45:51.658001"], ["updated_at", "2019-08-30 04:45:51.658001"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rufus@mrazrolfson.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "rufus@mrazrolfson.io"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"vbePRwguIBjkzAzP12wPjA\":{\"token\":\"$2a$10$AmIUZea4HiBcpQKugu/HWOavxVFws5DiG9mEcn0mkKMmoE4eNBWna\",\"expiry\":1568349951,\"updated_at\":\"2019-08-30 04:45:51 UTC\"}}"], ["updated_at", "2019-08-30 04:45:51.759504"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-30 04:45:51.764027"], ["current_sign_in_at", "2019-08-30 04:45:51.764027"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:45:51.764444"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 70ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jeie@kautzerlarkin.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Milton Yermouth"], ["email", "jeie@kautzerlarkin.info"], ["encrypted_password", "$2a$04$2xY5NaOXjYHBLO8jLNUPC.sNgoXvk9efwHdg91n63DAd0IiBUHFwC"], ["confirmed_at", "2019-08-30 04:45:51.771083"], ["uid", "jeie@kautzerlarkin.info"], ["created_at", "2019-08-30 04:45:51.771935"], ["updated_at", "2019-08-30 04:45:51.771935"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jeie@kautzerlarkin.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "jeie@kautzerlarkin.info"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'phoebe.grimes@mcclure.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Misty Meanor"], ["email", "phoebe.grimes@mcclure.co"], ["encrypted_password", "$2a$04$CO0g2N5zO/Msqw6Khm7hpeFPbr.VNxp19eU0PIihdJGutm.5w.oBG"], ["uid", "phoebe.grimes@mcclure.co"], ["created_at", "2019-08-30 04:45:51.783448"], ["updated_at", "2019-08-30 04:45:51.783448"], ["confirmation_token", "JK8kuQT9xsV75UzqAbb3"], ["confirmation_sent_at", "2019-08-30 04:45:51.783602"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"phoebe.grimes@mcclure.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "phoebe.grimes@mcclure.co"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'vernon@hartmann.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Mitch Again"], ["email", "vernon@hartmann.org"], ["encrypted_password", "$2a$04$3b8iBQ9Jr16Q08EqIjCLSOSN4iX6EyupyYMdpY9j/1ccRHbTqA.ca"], ["confirmed_at", "2019-08-30 04:45:51.793233"], ["locked_at", "2019-08-30 04:45:51.793348"], ["uid", "vernon@hartmann.org"], ["created_at", "2019-08-30 04:45:51.794443"], ["updated_at", "2019-08-30 04:45:51.794443"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"vernon@hartmann.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "vernon@hartmann.org"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'carey@auer.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Ed Ible"], ["email", "carey@auer.co"], ["encrypted_password", "$2a$04$8y5Vy.M1XVbNsULMKJOhfusYo9ATduN0VpydoFr1fFIU3PSZxg9qS"], ["confirmed_at", "2019-08-30 04:45:51.804865"], ["auth_available", "f"], ["uid", "carey@auer.co"], ["created_at", "2019-08-30 04:45:51.806247"], ["updated_at", "2019-08-30 04:45:51.806247"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"carey@auer.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "carey@auer.co"]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'lauren_denesik@rippinthompson.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Mary Thonn"], ["email", "lauren_denesik@rippinthompson.info"], ["encrypted_password", "$2a$04$O/Mu/q8gxj1m8TjppX1pA.DIPUlXYLnsO5jc09ycyTFm3bxPjWSRG"], ["confirmed_at", "2019-08-30 04:45:51.818459"], ["uid", "lauren_denesik@rippinthompson.info"], ["created_at", "2019-08-30 04:45:51.819464"], ["updated_at", "2019-08-30 04:45:51.819464"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kXq91QYvU9JwbWhlr_dn5w\":{\"token\":\"$2a$10$aaDwNiBbTr81thBb0GTiU.F7i6LioBQEf7QEPas/GSaokhe405bIu\",\"expiry\":1568349951,\"updated_at\":\"2019-08-30 04:45:51 UTC\"}}"], ["updated_at", "2019-08-30 04:45:51.874977"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "lauren_denesik@rippinthompson.info"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:45:51.933878"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'paula@thompson.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Emile Eaton"], ["email", "paula@thompson.info"], ["encrypted_password", "$2a$04$ICPhl.CtEAss1gGCJxE6W.Wr5jDSFMYz5CEz1NWkYsNjEAyUjzQpC"], ["confirmed_at", "2019-08-30 04:45:51.943135"], ["uid", "paula@thompson.info"], ["created_at", "2019-08-30 04:45:51.943985"], ["updated_at", "2019-08-30 04:45:51.943985"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "emanuel_cormier@cummings.name"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "emanuel_cormier@cummings.name"], ["encrypted_password", "$2a$04$vSkg8lnSwTTgdWvE8gv.b.6j3JU1ASKNQJovZgJYU6r6ISCYYoJka"], ["confirmed_at", "2019-08-30 04:45:55.242608"], ["name", "Ilene Wright"], ["email", "emanuel_cormier@cummings.name"], ["tokens", "{}"], ["created_at", "2019-08-30 04:45:55.243983"], ["updated_at", "2019-08-30 04:45:55.243983"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"emanuel_cormier@cummings.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "emanuel_cormier@cummings.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kwJ2FvdKMU6WMkPyxv2CTg\":{\"token\":\"$2a$12$Gx1W4B8gb/Sbboj7Z1Iha.cIAZeeFCYlUFsdqoU9.0wdZ3z/ml1Qe\",\"expiry\":1568349955,\"last_token\":null,\"updated_at\":\"2019-08-29T23:45:55.443-05:00\"}}"], ["updated_at", "2019-08-30 04:45:55.443806"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:45:55.448899"], ["last_sign_in_at", "2019-08-30 04:45:55.448899"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:45:55.449280"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 192ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "delmy.fadel@cain.io"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "delmy.fadel@cain.io"], ["encrypted_password", "$2a$04$hP2TEffHb58boYzqBl9Jse5xTmX/CJK0vTQuxK1S7NaLInv73le5G"], ["confirmed_at", "2019-08-30 04:45:55.457978"], ["name", "Cole Kutz"], ["email", "delmy.fadel@cain.io"], ["tokens", "{}"], ["created_at", "2019-08-30 04:45:55.459056"], ["updated_at", "2019-08-30 04:45:55.459056"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"delmy.fadel@cain.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "delmy.fadel@cain.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 04:45:55.464720"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "thad@feeney.com"]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "660725751b67760c294bda7c9074d240a724aa98133ccb968945c97bf87af676"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "thad@feeney.com"], ["encrypted_password", "$2a$04$enVJ2VIML3HBNYhPuxXWVO1J0t2FEHX/vCG25vewC8kZ1Tz6Kj3zm"], ["confirmation_token", "YPV72hAFG1prW3b6YHAK"], ["confirmation_sent_at", "2019-08-30 04:45:55.558146"], ["name", "Herbie Voor"], ["email", "thad@feeney.com"], ["tokens", "{}"], ["created_at", "2019-08-30 04:45:55.469339"], ["updated_at", "2019-08-30 04:45:55.469339"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"thad@feeney.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "thad@feeney.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "virgilio@gusikowski.info"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "virgilio@gusikowski.info"], ["encrypted_password", "$2a$04$bqtRjlVAoLOeJIVgn8NQdOmqHBdHCBuBwm/vokDxBK5U4r4nka7k6"], ["confirmed_at", "2019-08-30 04:45:55.565633"], ["locked_at", "2019-08-30 04:45:55.565647"], ["name", "Brock Lee"], ["email", "virgilio@gusikowski.info"], ["tokens", "{}"], ["created_at", "2019-08-30 04:45:55.566470"], ["updated_at", "2019-08-30 04:45:55.566470"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"virgilio@gusikowski.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "virgilio@gusikowski.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "stanton_doyle@mccullough.co"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "stanton_doyle@mccullough.co"], ["encrypted_password", "$2a$04$0FfyqSQEqrhIhCzoNAXCfuUUMYSuPwBKV9sCijVWfQRW3XMH4HZxy"], ["confirmed_at", "2019-08-30 04:45:55.573310"], ["name", "Sandy Beech"], ["email", "stanton_doyle@mccullough.co"], ["tokens", "{}"], ["created_at", "2019-08-30 04:45:55.574023"], ["updated_at", "2019-08-30 04:45:55.574023"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"stanton_doyle@mccullough.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stanton_doyle@mccullough.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "kelvin@volkman.com"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kelvin@volkman.com"], ["encrypted_password", "$2a$04$t82B1.lWVrBjmcytAsNsJOhogw24gbQqtrt2JWW4I.WP7H/EhYciK"], ["confirmed_at", "2019-08-30 04:45:55.581962"], ["name", "Mel Function"], ["email", "kelvin@volkman.com"], ["tokens", "{}"], ["created_at", "2019-08-30 04:45:55.582907"], ["updated_at", "2019-08-30 04:45:55.582907"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OVKBfZsZ6GVmA41Dd2gLDA\":{\"token\":\"$2a$12$Yfto4EGWYRQzax2HNgeVIu5Z250LRs.0eCD/1xnoN62vjnsFWmCke\",\"expiry\":1568349955,\"last_token\":null,\"updated_at\":\"2019-08-29T23:45:55.773-05:00\"}}"], ["updated_at", "2019-08-30 04:45:55.774096"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kelvin@volkman.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 04:45:55.943242"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 169ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "nadine@bosco.org"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nadine@bosco.org"], ["encrypted_password", "$2a$04$OVu57mBeIKBWKG0mBmRiH.h9J1RMLPrSI2U9B8sshMW3XkZy2qIs2"], ["confirmed_at", "2019-08-30 04:45:55.952614"], ["name", "Cara Van"], ["email", "nadine@bosco.org"], ["tokens", "{}"], ["created_at", "2019-08-30 04:45:55.953442"], ["updated_at", "2019-08-30 04:45:55.953442"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kia@nikolaus.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kia@nikolaus.co"], ["encrypted_password", "$2a$04$W37/Peh57TLhdXeIieQpaetcwg7C98MQEbUiWsAGKCs3U6tDNsM12"], ["confirmed_at", "2019-08-30 04:45:59.330988"], ["name", "Lake Speed"], ["email", "kia@nikolaus.co"], ["created_at", "2019-08-30 04:45:59.336000"], ["updated_at", "2019-08-30 04:45:59.336000"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kia@nikolaus.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kia@nikolaus.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"PeQZWRQVeqQVBJ1oUPpM8A\":{\"token\":\"$2a$10$U6tpcoQrmWw.i8B3aCBG4ek0Idgm8sksFd8m2u7lbcvnSgk2Pt0a6\",\"expiry\":1568349959,\"updated_at\":\"2019-08-30 04:45:59 UTC\"}}"], ["updated_at", "2019-08-30 04:45:59.406748"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:45:59.411303"], ["last_sign_in_at", "2019-08-30 04:45:59.411303"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:45:59.411695"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 62ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "domonique@mayer.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "domonique@mayer.co"], ["encrypted_password", "$2a$04$z1b1EokuTXXMRCbsNELFMe82qqLzdtRacd8Bn/O4Y0J/dcj3azKfG"], ["confirmed_at", "2019-08-30 04:45:59.418663"], ["name", "April Schauer"], ["email", "domonique@mayer.co"], ["created_at", "2019-08-30 04:45:59.419503"], ["updated_at", "2019-08-30 04:45:59.419503"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"domonique@mayer.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "domonique@mayer.co"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lee@erdman.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lee@erdman.org"], ["encrypted_password", "$2a$04$drE66qUU5Bet9voGJeZsFOWZ0W7Vqrg9ldoYmrN.heeVg2vjetI5u"], ["confirmation_token", "odubkk9QYJBTJk4JG-rc"], ["confirmation_sent_at", "2019-08-30 04:45:59.430876"], ["name", "Mabel Syrup"], ["email", "lee@erdman.org"], ["created_at", "2019-08-30 04:45:59.430770"], ["updated_at", "2019-08-30 04:45:59.430770"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lee@erdman.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lee@erdman.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rene@swaniawskihaag.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rene@swaniawskihaag.org"], ["encrypted_password", "$2a$04$b0wBm2KOh4sbUoSLHQwjweu0b2uJdtfStoCLlxN/g5leaJwY5Uafq"], ["confirmed_at", "2019-08-30 04:45:59.437922"], ["locked_at", "2019-08-30 04:45:59.437936"], ["name", "Robin Banks"], ["email", "rene@swaniawskihaag.org"], ["created_at", "2019-08-30 04:45:59.438981"], ["updated_at", "2019-08-30 04:45:59.438981"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rene@swaniawskihaag.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rene@swaniawskihaag.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "matt.mante@littlepredovic.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "matt.mante@littlepredovic.name"], ["encrypted_password", "$2a$04$wOjY4pwfzB8y5D01UtYQoOxg.tsX4uu2cHiwAundZ0tym7XDRqI1i"], ["confirmed_at", "2019-08-30 04:45:59.449415"], ["name", "Noah Riddle"], ["email", "matt.mante@littlepredovic.name"], ["created_at", "2019-08-30 04:45:59.450407"], ["updated_at", "2019-08-30 04:45:59.450407"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"matt.mante@littlepredovic.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "matt.mante@littlepredovic.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "corinne@hartmann.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "corinne@hartmann.name"], ["encrypted_password", "$2a$04$pFttoDvQkonNsVthaGAvIeNN3sb6Sb4KbilPq5mR2QiMmVq8gow92"], ["confirmed_at", "2019-08-30 04:45:59.459125"], ["name", "Bess Twishes"], ["email", "corinne@hartmann.name"], ["created_at", "2019-08-30 04:45:59.460055"], ["updated_at", "2019-08-30 04:45:59.460055"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"wB_nRdiffiwlLfisr0ahrQ\":{\"token\":\"$2a$10$DyOWkxs7EzqrbHPz0iyvXes4/iW.k0kJ26eNgXQxrbHujjtvO/2tO\",\"expiry\":1568349959,\"updated_at\":\"2019-08-30 04:45:59 UTC\"}}"], ["updated_at", "2019-08-30 04:45:59.517019"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "corinne@hartmann.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:45:59.567392"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:45:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clemente@hermanbotsford.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "clemente@hermanbotsford.net"], ["encrypted_password", "$2a$04$pneqH6AGTlQQED8X3cn.R.poWx5HjWSVujtKAbFcIpKGaONuxAPl6"], ["confirmed_at", "2019-08-30 04:45:59.574467"], ["name", "Iona Corolla"], ["email", "clemente@hermanbotsford.net"], ["created_at", "2019-08-30 04:45:59.575261"], ["updated_at", "2019-08-30 04:45:59.575261"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris.volkman@shanahan.biz"], ["LIMIT", 1]]  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "kris.volkman@shanahan.biz"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kris.volkman@shanahan.biz"], ["encrypted_password", "$2a$04$gTjB0p81xf14se2C5RLNveb/PxwpHXd3.eaNcokejXhrD1QNQbvWe"], ["confirmed_at", "2019-08-30 04:46:02.824436"], ["name", "Ayma Moron"], ["email", "kris.volkman@shanahan.biz"], ["tokens", "{}"], ["created_at", "2019-08-30 04:46:02.827286"], ["updated_at", "2019-08-30 04:46:02.827286"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kris.volkman@shanahan.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris.volkman@shanahan.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"I6jjhDpYX5gu4jUPreJ9OA\":{\"token\":\"$2a$12$yj6QHr9mJRIFypqSHlTBtOp0cml2pCIwX7jyRFzZopbz1jMXvDQg.\",\"expiry\":1568349963,\"last_token\":null,\"updated_at\":\"2019-08-29T23:46:03.024-05:00\"}}"], ["updated_at", "2019-08-30 04:46:03.024833"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:46:03.028356"], ["last_sign_in_at", "2019-08-30 04:46:03.028356"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:46:03.028677"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 190ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rema_rowe@harrisharvey.info"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "rema_rowe@harrisharvey.info"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rema_rowe@harrisharvey.info"], ["encrypted_password", "$2a$04$sh8nV.55PnxhKoBFn3/vDO1Ak45cUxHa.sZXd8jfCCV6DbaZ7TqQS"], ["confirmed_at", "2019-08-30 04:46:03.037653"], ["name", "Simon Swindells"], ["email", "rema_rowe@harrisharvey.info"], ["tokens", "{}"], ["created_at", "2019-08-30 04:46:03.039244"], ["updated_at", "2019-08-30 04:46:03.039244"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rema_rowe@harrisharvey.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rema_rowe@harrisharvey.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 04:46:03.044950"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elfreda@morarwolff.net"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "elfreda@morarwolff.net"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elfreda@morarwolff.net"], ["encrypted_password", "$2a$04$fpD/.zmlMx5GzVg3wYqz4OHLRDHmWu502Auc6TbN4NQ1Tqi4BhFz."], ["confirmation_token", "YTWqeV5Em8zwEfvSNzEA"], ["confirmation_sent_at", "2019-08-30 04:46:03.049902"], ["name", "Hy Marx"], ["email", "elfreda@morarwolff.net"], ["tokens", "{}"], ["created_at", "2019-08-30 04:46:03.049813"], ["updated_at", "2019-08-30 04:46:03.049813"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"elfreda@morarwolff.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elfreda@morarwolff.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "celia@adamsconsidine.name"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "celia@adamsconsidine.name"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "celia@adamsconsidine.name"], ["encrypted_password", "$2a$04$BaodO4fyawgSsljTeOPDZe0yXVBqh75bIfKFHo3a3qR4pTMZ2Jv1q"], ["confirmed_at", "2019-08-30 04:46:03.056595"], ["locked_at", "2019-08-30 04:46:03.056632"], ["name", "Jerry Atrics"], ["email", "celia@adamsconsidine.name"], ["tokens", "{}"], ["created_at", "2019-08-30 04:46:03.059195"], ["updated_at", "2019-08-30 04:46:03.059195"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"celia@adamsconsidine.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "celia@adamsconsidine.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kurt@vandervort.biz"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "kurt@vandervort.biz"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kurt@vandervort.biz"], ["encrypted_password", "$2a$04$Mu2uzKOzgqKpEVmTANX4Z.KCAHP83uwpLJvVWFFTQsS9snnb/inwO"], ["confirmed_at", "2019-08-30 04:46:03.066739"], ["name", "Dan Druff"], ["email", "kurt@vandervort.biz"], ["tokens", "{}"], ["created_at", "2019-08-30 04:46:03.068027"], ["updated_at", "2019-08-30 04:46:03.068027"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kurt@vandervort.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kurt@vandervort.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lynn@kemmer.org"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "lynn@kemmer.org"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lynn@kemmer.org"], ["encrypted_password", "$2a$04$S5I4ilSOdalhfDnQCNtuQuRLg42jegmXyGvDBr4xOqghQT3t3hEMS"], ["confirmed_at", "2019-08-30 04:46:03.076390"], ["name", "Iona Ford"], ["email", "lynn@kemmer.org"], ["tokens", "{}"], ["created_at", "2019-08-30 04:46:03.077585"], ["updated_at", "2019-08-30 04:46:03.077585"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Rr8-nONkDKPEJqiDATCpHw\":{\"token\":\"$2a$12$kBzMHKJsAca9/ndOVf3InOPwj1/iTJbYfcwYCmhWLLKWBLh0UsDtK\",\"expiry\":1568349963,\"last_token\":null,\"updated_at\":\"2019-08-29T23:46:03.263-05:00\"}}"], ["updated_at", "2019-08-30 04:46:03.263956"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lynn@kemmer.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 04:46:03.435812"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 171ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jeanette_quigley@shields.net"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "jeanette_quigley@shields.net"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jeanette_quigley@shields.net"], ["encrypted_password", "$2a$04$jDeKLxmGFBxoK4.12R0O3uau8z8yG/9lUzcA0c7pxXEkETlZ/wGw."], ["confirmed_at", "2019-08-30 04:46:03.445809"], ["name", "Rusty Blades"], ["email", "jeanette_quigley@shields.net"], ["tokens", "{}"], ["created_at", "2019-08-30 04:46:03.447128"], ["updated_at", "2019-08-30 04:46:03.447128"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "helen_schumm@rutherford.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "helen_schumm@rutherford.org"], ["encrypted_password", "$2a$04$UOQuowYvRlhIRrHNpLX5OOWNXazbsXIIxyzrHWUo8UTyG5IxWQV9q"], ["confirmed_at", "2019-08-30 04:46:06.675084"], ["name", "Lou Zar"], ["email", "helen_schumm@rutherford.org"], ["created_at", "2019-08-30 04:46:06.676903"], ["updated_at", "2019-08-30 04:46:06.676903"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"helen_schumm@rutherford.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "helen_schumm@rutherford.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dd4nQxgrm1-_BMIo-fnL1g\":{\"token\":\"$2a$10$SrfCX2JmJeesSTm44QHQuu6zMyFSd8IZJVgBdeH5XqMrVa9KaClGi\",\"expiry\":1568349966,\"updated_at\":\"2019-08-30 04:46:06 UTC\"}}"], ["updated_at", "2019-08-30 04:46:06.745045"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:46:06.748627"], ["last_sign_in_at", "2019-08-30 04:46:06.748627"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:46:06.748980"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "charles_mccullough@feil.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "charles_mccullough@feil.com"], ["encrypted_password", "$2a$04$eqTICPQX7AGMCfdEhZ3YA.gxO1Han3S1vf79TU3wBzJvgX4XvwOZa"], ["confirmed_at", "2019-08-30 04:46:06.756170"], ["name", "Chanda Lear"], ["email", "charles_mccullough@feil.com"], ["created_at", "2019-08-30 04:46:06.757001"], ["updated_at", "2019-08-30 04:46:06.757001"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"charles_mccullough@feil.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "charles_mccullough@feil.com"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elvis_nikolaus@sporerrippin.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elvis_nikolaus@sporerrippin.com"], ["encrypted_password", "$2a$04$LIbd65RjST2TvxgwUQz0TOUE.VBDh1THIHc5NyqgDf7NEbguFmiai"], ["confirmation_token", "x_bxqantL-VubCCwouCQ"], ["confirmation_sent_at", "2019-08-30 04:46:06.766787"], ["name", "Kay Neine"], ["email", "elvis_nikolaus@sporerrippin.com"], ["created_at", "2019-08-30 04:46:06.766702"], ["updated_at", "2019-08-30 04:46:06.766702"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"elvis_nikolaus@sporerrippin.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elvis_nikolaus@sporerrippin.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "samual@crooks.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "samual@crooks.info"], ["encrypted_password", "$2a$04$/5kCjdfhIZoNa6sokYtlgeg63eCLB8lBgZFRwajbvB0BZXbPNYaMa"], ["confirmed_at", "2019-08-30 04:46:06.772802"], ["locked_at", "2019-08-30 04:46:06.772812"], ["name", "Missy Sippy"], ["email", "samual@crooks.info"], ["created_at", "2019-08-30 04:46:06.773497"], ["updated_at", "2019-08-30 04:46:06.773497"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"samual@crooks.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "samual@crooks.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "burma@haleygoodwin.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "burma@haleygoodwin.net"], ["encrypted_password", "$2a$04$oWqn7vUiQNMWzbB7p0hIyOJIYpJC1EkOORm1hMzL2VbvL/hQRTF2S"], ["confirmed_at", "2019-08-30 04:46:06.780259"], ["name", "Kay Neine"], ["email", "burma@haleygoodwin.net"], ["created_at", "2019-08-30 04:46:06.781117"], ["updated_at", "2019-08-30 04:46:06.781117"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"burma@haleygoodwin.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "burma@haleygoodwin.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nanci@simonis.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nanci@simonis.com"], ["encrypted_password", "$2a$04$jz7ANT4uEgFpVhdQcdLpm.q9xuuuKLOV6fnMl9hcv/8P9omR/.Dre"], ["confirmed_at", "2019-08-30 04:46:06.789048"], ["name", "Katy Litter"], ["email", "nanci@simonis.com"], ["created_at", "2019-08-30 04:46:06.789912"], ["updated_at", "2019-08-30 04:46:06.789912"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LVzf3mGrJupiA_tt5m0SSw\":{\"token\":\"$2a$10$PNWKZUfta5j8tRiGPr2GtefEKllizSfnVOkTCBms95dUuIYKRtu4G\",\"expiry\":1568349966,\"updated_at\":\"2019-08-30 04:46:06 UTC\"}}"], ["updated_at", "2019-08-30 04:46:06.843697"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "nanci@simonis.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:46:06.894682"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "daron@pacocha.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "daron@pacocha.com"], ["encrypted_password", "$2a$04$VfjeOa0IT7faNuyj4RWTZObtUD4BBmKoMPIbm88MayshwrhMiw/Ia"], ["confirmed_at", "2019-08-30 04:46:06.902012"], ["name", "Harry Legg"], ["email", "daron@pacocha.com"], ["created_at", "2019-08-30 04:46:06.902909"], ["updated_at", "2019-08-30 04:46:06.902909"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jarred_wintheiser@roobquigley.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jarred_wintheiser@roobquigley.org"], ["encrypted_password", "$2a$04$UrMODqULDwQ4ufQOgghqo.rj91ql4Y1BRT9uMP1YcaitpiLi08A92"], ["confirmed_at", "2019-08-30 04:46:10.171598"], ["name", "Ed Venture"], ["email", "jarred_wintheiser@roobquigley.org"], ["tokens", "{}"], ["created_at", "2019-08-30 04:46:10.173539"], ["updated_at", "2019-08-30 04:46:10.173539"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jarred_wintheiser@roobquigley.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jarred_wintheiser@roobquigley.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TtjnRrjUBYkEFLESL_IBww\":{\"token\":\"$2a$12$uLarhgjiJLxxCrdx4fM9OON8zyLY5obWcnb2Suz9SM06FrxMWrm4e\",\"expiry\":1568349970,\"last_token\":null,\"updated_at\":\"2019-08-29T23:46:10.194-05:00\"}}"], ["updated_at", "2019-08-30 04:46:10.371759"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:46:10.374440"], ["last_sign_in_at", "2019-08-30 04:46:10.374440"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:46:10.374673"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 189ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vania.schaefer@kohler.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "vania.schaefer@kohler.io"], ["encrypted_password", "$2a$04$IRZC4tLDOhT2toMRsVBOTuikRDnZR4pt9yqcxBqs7d3.P057MYoD6"], ["confirmed_at", "2019-08-30 04:46:10.381964"], ["name", "Helena Hanbaskett"], ["email", "vania.schaefer@kohler.io"], ["tokens", "{}"], ["created_at", "2019-08-30 04:46:10.382855"], ["updated_at", "2019-08-30 04:46:10.382855"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"vania.schaefer@kohler.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "vania.schaefer@kohler.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 04:46:10.388890"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arianna@conn.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "arianna@conn.biz"], ["encrypted_password", "$2a$04$3bO5RPNS/Rgc7owk2tCBkul.njHz5w1RuHkx/tSjUGJueIErD.Pyi"], ["confirmation_token", "GjqyhzPFpnSUAqcVzDbB"], ["confirmation_sent_at", "2019-08-30 04:46:10.393627"], ["name", "Bea Minor"], ["email", "arianna@conn.biz"], ["tokens", "{}"], ["created_at", "2019-08-30 04:46:10.393548"], ["updated_at", "2019-08-30 04:46:10.393548"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"arianna@conn.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "arianna@conn.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sulema@stiedemanndenesik.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sulema@stiedemanndenesik.info"], ["encrypted_password", "$2a$04$x3AD8hzPa/Hq8zmXAKtYYOu.Y7Es7iRNSEI7I9TFdEdsqz/4zhV0q"], ["confirmed_at", "2019-08-30 04:46:10.399871"], ["locked_at", "2019-08-30 04:46:10.399880"], ["name", "Brighton Early"], ["email", "sulema@stiedemanndenesik.info"], ["tokens", "{}"], ["created_at", "2019-08-30 04:46:10.400567"], ["updated_at", "2019-08-30 04:46:10.400567"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sulema@stiedemanndenesik.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sulema@stiedemanndenesik.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tracey@blandaruel.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tracey@blandaruel.org"], ["encrypted_password", "$2a$04$F3Gkly0vGLbgIurzAvv1gueVKHcL7lBIfemqcJZc2rRwJhJ1mhT.2"], ["confirmed_at", "2019-08-30 04:46:10.407419"], ["name", "Rip Torn"], ["email", "tracey@blandaruel.org"], ["tokens", "{}"], ["created_at", "2019-08-30 04:46:10.408255"], ["updated_at", "2019-08-30 04:46:10.408255"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tracey@blandaruel.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tracey@blandaruel.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "teresia@kaulkejakubowski.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "teresia@kaulkejakubowski.net"], ["encrypted_password", "$2a$04$XHa8zSLUAqkhohiCazXmJeM.K2bK.msatRbci5Oqj1NOtrpgPW16u"], ["confirmed_at", "2019-08-30 04:46:10.416645"], ["name", "Willie Waite"], ["email", "teresia@kaulkejakubowski.net"], ["tokens", "{}"], ["created_at", "2019-08-30 04:46:10.417769"], ["updated_at", "2019-08-30 04:46:10.417769"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZYpuVJKi_9oYdDgPszK6nA\":{\"token\":\"$2a$12$uzvSng9EQZf/XK3DblawouzcJ5V3Upno51bpTIj8/Sx6fjT9kIohi\",\"expiry\":1568349970,\"last_token\":null,\"updated_at\":\"2019-08-29T23:46:10.418-05:00\"}}"], ["updated_at", "2019-08-30 04:46:10.601801"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "teresia@kaulkejakubowski.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 04:46:10.772684"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 170ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "felicita.legros@schmelerklein.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "felicita.legros@schmelerklein.info"], ["encrypted_password", "$2a$04$An3mM/qEHIOl1.LztmdaZOvB3ecmULnj1FWwPKo2mXVvMVwVuwMIm"], ["confirmed_at", "2019-08-30 04:46:10.780800"], ["name", "Rob Banks"], ["email", "felicita.legros@schmelerklein.info"], ["tokens", "{}"], ["created_at", "2019-08-30 04:46:10.781552"], ["updated_at", "2019-08-30 04:46:10.781552"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "solomon.stracke@hoppenienow.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "solomon.stracke@hoppenienow.co"], ["encrypted_password", "$2a$04$v6m9R1ajsZRCn4T3YtEsv.37FDj6UM5E8hWlW9jzFVjXnTiyj4sty"], ["confirmed_at", "2019-08-30 04:46:14.110288"], ["name", "Justin Tune"], ["email", "solomon.stracke@hoppenienow.co"], ["created_at", "2019-08-30 04:46:14.112216"], ["updated_at", "2019-08-30 04:46:14.112216"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"solomon.stracke@hoppenienow.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "solomon.stracke@hoppenienow.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"R-dIcXYbM2xw86sfFqaJDA\":{\"token\":\"$2a$10$Bs/gN7VLvaGejyR9da8i8udFzvk9tnf7GQE4edC8SMns5id.uA/AW\",\"expiry\":1568349974,\"updated_at\":\"2019-08-30 04:46:14 UTC\"}}"], ["updated_at", "2019-08-30 04:46:14.179932"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:46:14.182970"], ["last_sign_in_at", "2019-08-30 04:46:14.182970"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:46:14.183302"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marcell@crooks.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marcell@crooks.io"], ["encrypted_password", "$2a$04$vJVwOcGxXer5HDxrX2UJMufqTPlfJROkkTLiR5/Lk62rO8Hzexk5C"], ["confirmed_at", "2019-08-30 04:46:14.191276"], ["name", "Mark Mywords"], ["email", "marcell@crooks.io"], ["created_at", "2019-08-30 04:46:14.192164"], ["updated_at", "2019-08-30 04:46:14.192164"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"marcell@crooks.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marcell@crooks.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rosenda_mertz@abernathyskiles.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rosenda_mertz@abernathyskiles.name"], ["encrypted_password", "$2a$04$/1KilxRcia84LQmDdW8CeulcKDlBH7gqDcXlXm9vTIQaF7I9129d."], ["confirmation_token", "MCwby_f-uFzJSz3NvXsK"], ["confirmation_sent_at", "2019-08-30 04:46:14.202045"], ["name", "Ilene North"], ["email", "rosenda_mertz@abernathyskiles.name"], ["created_at", "2019-08-30 04:46:14.201957"], ["updated_at", "2019-08-30 04:46:14.201957"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rosenda_mertz@abernathyskiles.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rosenda_mertz@abernathyskiles.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elisha@bashirianmccullough.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elisha@bashirianmccullough.org"], ["encrypted_password", "$2a$04$drdH9/KB1soPkZIR1bevhuycfhB01icelIlODBTbDHHp7mfsqls/a"], ["confirmed_at", "2019-08-30 04:46:14.208265"], ["locked_at", "2019-08-30 04:46:14.208289"], ["name", "Trina Corder"], ["email", "elisha@bashirianmccullough.org"], ["created_at", "2019-08-30 04:46:14.209052"], ["updated_at", "2019-08-30 04:46:14.209052"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"elisha@bashirianmccullough.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elisha@bashirianmccullough.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carlos@mayert.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "carlos@mayert.com"], ["encrypted_password", "$2a$04$hswwcgvINJ71qrYYH6MQWevCsNupDFbVEb2Avs8CaTfrLX5KUo2Qe"], ["confirmed_at", "2019-08-30 04:46:14.215925"], ["name", "Shirley Knot"], ["email", "carlos@mayert.com"], ["created_at", "2019-08-30 04:46:14.216840"], ["updated_at", "2019-08-30 04:46:14.216840"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"carlos@mayert.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "carlos@mayert.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jody.wisozk@hegmannquitzon.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jody.wisozk@hegmannquitzon.info"], ["encrypted_password", "$2a$04$YLAi3j2DtD88fWjP5PFzROFfSM6ngk6TO7CkPq1YNH/vhNg7./xoO"], ["confirmed_at", "2019-08-30 04:46:14.225096"], ["name", "Annette Curtain"], ["email", "jody.wisozk@hegmannquitzon.info"], ["created_at", "2019-08-30 04:46:14.226000"], ["updated_at", "2019-08-30 04:46:14.226000"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7NJMib49yMJTgTCfztvc1A\":{\"token\":\"$2a$10$WRsu8.BlAdVJb7LekO.Huee1NKVGR83y8ThWyMc9fQr2VX.HcLVDu\",\"expiry\":1568349974,\"updated_at\":\"2019-08-30 04:46:14 UTC\"}}"], ["updated_at", "2019-08-30 04:46:14.280565"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jody.wisozk@hegmannquitzon.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:46:14.333855"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gerard@quigley.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gerard@quigley.com"], ["encrypted_password", "$2a$04$vHckVIvij2YLKNFQYYiB.eNWqZBiaMxSqdhIoFWixZZj/4jMCWjJ6"], ["confirmed_at", "2019-08-30 04:46:14.340630"], ["name", "Buddy Booth"], ["email", "gerard@quigley.com"], ["created_at", "2019-08-30 04:46:14.341364"], ["updated_at", "2019-08-30 04:46:14.341364"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.6ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fredia_schamberger@emmerichkuvalis.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "fredia_schamberger@emmerichkuvalis.co"], ["encrypted_password", "$2a$04$I.wuUsqUyRtA6EtVDPgEJ.gE0gIdn5DtULmtO7o4VrNGouSwTkPnG"], ["confirmed_at", "2019-08-30 04:46:17.702878"], ["name", "Seymour Legg"], ["email", "fredia_schamberger@emmerichkuvalis.co"], ["created_at", "2019-08-30 04:46:17.704208"], ["updated_at", "2019-08-30 04:46:17.704208"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"fredia_schamberger@emmerichkuvalis.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "fredia_schamberger@emmerichkuvalis.co"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5zLjDuEuXp-9dvfHfVS1nA\":{\"token\":\"$2a$10$EgknKJCt3NunORhUgruKguQT2gnRW7tJfyjtHuNh9Sa0ULeczCMF6\",\"expiry\":1568349977,\"updated_at\":\"2019-08-30 04:46:17 UTC\"}}"], ["updated_at", "2019-08-30 04:46:17.772502"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:46:17.776321"], ["last_sign_in_at", "2019-08-30 04:46:17.776321"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:46:17.776555"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.3ms | ActiveRecord: 0.6ms | Allocations: 11928) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gaylord.crona@monahan.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gaylord.crona@monahan.net"], ["encrypted_password", "$2a$04$ycjfKfM0aSsoKkj0uyjvse/vD/J5oX7y8FD7Rovui44JK/fH94J1a"], ["confirmed_at", "2019-08-30 04:46:17.784655"], ["name", "Sandy Banks"], ["email", "gaylord.crona@monahan.net"], ["created_at", "2019-08-30 04:46:17.785404"], ["updated_at", "2019-08-30 04:46:17.785404"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"gaylord.crona@monahan.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gaylord.crona@monahan.net"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2055) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "otha@goodwin.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "otha@goodwin.co"], ["encrypted_password", "$2a$04$zJnnAcqA2Hxc9efm5Hdd1eoQMc6s/XYfy9Rl3qNYP69kPUQ4crLVa"], ["confirmation_token", "45nxMxRHrTyh5Zx78nkw"], ["confirmation_sent_at", "2019-08-30 04:46:17.795126"], ["name", "Jeff Healitt"], ["email", "otha@goodwin.co"], ["created_at", "2019-08-30 04:46:17.795008"], ["updated_at", "2019-08-30 04:46:17.795008"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"otha@goodwin.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "otha@goodwin.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1406) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mikel@wilkinson.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mikel@wilkinson.biz"], ["encrypted_password", "$2a$04$mug2Knmw9rCaaOdAB9c3quxL1xvZe9.taqYW25jf1eUaAOYlIBUHS"], ["confirmed_at", "2019-08-30 04:46:17.803133"], ["locked_at", "2019-08-30 04:46:17.803145"], ["name", "Penny Wise"], ["email", "mikel@wilkinson.biz"], ["created_at", "2019-08-30 04:46:17.803985"], ["updated_at", "2019-08-30 04:46:17.803985"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"mikel@wilkinson.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mikel@wilkinson.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1425) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leisa@kuvaliswaelchi.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "leisa@kuvaliswaelchi.org"], ["encrypted_password", "$2a$04$VeYUbiSLovYUoxlfE/AdSuiGSGDm48e.14QKHYAhdxQh/oeLLCEXW"], ["confirmed_at", "2019-08-30 04:46:17.811425"], ["name", "Crystal Ball"], ["email", "leisa@kuvaliswaelchi.org"], ["created_at", "2019-08-30 04:46:17.812305"], ["updated_at", "2019-08-30 04:46:17.812305"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"leisa@kuvaliswaelchi.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leisa@kuvaliswaelchi.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1404) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "belen@hammes.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "belen@hammes.com"], ["encrypted_password", "$2a$04$Ydx384wRDfP6TpY5NR2P0.O9mpPLtFK/9a4jA0oTLpkpUETTL2kT6"], ["confirmed_at", "2019-08-30 04:46:17.820722"], ["name", "Cole Durkee"], ["email", "belen@hammes.com"], ["created_at", "2019-08-30 04:46:17.821622"], ["updated_at", "2019-08-30 04:46:17.821622"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"l2HwdBL7A3Uj3ARKnFRDWw\":{\"token\":\"$2a$10$4ZiI065ipy5hHiX1g74JBOPLXAQQvwdb4bh0LwSZ6dGL6HFLrt5EW\",\"expiry\":1568349977,\"updated_at\":\"2019-08-30 04:46:17 UTC\"}}"], ["updated_at", "2019-08-30 04:46:17.875573"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "belen@hammes.com"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:46:17.929831"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 1970) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:46:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1002) TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marilyn_abshire@sporer.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marilyn_abshire@sporer.org"], ["encrypted_password", "$2a$04$f/cgbgzjsqO0Zof6u.FBb.SAY7yNcb3JteEf4EIYj4D.3F95gVpxa"], ["confirmed_at", "2019-08-30 04:46:17.938061"], ["name", "Bill Dollar"], ["email", "marilyn_abshire@sporer.org"], ["created_at", "2019-08-30 04:46:17.938914"], ["updated_at", "2019-08-30 04:46:17.938914"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'sherly@goodwinkshlerin.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Mark Mywords"], ["email", "sherly@goodwinkshlerin.biz"], ["encrypted_password", "$2a$04$EMzI3WXiFE/hJQ7woDDyD.ZcgCEOrJhVhVCUL6h.ml/FJzdkwR2TO"], ["confirmed_at", "2019-08-30 04:51:19.572226"], ["uid", "sherly@goodwinkshlerin.biz"], ["created_at", "2019-08-30 04:51:19.580759"], ["updated_at", "2019-08-30 04:51:19.580759"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sherly@goodwinkshlerin.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "sherly@goodwinkshlerin.biz"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-30 04:51:19.637640"], ["current_sign_in_at", "2019-08-30 04:51:19.637640"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:51:19.638259"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 21ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'kattie_wilkinson@schneider.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Chip Munk"], ["email", "kattie_wilkinson@schneider.co"], ["encrypted_password", "$2a$04$9pWGgbBiGshq/N4vFV2OD.JgJEiobBSh5zbkJrfl59MPlNARxc032"], ["confirmed_at", "2019-08-30 04:51:19.652094"], ["uid", "kattie_wilkinson@schneider.co"], ["created_at", "2019-08-30 04:51:19.653038"], ["updated_at", "2019-08-30 04:51:19.653038"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kattie_wilkinson@schneider.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "kattie_wilkinson@schneider.co"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'giuseppe.haag@von.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Lee Nover"], ["email", "giuseppe.haag@von.net"], ["encrypted_password", "$2a$04$xWx20EEBAj/klJhiB2zBfOUdpbKKpNB4f/QaAODWBZX0zL4Ck1qBi"], ["uid", "giuseppe.haag@von.net"], ["created_at", "2019-08-30 04:51:19.666116"], ["updated_at", "2019-08-30 04:51:19.666116"], ["confirmation_token", "5qQPMVE6_FUiqDFoPxa2"], ["confirmation_sent_at", "2019-08-30 04:51:19.666281"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"giuseppe.haag@von.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "giuseppe.haag@von.net"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'maia@effertz.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Anna Septic"], ["email", "maia@effertz.info"], ["encrypted_password", "$2a$04$3TmzmldX2hcvFsiEan7xX.3SC3iAnKyg5PT2KDjLmknddk4x7.Sxe"], ["confirmed_at", "2019-08-30 04:51:19.675581"], ["locked_at", "2019-08-30 04:51:19.675642"], ["uid", "maia@effertz.info"], ["created_at", "2019-08-30 04:51:19.676564"], ["updated_at", "2019-08-30 04:51:19.676564"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"maia@effertz.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "maia@effertz.info"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'eugene_labadie@feeneyhauck.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Chuck Roast"], ["email", "eugene_labadie@feeneyhauck.net"], ["encrypted_password", "$2a$04$f/.Ytk9c3sjcmed7avT7UecODanew2ktmURKIGKglxh8hqR70tUyG"], ["confirmed_at", "2019-08-30 04:51:19.686712"], ["auth_available", "f"], ["uid", "eugene_labadie@feeneyhauck.net"], ["created_at", "2019-08-30 04:51:19.687698"], ["updated_at", "2019-08-30 04:51:19.687698"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"eugene_labadie@feeneyhauck.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "eugene_labadie@feeneyhauck.net"]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'lashandra@vonrueden.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Artie Choke"], ["email", "lashandra@vonrueden.net"], ["encrypted_password", "$2a$04$U3bzslIXmJ2cxi0UNH6SQO7R3GffZvSCJRBpgCr0jsSadbo90Vk6e"], ["confirmed_at", "2019-08-30 04:51:19.698549"], ["uid", "lashandra@vonrueden.net"], ["created_at", "2019-08-30 04:51:19.700364"], ["updated_at", "2019-08-30 04:51:19.700364"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jyR-DzWNknA87oMn_hVxwQ\":{\"token\":\"$2a$10$ubgDGv.ClMWixpNQFBD1ruiKeEVYVolKxv.g91N8Kql.qSbsKiRCC\",\"expiry\":1568350279,\"updated_at\":\"2019-08-30 04:51:19 UTC\"}}"], ["updated_at", "2019-08-30 04:51:19.756125"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "lashandra@vonrueden.net"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:51:19.812005"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 54ms (Views: 0.2ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'josue@beer.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Bill Ding"], ["email", "josue@beer.net"], ["encrypted_password", "$2a$04$7msnvFA7ZqjqOolXMsM7e.y9Yzivb7tYUmyHOJ8mOB5ygt1rO8.wu"], ["confirmed_at", "2019-08-30 04:51:19.823612"], ["uid", "josue@beer.net"], ["created_at", "2019-08-30 04:51:19.824630"], ["updated_at", "2019-08-30 04:51:19.824630"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'travis@johns.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Roger Overandout"], ["email", "travis@johns.net"], ["encrypted_password", "$2a$04$ciKG.pB9WNthosbZE1skFueOvOLC72P5SfFPKCpmPDRa4ATOFTQJu"], ["confirmed_at", "2019-08-30 04:51:32.615562"], ["uid", "travis@johns.net"], ["created_at", "2019-08-30 04:51:32.624414"], ["updated_at", "2019-08-30 04:51:32.624414"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"travis@johns.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "travis@johns.net"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"RGYLoThbfFCW67hR-708Iw\":{\"token\":\"$2a$10$GOuzYok/eCPS.lejOnN4BON6Vl5JupDCBrVwtid0ZaugfAPlhmRNi\",\"expiry\":1568350292,\"updated_at\":\"2019-08-30 04:51:32 UTC\"}}"], ["updated_at", "2019-08-30 04:51:32.722011"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-30 04:51:32.726500"], ["current_sign_in_at", "2019-08-30 04:51:32.726500"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:51:32.726950"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 69ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'dedra_bauch@schaefer.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Homan Provement"], ["email", "dedra_bauch@schaefer.biz"], ["encrypted_password", "$2a$04$7lUxAUEtFDUer7EZrVDeEu4N90adWWqthnGzMy5.VmkrQCJuPrNly"], ["confirmed_at", "2019-08-30 04:51:32.733963"], ["uid", "dedra_bauch@schaefer.biz"], ["created_at", "2019-08-30 04:51:32.734689"], ["updated_at", "2019-08-30 04:51:32.734689"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dedra_bauch@schaefer.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "dedra_bauch@schaefer.biz"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'ula_hane@treutel.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Leigh King"], ["email", "ula_hane@treutel.io"], ["encrypted_password", "$2a$04$FZL/AxU3.bvB/Zau3PNqT.RMfCD9Rkq4A2QfSucWSTJ.LcmGjBAmK"], ["uid", "ula_hane@treutel.io"], ["created_at", "2019-08-30 04:51:32.745081"], ["updated_at", "2019-08-30 04:51:32.745081"], ["confirmation_token", "XdDhkHDFSkz-bUCB5zWg"], ["confirmation_sent_at", "2019-08-30 04:51:32.745232"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ula_hane@treutel.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "ula_hane@treutel.io"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'adrienne_oberbrunner@littelbuckridge.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Lance Lyde"], ["email", "adrienne_oberbrunner@littelbuckridge.co"], ["encrypted_password", "$2a$04$2.bsPCFO7euqwuvbmjhDCOG21K751BMD7sHM0oHYuVfgrgNAgmT2u"], ["confirmed_at", "2019-08-30 04:51:32.753288"], ["locked_at", "2019-08-30 04:51:32.753350"], ["uid", "adrienne_oberbrunner@littelbuckridge.co"], ["created_at", "2019-08-30 04:51:32.754258"], ["updated_at", "2019-08-30 04:51:32.754258"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"adrienne_oberbrunner@littelbuckridge.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "adrienne_oberbrunner@littelbuckridge.co"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'leland_hyatt@dickinsonjacobson.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Jacklyn Hyde"], ["email", "leland_hyatt@dickinsonjacobson.biz"], ["encrypted_password", "$2a$04$ixVzWL2jMCJwIMdJ7TSBzOSOvZK2UKxLcXxMQqUUFrhLgdzxQmKnW"], ["confirmed_at", "2019-08-30 04:51:32.764739"], ["auth_available", "f"], ["uid", "leland_hyatt@dickinsonjacobson.biz"], ["created_at", "2019-08-30 04:51:32.765797"], ["updated_at", "2019-08-30 04:51:32.765797"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"leland_hyatt@dickinsonjacobson.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "leland_hyatt@dickinsonjacobson.biz"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jeanette_berge@walter.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Candy Kane"], ["email", "jeanette_berge@walter.org"], ["encrypted_password", "$2a$04$1uLRwCzCRRmC/a.zU8W3Iun2siejIV5N/xhyIQ1sinUBWe8zal6b6"], ["confirmed_at", "2019-08-30 04:51:32.777401"], ["uid", "jeanette_berge@walter.org"], ["created_at", "2019-08-30 04:51:32.778443"], ["updated_at", "2019-08-30 04:51:32.778443"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"O9UTJqver-RZ1V9bAgP3ww\":{\"token\":\"$2a$10$ZLJFc4T4wICIfUgdQFp9FuS0sO2.ad9cAkHzSmzJlUFbqgUBT0hRu\",\"expiry\":1568350292,\"updated_at\":\"2019-08-30 04:51:32 UTC\"}}"], ["updated_at", "2019-08-30 04:51:32.831642"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "jeanette_berge@walter.org"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:51:32.888396"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'kennith@leffler.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Kenny Dewitt"], ["email", "kennith@leffler.com"], ["encrypted_password", "$2a$04$CTBqWXejBvCOO2N4JZpxKeohoTKQs23Fkw/3yxPWy/IKoFVQ5ndpW"], ["confirmed_at", "2019-08-30 04:51:32.898087"], ["uid", "kennith@leffler.com"], ["created_at", "2019-08-30 04:51:32.898997"], ["updated_at", "2019-08-30 04:51:32.898997"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "rosina_durgan@bernierokuneva.net"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rosina_durgan@bernierokuneva.net"], ["encrypted_password", "$2a$04$btwkmpk..rLfO0rx5qy9E.1unbFwdpWhPGw937OTOeWVgEN078Y3K"], ["confirmed_at", "2019-08-30 04:51:36.159501"], ["name", "Hope Ferterbest"], ["email", "rosina_durgan@bernierokuneva.net"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:36.161078"], ["updated_at", "2019-08-30 04:51:36.161078"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rosina_durgan@bernierokuneva.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rosina_durgan@bernierokuneva.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gPkhxz03OkszdB6NlUFa0g\":{\"token\":\"$2a$12$VQrgzEkt.dFAKiFfiT7xDuaK82orhFu.kFK5QGq1ToLJw1sATphZm\",\"expiry\":1568350296,\"last_token\":null,\"updated_at\":\"2019-08-29T23:51:36.379-05:00\"}}"], ["updated_at", "2019-08-30 04:51:36.380487"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:51:36.385224"], ["last_sign_in_at", "2019-08-30 04:51:36.385224"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:51:36.385585"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 209ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "karolyn.champlin@emard.name"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "karolyn.champlin@emard.name"], ["encrypted_password", "$2a$04$Zsgl7cNWQcfcABX6A6G6WOMBABQ/RlUHuPYEpoEWtp6pm95UXwbYW"], ["confirmed_at", "2019-08-30 04:51:36.394671"], ["name", "Sandy Beech"], ["email", "karolyn.champlin@emard.name"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:36.395444"], ["updated_at", "2019-08-30 04:51:36.395444"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"karolyn.champlin@emard.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "karolyn.champlin@emard.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 04:51:36.399654"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "frank.swift@homenick.name"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "72e31812c81c89a8c27ca2b8e0b80cdc3aa8a0d64c0c90fabce5966a77777522"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "frank.swift@homenick.name"], ["encrypted_password", "$2a$04$JP.MmCxPEQT15w18/hpjzO85jF/zMxKlmxtIgSY0r0lYq2bTMd4jK"], ["confirmation_token", "3zZ2my8mG-q1of2r-tyA"], ["confirmation_sent_at", "2019-08-30 04:51:36.488919"], ["name", "Rusty Carr"], ["email", "frank.swift@homenick.name"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:36.404126"], ["updated_at", "2019-08-30 04:51:36.404126"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"frank.swift@homenick.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "frank.swift@homenick.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "lovella.walker@parker.org"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lovella.walker@parker.org"], ["encrypted_password", "$2a$04$MX9d/soljVJKT8C.Tu0mLuZe.WCmv90aHVluhKM4kF7Mg8KUJprba"], ["confirmed_at", "2019-08-30 04:51:36.496327"], ["locked_at", "2019-08-30 04:51:36.496340"], ["name", "Sandy Spring"], ["email", "lovella.walker@parker.org"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:36.497225"], ["updated_at", "2019-08-30 04:51:36.497225"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lovella.walker@parker.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lovella.walker@parker.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "tiera_jacobs@kub.name"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tiera_jacobs@kub.name"], ["encrypted_password", "$2a$04$iPgzvZsBlQXOtfqFWbjPt.z.73o7rDjqeyadaDFNTNHniLL/kCiaW"], ["confirmed_at", "2019-08-30 04:51:36.504260"], ["name", "Joanna Hand"], ["email", "tiera_jacobs@kub.name"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:36.505169"], ["updated_at", "2019-08-30 04:51:36.505169"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tiera_jacobs@kub.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tiera_jacobs@kub.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "rodolfo.koelpin@schimmel.io"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rodolfo.koelpin@schimmel.io"], ["encrypted_password", "$2a$04$oNtVH9J8fOIbkz7yvHeQmuUZHO7L/2WJASybp6waLceZc.k9Ce2Ce"], ["confirmed_at", "2019-08-30 04:51:36.513199"], ["name", "Mary Gold"], ["email", "rodolfo.koelpin@schimmel.io"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:36.514176"], ["updated_at", "2019-08-30 04:51:36.514176"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"D29B0DsigjZRwCPz6LBEIw\":{\"token\":\"$2a$12$GB2056Ga0k8j3R9XTrSbOO5IZHjAjQ0LTAlibfASGwd9lQKZRI2W6\",\"expiry\":1568350296,\"last_token\":null,\"updated_at\":\"2019-08-29T23:51:36.714-05:00\"}}"], ["updated_at", "2019-08-30 04:51:36.714867"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "rodolfo.koelpin@schimmel.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 04:51:36.897557"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 182ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "jed.king@von.com"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jed.king@von.com"], ["encrypted_password", "$2a$04$W4ESLPdf6/prvKHAJ0.awu/FBvM5/4pXphg.LDw1WESs7lQpjbWIG"], ["confirmed_at", "2019-08-30 04:51:36.905085"], ["name", "Hugo First"], ["email", "jed.king@von.com"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:36.905794"], ["updated_at", "2019-08-30 04:51:36.905794"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brice@schaden.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "brice@schaden.co"], ["encrypted_password", "$2a$04$BffFWIZxZ0eu7SHW6YU7hOCupDzZFdmSEYbbldE4Xd9JkXEiPWL4e"], ["confirmed_at", "2019-08-30 04:51:40.882022"], ["name", "Lisa Honda"], ["email", "brice@schaden.co"], ["created_at", "2019-08-30 04:51:40.890899"], ["updated_at", "2019-08-30 04:51:40.890899"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"brice@schaden.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "brice@schaden.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"8XBG1puQa9cQ0tsqBsI8UQ\":{\"token\":\"$2a$10$dxJx6OVq5oZ5Db683/X3XezTXtQ6Iv4sH7JcSQYJ0cFJ7T78Pq1Rq\",\"expiry\":1568350300,\"updated_at\":\"2019-08-30 04:51:40 UTC\"}}"], ["updated_at", "2019-08-30 04:51:40.965830"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:51:40.971147"], ["last_sign_in_at", "2019-08-30 04:51:40.971147"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:51:40.971848"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 67ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sherryl@huelmcclure.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sherryl@huelmcclure.com"], ["encrypted_password", "$2a$04$Xf0Mf6N1EL6HPjH1Q5XugeAxyg1zAvsZEksP5FOjhgEnSMKr2hwlm"], ["confirmed_at", "2019-08-30 04:51:40.980095"], ["name", "Emma Royds"], ["email", "sherryl@huelmcclure.com"], ["created_at", "2019-08-30 04:51:40.981085"], ["updated_at", "2019-08-30 04:51:40.981085"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sherryl@huelmcclure.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sherryl@huelmcclure.com"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mui.bosco@okon.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mui.bosco@okon.io"], ["encrypted_password", "$2a$04$niVg4RiyM9rpI5zgFNCJM.HB7qBcNyTfvAHCWfNibYbaeKxdSh7Ky"], ["confirmation_token", "KaqUwV7f7wYnSLNxjdhD"], ["confirmation_sent_at", "2019-08-30 04:51:40.991474"], ["name", "Milly Meter"], ["email", "mui.bosco@okon.io"], ["created_at", "2019-08-30 04:51:40.991381"], ["updated_at", "2019-08-30 04:51:40.991381"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"mui.bosco@okon.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mui.bosco@okon.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "aurore_mckenzie@dooley.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "aurore_mckenzie@dooley.org"], ["encrypted_password", "$2a$04$kvalVlFvTsiuMv0mY0FlU.CtJ0yboy8.l/WVFZFzGEDn8Ye9X1OAG"], ["confirmed_at", "2019-08-30 04:51:40.999054"], ["locked_at", "2019-08-30 04:51:40.999072"], ["name", "Manny Kinn"], ["email", "aurore_mckenzie@dooley.org"], ["created_at", "2019-08-30 04:51:41.000081"], ["updated_at", "2019-08-30 04:51:41.000081"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"aurore_mckenzie@dooley.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "aurore_mckenzie@dooley.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "miquel@erdmanschuppe.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "miquel@erdmanschuppe.name"], ["encrypted_password", "$2a$04$x62zYLfrN/BPHJUjPZhAt.8zvMy9Uj4PnT3He.hB.u1i9D/2IsCDm"], ["confirmed_at", "2019-08-30 04:51:41.008260"], ["name", "Rick Kleiner"], ["email", "miquel@erdmanschuppe.name"], ["created_at", "2019-08-30 04:51:41.009507"], ["updated_at", "2019-08-30 04:51:41.009507"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"miquel@erdmanschuppe.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "miquel@erdmanschuppe.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dennis@mclaughlin.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dennis@mclaughlin.com"], ["encrypted_password", "$2a$04$lxlPlHPoQCYnX5C26Mf46.fAkOWg2y0ZdKkhZiZ3b1o3B/cCfCP.i"], ["confirmed_at", "2019-08-30 04:51:41.019073"], ["name", "Ellie Noise"], ["email", "dennis@mclaughlin.com"], ["created_at", "2019-08-30 04:51:41.020031"], ["updated_at", "2019-08-30 04:51:41.020031"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"6SPDfD60-E9WRP3RXJZigg\":{\"token\":\"$2a$10$lizluTIscQctPq5FAVdxc.A3pKwRU7eQq9u/B571G31UlWOF0CvzK\",\"expiry\":1568350301,\"updated_at\":\"2019-08-30 04:51:41 UTC\"}}"], ["updated_at", "2019-08-30 04:51:41.077240"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dennis@mclaughlin.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:51:41.130883"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nora.zulauf@stracke.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nora.zulauf@stracke.co"], ["encrypted_password", "$2a$04$0GuSZ/T/DhBHhl.7EXUMmuwaBPgwz6QvVMxFuqEfHNIG06yMtO4HK"], ["confirmed_at", "2019-08-30 04:51:41.137563"], ["name", "Pat Pending"], ["email", "nora.zulauf@stracke.co"], ["created_at", "2019-08-30 04:51:41.138320"], ["updated_at", "2019-08-30 04:51:41.138320"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jefferey.kling@moriette.io"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "jefferey.kling@moriette.io"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jefferey.kling@moriette.io"], ["encrypted_password", "$2a$04$k8siDP.3cGVwAMiHFdnjwuk9id3OYdzwny10FmAn/suHt2HEKBOJq"], ["confirmed_at", "2019-08-30 04:51:44.840205"], ["name", "Val Veeta"], ["email", "jefferey.kling@moriette.io"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:44.843004"], ["updated_at", "2019-08-30 04:51:44.843004"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jefferey.kling@moriette.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jefferey.kling@moriette.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"y7_3z-FkdqDkkhW_NGqPGA\":{\"token\":\"$2a$12$Fm0qO260aTIiwkXd2eVPX.gUZFMvAe4A1kahV6N.vg/E956dUsyCm\",\"expiry\":1568350305,\"last_token\":null,\"updated_at\":\"2019-08-29T23:51:45.048-05:00\"}}"], ["updated_at", "2019-08-30 04:51:45.049296"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:51:45.052918"], ["last_sign_in_at", "2019-08-30 04:51:45.052918"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:51:45.053251"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 198ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gilbert@kling.io"], ["LIMIT", 1]]  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "gilbert@kling.io"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gilbert@kling.io"], ["encrypted_password", "$2a$04$oASkYMfqwKaWqNpjcmt/xOz3OJhrV/1jrphJnCw2hxyNrZj.BFgU2"], ["confirmed_at", "2019-08-30 04:51:45.060769"], ["name", "Sally Forth"], ["email", "gilbert@kling.io"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:45.061855"], ["updated_at", "2019-08-30 04:51:45.061855"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"gilbert@kling.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gilbert@kling.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 04:51:45.066288"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leonida@parisian.com"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "leonida@parisian.com"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "leonida@parisian.com"], ["encrypted_password", "$2a$04$OdsmpVQ.bdoikNgzYISXZeeRmAjbFaoVgBz2QKHTsoDW8/f/q9KkG"], ["confirmation_token", "MbPMZdcvmgvuot_yhnxA"], ["confirmation_sent_at", "2019-08-30 04:51:45.071234"], ["name", "Neve Adda"], ["email", "leonida@parisian.com"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:45.071148"], ["updated_at", "2019-08-30 04:51:45.071148"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"leonida@parisian.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leonida@parisian.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "don@schmidt.net"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "don@schmidt.net"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "don@schmidt.net"], ["encrypted_password", "$2a$04$v8MCzDpZGshShM9wNlWEpO.OwGVl0EkQKiICclUHEQYQetwkAqORS"], ["confirmed_at", "2019-08-30 04:51:45.078987"], ["locked_at", "2019-08-30 04:51:45.079001"], ["name", "Bowen Arrow"], ["email", "don@schmidt.net"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:45.080275"], ["updated_at", "2019-08-30 04:51:45.080275"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"don@schmidt.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "don@schmidt.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "laureen@macgyverkoelpin.co"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "laureen@macgyverkoelpin.co"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "laureen@macgyverkoelpin.co"], ["encrypted_password", "$2a$04$D1xczZ3Oz8Md9Tm8F6GsDehQD3mYTYBR2X/GGuAVzlXm.Ypffb2ca"], ["confirmed_at", "2019-08-30 04:51:45.088647"], ["name", "Bess Eaton"], ["email", "laureen@macgyverkoelpin.co"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:45.090254"], ["updated_at", "2019-08-30 04:51:45.090254"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"laureen@macgyverkoelpin.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "laureen@macgyverkoelpin.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jamison_price@wiza.org"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "jamison_price@wiza.org"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jamison_price@wiza.org"], ["encrypted_password", "$2a$04$OTzYVNy8LdZ2cDCbts097eQcNLEkW0.Pj7jhyXyAhy794KDxmKcx2"], ["confirmed_at", "2019-08-30 04:51:45.099388"], ["name", "Joy Rider"], ["email", "jamison_price@wiza.org"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:45.100696"], ["updated_at", "2019-08-30 04:51:45.100696"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yhKCF0hyYog6z4JimlyBsw\":{\"token\":\"$2a$12$od6fgchQdRRzunnAHnjvJOC7AuFlhm7v/.4Y3VlcW4fDoNjrKq6qe\",\"expiry\":1568350305,\"last_token\":null,\"updated_at\":\"2019-08-29T23:51:45.289-05:00\"}}"], ["updated_at", "2019-08-30 04:51:45.290265"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jamison_price@wiza.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 04:51:45.471942"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 181ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "noel@sipes.org"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "noel@sipes.org"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "noel@sipes.org"], ["encrypted_password", "$2a$04$XnTzGvFMDXWfUpoJiRtUqu6UmnShqhBbn1qGrFVFdE7WGLNpzFmfe"], ["confirmed_at", "2019-08-30 04:51:45.480911"], ["name", "Candy Barr"], ["email", "noel@sipes.org"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:45.481998"], ["updated_at", "2019-08-30 04:51:45.481998"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jefferson@stantondonnelly.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jefferson@stantondonnelly.name"], ["encrypted_password", "$2a$04$n1e11imm5LJYc6v90gE93ufyrb2jqrJAooLzlo/qM0spF6CTcGNEO"], ["confirmed_at", "2019-08-30 04:51:48.985677"], ["name", "Sue Jeu"], ["email", "jefferson@stantondonnelly.name"], ["created_at", "2019-08-30 04:51:48.988081"], ["updated_at", "2019-08-30 04:51:48.988081"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jefferson@stantondonnelly.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jefferson@stantondonnelly.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NvRtRL7lnhizhHoxfIVWhQ\":{\"token\":\"$2a$10$2GXS2VOeQLcQteAeRKXUAeVgrRfr872C8UPWoOl5jf8r7QT8rwta2\",\"expiry\":1568350309,\"updated_at\":\"2019-08-30 04:51:49 UTC\"}}"], ["updated_at", "2019-08-30 04:51:49.063948"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:51:49.067701"], ["last_sign_in_at", "2019-08-30 04:51:49.067701"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:51:49.068192"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 66ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lucia.dickinson@baumbach.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lucia.dickinson@baumbach.com"], ["encrypted_password", "$2a$04$i56NmXPEGqlTtbnolDqeN.ytz95hRD1D2Ln40C.VYmBzq8n7GSygC"], ["confirmed_at", "2019-08-30 04:51:49.076233"], ["name", "Rusty Dorr"], ["email", "lucia.dickinson@baumbach.com"], ["created_at", "2019-08-30 04:51:49.077150"], ["updated_at", "2019-08-30 04:51:49.077150"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lucia.dickinson@baumbach.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lucia.dickinson@baumbach.com"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clayton.keler@oconner.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "clayton.keler@oconner.org"], ["encrypted_password", "$2a$04$o10sBn5XAnxPiKpS43BkhO9/laxRf3NHSHuSOiwfzz9/llE5.4EcS"], ["confirmation_token", "mPjX3eqgHZQ_G_ciDoCe"], ["confirmation_sent_at", "2019-08-30 04:51:49.087576"], ["name", "Pepe Roni"], ["email", "clayton.keler@oconner.org"], ["created_at", "2019-08-30 04:51:49.087481"], ["updated_at", "2019-08-30 04:51:49.087481"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"clayton.keler@oconner.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "clayton.keler@oconner.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "damian@hudson.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "damian@hudson.org"], ["encrypted_password", "$2a$04$Xhjmx48bXhmjPlKFjUAMk.4SjDGHAJYs2oFFdclQtKv1cR8/n6GjO"], ["confirmed_at", "2019-08-30 04:51:49.094145"], ["locked_at", "2019-08-30 04:51:49.094156"], ["name", "Laura Norder"], ["email", "damian@hudson.org"], ["created_at", "2019-08-30 04:51:49.094900"], ["updated_at", "2019-08-30 04:51:49.094900"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"damian@hudson.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "damian@hudson.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "willard.watsica@kertzmann.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "willard.watsica@kertzmann.org"], ["encrypted_password", "$2a$04$NZ7hX9YPXwb4BGC4mJyN5eDBGIbB7rWM22c5ug.yruC/.XHALBvky"], ["confirmed_at", "2019-08-30 04:51:49.101362"], ["name", "Pete Zaria"], ["email", "willard.watsica@kertzmann.org"], ["created_at", "2019-08-30 04:51:49.102256"], ["updated_at", "2019-08-30 04:51:49.102256"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"willard.watsica@kertzmann.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "willard.watsica@kertzmann.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "keri_conn@feeney.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "keri_conn@feeney.info"], ["encrypted_password", "$2a$04$dAdmiM4YQ8ZPcpzry7p93ubyoR0wiPgrF8FXWX/OzvGfVXGYJtO7m"], ["confirmed_at", "2019-08-30 04:51:49.110235"], ["name", "Nida Lyte"], ["email", "keri_conn@feeney.info"], ["created_at", "2019-08-30 04:51:49.111120"], ["updated_at", "2019-08-30 04:51:49.111120"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"j9aLItY2AbLX1IvMwxNvoQ\":{\"token\":\"$2a$10$FMaAVQs9KkYQmC2aMSa9Tu.CHnyEe/UHoLCkYhE7/uwPwc0uHm3Q2\",\"expiry\":1568350309,\"updated_at\":\"2019-08-30 04:51:49 UTC\"}}"], ["updated_at", "2019-08-30 04:51:49.166132"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "keri_conn@feeney.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:51:49.216064"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gus@schuppe.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gus@schuppe.co"], ["encrypted_password", "$2a$04$vIeJX0XqSkpBKKdsi8oUd.xlvSeV3BrLuSGfGQiD7hXAz6FbdyGU6"], ["confirmed_at", "2019-08-30 04:51:49.223476"], ["name", "Juan Fortharoad"], ["email", "gus@schuppe.co"], ["created_at", "2019-08-30 04:51:49.224222"], ["updated_at", "2019-08-30 04:51:49.224222"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stacey.macgyver@kuhlman.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "stacey.macgyver@kuhlman.biz"], ["encrypted_password", "$2a$04$HXvDn65KhyxVqBf6VhdpNOdY2Glwu8ittShaGcXwOzHtPEGX.uEq."], ["confirmed_at", "2019-08-30 04:51:52.972674"], ["name", "Adam Baum"], ["email", "stacey.macgyver@kuhlman.biz"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:52.974963"], ["updated_at", "2019-08-30 04:51:52.974963"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"stacey.macgyver@kuhlman.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stacey.macgyver@kuhlman.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2jOqbyiUNJbBlUCLR6syZA\":{\"token\":\"$2a$12$bfVFjtqwmjSI5uAuHMjO9Oe9BLJmk15IXJaC9cYgZfZCnyCpKIUjy\",\"expiry\":1568350313,\"last_token\":null,\"updated_at\":\"2019-08-29T23:51:53.001-05:00\"}}"], ["updated_at", "2019-08-30 04:51:53.188676"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:51:53.191485"], ["last_sign_in_at", "2019-08-30 04:51:53.191485"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:51:53.191731"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 201ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gerry_johnston@mckenziedach.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gerry_johnston@mckenziedach.info"], ["encrypted_password", "$2a$04$3KNv.Jwl.IHafdbhntMK8eBXu1VWzdGNvvUd10Vub9SANEjxc0OkW"], ["confirmed_at", "2019-08-30 04:51:53.199356"], ["name", "Penny Whistler"], ["email", "gerry_johnston@mckenziedach.info"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:53.200169"], ["updated_at", "2019-08-30 04:51:53.200169"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"gerry_johnston@mckenziedach.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gerry_johnston@mckenziedach.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 04:51:53.204598"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deandra_blick@nader.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "deandra_blick@nader.name"], ["encrypted_password", "$2a$04$p8gIySYtYnzM6b7QqPH/Uu68i5AajDuM13Yy6dTOIvFPK.mIU3ReC"], ["confirmation_token", "BWKFdVaNnASsYpjqW_zE"], ["confirmation_sent_at", "2019-08-30 04:51:53.209072"], ["name", "Dusty Storm"], ["email", "deandra_blick@nader.name"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:53.208991"], ["updated_at", "2019-08-30 04:51:53.208991"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"deandra_blick@nader.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "deandra_blick@nader.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rex.turner@carterswaniawski.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rex.turner@carterswaniawski.com"], ["encrypted_password", "$2a$04$QGGobHxQPfVwJmdrtY5IAOWIlJAiHSHB/i1c/vGV7Zy/b/MT0snXu"], ["confirmed_at", "2019-08-30 04:51:53.215372"], ["locked_at", "2019-08-30 04:51:53.215381"], ["name", "Kandi Apple"], ["email", "rex.turner@carterswaniawski.com"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:53.216205"], ["updated_at", "2019-08-30 04:51:53.216205"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rex.turner@carterswaniawski.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rex.turner@carterswaniawski.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jere.hegmann@smith.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jere.hegmann@smith.info"], ["encrypted_password", "$2a$04$J5ps2uK1JVJ9qxieqHbspet7OhRfyIuXUyJvvUhl31wTpXFq5E91O"], ["confirmed_at", "2019-08-30 04:51:53.224099"], ["name", "Hy Gene"], ["email", "jere.hegmann@smith.info"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:53.225024"], ["updated_at", "2019-08-30 04:51:53.225024"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jere.hegmann@smith.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jere.hegmann@smith.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arnold.kulas@krajcikjakubowski.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "arnold.kulas@krajcikjakubowski.info"], ["encrypted_password", "$2a$04$XrqHXEbnjWREXDAyjaFZ5.uMIpOS2xbNAtjK0vVRd8FV9o5if5E8W"], ["confirmed_at", "2019-08-30 04:51:53.234389"], ["name", "Dee Zaster"], ["email", "arnold.kulas@krajcikjakubowski.info"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:53.235662"], ["updated_at", "2019-08-30 04:51:53.235662"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"d9Ql3iBf-wI7FXf01pYz6w\":{\"token\":\"$2a$12$M3FDcTimU33wXOftgOKxfOQW1ryjFgMNQ04UYZMnXg0RxvmWZOlZu\",\"expiry\":1568350313,\"last_token\":null,\"updated_at\":\"2019-08-29T23:51:53.236-05:00\"}}"], ["updated_at", "2019-08-30 04:51:53.428310"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "arnold.kulas@krajcikjakubowski.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 04:51:53.619963"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ethan@rohanbogan.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ethan@rohanbogan.org"], ["encrypted_password", "$2a$04$4.at7fWTr6ikR4GnoVGSu.V1GEh.DDkaDCsDw.pEu.1h.Qduq30ne"], ["confirmed_at", "2019-08-30 04:51:53.630095"], ["name", "Sandy Beech"], ["email", "ethan@rohanbogan.org"], ["tokens", "{}"], ["created_at", "2019-08-30 04:51:53.631037"], ["updated_at", "2019-08-30 04:51:53.631037"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brain_goodwin@hirthe.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "brain_goodwin@hirthe.org"], ["encrypted_password", "$2a$04$LFGdwNfRv0zdlnTSBANTguASL6h1voU7BwCAX9NOD.3hi5Gi7xDh."], ["confirmed_at", "2019-08-30 04:51:57.270949"], ["name", "Lance Lyde"], ["email", "brain_goodwin@hirthe.org"], ["created_at", "2019-08-30 04:51:57.273159"], ["updated_at", "2019-08-30 04:51:57.273159"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"brain_goodwin@hirthe.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "brain_goodwin@hirthe.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nJebo6RSvaNqP2fcFyDFwA\":{\"token\":\"$2a$10$JV7hq8r0zrpUXeo/bu9wh.QGebmy1jDAoIVET0mVQUQGPylUQAJSi\",\"expiry\":1568350317,\"updated_at\":\"2019-08-30 04:51:57 UTC\"}}"], ["updated_at", "2019-08-30 04:51:57.344042"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:51:57.347482"], ["last_sign_in_at", "2019-08-30 04:51:57.347482"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:51:57.347817"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.4ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "anthony@jaskolskiparisian.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "anthony@jaskolskiparisian.org"], ["encrypted_password", "$2a$04$CH87RAei5i2MU.Z5J.rSBeQj6gcl3mYGameEpm/oS3Q1gUiw.BgXy"], ["confirmed_at", "2019-08-30 04:51:57.356389"], ["name", "Stu Pitt"], ["email", "anthony@jaskolskiparisian.org"], ["created_at", "2019-08-30 04:51:57.357445"], ["updated_at", "2019-08-30 04:51:57.357445"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"anthony@jaskolskiparisian.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anthony@jaskolskiparisian.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elouise.ankunding@boyer.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elouise.ankunding@boyer.org"], ["encrypted_password", "$2a$04$TqK/CgSOKNgs/wAcHOqBTOR6c4JN61JRHR9a01yBdZy6bU3NCD7Ri"], ["confirmation_token", "CpJ1RNWaz5SCxE1quzBX"], ["confirmation_sent_at", "2019-08-30 04:51:57.367581"], ["name", "Leigh King"], ["email", "elouise.ankunding@boyer.org"], ["created_at", "2019-08-30 04:51:57.367466"], ["updated_at", "2019-08-30 04:51:57.367466"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"elouise.ankunding@boyer.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elouise.ankunding@boyer.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kyle@gutmann.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kyle@gutmann.co"], ["encrypted_password", "$2a$04$4rfhEf2VDR8vO8kdOcGDgOOEp8Iq9xvqG1vR.dNSsqjfRZ5TQG0.C"], ["confirmed_at", "2019-08-30 04:51:57.374827"], ["locked_at", "2019-08-30 04:51:57.374841"], ["name", "Rita Story"], ["email", "kyle@gutmann.co"], ["created_at", "2019-08-30 04:51:57.375895"], ["updated_at", "2019-08-30 04:51:57.375895"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kyle@gutmann.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kyle@gutmann.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bobby_baumbach@lockman.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bobby_baumbach@lockman.name"], ["encrypted_password", "$2a$04$pyX4XJHYFOu8XtGTnlFDSesb4AF5a8ai6t5M5zcjR3tbMt.7/raky"], ["confirmed_at", "2019-08-30 04:51:57.383451"], ["name", "Moe DeLawn"], ["email", "bobby_baumbach@lockman.name"], ["created_at", "2019-08-30 04:51:57.384580"], ["updated_at", "2019-08-30 04:51:57.384580"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"bobby_baumbach@lockman.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bobby_baumbach@lockman.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "donald@okon.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "donald@okon.co"], ["encrypted_password", "$2a$04$ikOpTXHbaItGnhJ/QEWXReOy/2mW152EZv0mFAt/reasoHKPmEw0G"], ["confirmed_at", "2019-08-30 04:51:57.393357"], ["name", "Sheri Cola"], ["email", "donald@okon.co"], ["created_at", "2019-08-30 04:51:57.394265"], ["updated_at", "2019-08-30 04:51:57.394265"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"MofB_QVldM7COKm8QaOIwA\":{\"token\":\"$2a$10$ZcHkPtTB.U89WdQ3BJMvge88m3GBBei7qLSeM9D4NBBdQ1kIQp9Nm\",\"expiry\":1568350317,\"updated_at\":\"2019-08-30 04:51:57 UTC\"}}"], ["updated_at", "2019-08-30 04:51:57.448990"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "donald@okon.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:51:57.504549"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:51:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cinda@klingboyle.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cinda@klingboyle.com"], ["encrypted_password", "$2a$04$ON6uwP6OAooM.L7wYRKsTunKPd9Mk0IAw6CjLReQ49GR5e2lgUzmG"], ["confirmed_at", "2019-08-30 04:51:57.512881"], ["name", "Adam Zapel"], ["email", "cinda@klingboyle.com"], ["created_at", "2019-08-30 04:51:57.513796"], ["updated_at", "2019-08-30 04:51:57.513796"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.9ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ninfa@davishickle.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ninfa@davishickle.net"], ["encrypted_password", "$2a$04$ywOKg/J0hcO9j0b2Til1A.40kGB4l5i00F99NAUXyXujLF7IEkiTK"], ["confirmed_at", "2019-08-30 04:52:01.301313"], ["name", "Gladys Eeya"], ["email", "ninfa@davishickle.net"], ["created_at", "2019-08-30 04:52:01.302750"], ["updated_at", "2019-08-30 04:52:01.302750"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:52:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ninfa@davishickle.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ninfa@davishickle.net"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KBfJZzbOU5n1ilvxO8Rb2w\":{\"token\":\"$2a$10$8HjvvEX6arGuFosmP0gl7e13SSrWFoKu5BvOmeAbjBwi/WPdOt3N6\",\"expiry\":1568350321,\"updated_at\":\"2019-08-30 04:52:01 UTC\"}}"], ["updated_at", "2019-08-30 04:52:01.374297"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 04:52:01.377220"], ["last_sign_in_at", "2019-08-30 04:52:01.377220"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 04:52:01.377422"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 11924) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "michal_stokes@monahan.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "michal_stokes@monahan.info"], ["encrypted_password", "$2a$04$tXuXyitrwfmBLw6jyIGOXe7YATZuzyhCZ7lwDJL70Vl01rOPb2FG6"], ["confirmed_at", "2019-08-30 04:52:01.395021"], ["name", "Myra Maines"], ["email", "michal_stokes@monahan.info"], ["created_at", "2019-08-30 04:52:01.395904"], ["updated_at", "2019-08-30 04:52:01.395904"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:52:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"michal_stokes@monahan.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michal_stokes@monahan.info"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2055) TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "johnny@zboncakhudson.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "johnny@zboncakhudson.co"], ["encrypted_password", "$2a$04$wYlofD1LG03Vf0isvZ/qQ.Hw5aCHP2pNDod11ISfBK4SKzq7fO6s2"], ["confirmation_token", "-5tCWmGsT2BiNU7HW3f2"], ["confirmation_sent_at", "2019-08-30 04:52:01.406308"], ["name", "Andy Gravity"], ["email", "johnny@zboncakhudson.co"], ["created_at", "2019-08-30 04:52:01.406218"], ["updated_at", "2019-08-30 04:52:01.406218"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:52:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"johnny@zboncakhudson.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "johnny@zboncakhudson.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 1406) TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "grace_hodkiewicz@pfannerstillosinski.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "grace_hodkiewicz@pfannerstillosinski.info"], ["encrypted_password", "$2a$04$9ppTVDU0ZJsJ3cHIJVjgt.LlCc1oC6vJwTHtdUGH.be0bXzSjHwQi"], ["confirmed_at", "2019-08-30 04:52:01.415731"], ["locked_at", "2019-08-30 04:52:01.415751"], ["name", "Frank Enstein"], ["email", "grace_hodkiewicz@pfannerstillosinski.info"], ["created_at", "2019-08-30 04:52:01.416861"], ["updated_at", "2019-08-30 04:52:01.416861"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:52:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"grace_hodkiewicz@pfannerstillosinski.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "grace_hodkiewicz@pfannerstillosinski.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1425) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "buddy_cummings@wolf.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "buddy_cummings@wolf.net"], ["encrypted_password", "$2a$04$nrvZoZA/qcXjZqdZcl5II.Mz7TfxDG8hcBFaWbamfkqG56GBlUKk."], ["confirmed_at", "2019-08-30 04:52:01.424472"], ["name", "Max Little"], ["email", "buddy_cummings@wolf.net"], ["created_at", "2019-08-30 04:52:01.425388"], ["updated_at", "2019-08-30 04:52:01.425388"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:52:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"buddy_cummings@wolf.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "buddy_cummings@wolf.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1404) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ozie@macejkovic.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ozie@macejkovic.net"], ["encrypted_password", "$2a$04$4u/Ib9O0V/REwpz3U.WCwum4RJAyK5t1FG33d.NzAnST8uRLslDWK"], ["confirmed_at", "2019-08-30 04:52:01.433838"], ["name", "Roger Overandout"], ["email", "ozie@macejkovic.net"], ["created_at", "2019-08-30 04:52:01.434879"], ["updated_at", "2019-08-30 04:52:01.434879"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"abPGNHCpSNmrTWJsw7CX1A\":{\"token\":\"$2a$10$8pLJIer0Fog9DLA9Y0zBZOIKOHnSA9ImG5lQG.sgrbrKle6m0SAFS\",\"expiry\":1568350321,\"updated_at\":\"2019-08-30 04:52:01 UTC\"}}"], ["updated_at", "2019-08-30 04:52:01.492321"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:52:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ozie@macejkovic.net"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 04:52:01.548233"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1970) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-29 23:52:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1002) TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "patricia_klein@prohaskaconsidine.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.9ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "patricia_klein@prohaskaconsidine.com"], ["encrypted_password", "$2a$04$NKdfdDdjOavB2a/2aBycZuqCwVPF2Z1PVXcdyyOy./mANZRiD0YCO"], ["confirmed_at", "2019-08-30 04:52:01.556806"], ["name", "Reed Toomey"], ["email", "patricia_klein@prohaskaconsidine.com"], ["created_at", "2019-08-30 04:52:01.558340"], ["updated_at", "2019-08-30 04:52:01.558340"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lillia@fritschziemann.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (3.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lillia@fritschziemann.biz"], ["encrypted_password", "$2a$04$dE3Xb1lXuBYI0OD5qZA3iOxNGtdo7jcCjRxzV0IRmSa5B1a21mr1y"], ["confirmed_at", "2019-08-30 14:56:52.227741"], ["name", "Skip Roper"], ["email", "lillia@fritschziemann.biz"], ["created_at", "2019-08-30 14:56:52.232179"], ["updated_at", "2019-08-30 14:56:52.232179"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:56:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lillia@fritschziemann.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lillia@fritschziemann.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Ca7SwvHOW3ZyYZPLZTXTpA\":{\"token\":\"$2a$10$4ChmprvazDnFJdKQMKDk3uYPxehycLKWdzZdq5fmqUltcewYDcHka\",\"expiry\":1568386612,\"updated_at\":\"2019-08-30 14:56:52 UTC\"}}"], ["updated_at", "2019-08-30 14:56:52.329423"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 14:56:52.332233"], ["last_sign_in_at", "2019-08-30 14:56:52.332233"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 14:56:52.332553"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 70ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eliseo@dare.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "eliseo@dare.com"], ["encrypted_password", "$2a$04$neoI0NjET.DDtb.oEvBunuwKdfp/W9aMdRxFe/6Z14IQk1TjHpkKO"], ["confirmed_at", "2019-08-30 14:56:52.344754"], ["name", "Milton Yermouth"], ["email", "eliseo@dare.com"], ["created_at", "2019-08-30 14:56:52.345772"], ["updated_at", "2019-08-30 14:56:52.345772"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:56:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"eliseo@dare.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "eliseo@dare.com"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eartha.purdy@paucek.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "eartha.purdy@paucek.com"], ["encrypted_password", "$2a$04$tOV023mud3fe0a/jNTJoWOvvNIP2o5PZwivmroi/5ive21zXcIDmK"], ["confirmation_token", "Q-LG5WSZQDn817itCjus"], ["confirmation_sent_at", "2019-08-30 14:56:52.356140"], ["name", "Melba Crisp"], ["email", "eartha.purdy@paucek.com"], ["created_at", "2019-08-30 14:56:52.356053"], ["updated_at", "2019-08-30 14:56:52.356053"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:56:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"eartha.purdy@paucek.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "eartha.purdy@paucek.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dewayne_jacobson@willmsmurray.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dewayne_jacobson@willmsmurray.net"], ["encrypted_password", "$2a$04$1z6tR.XGg3j/93W.T8T8zO/FP9HkZbr6fw89aDm3OWAXCcenkXdpa"], ["confirmed_at", "2019-08-30 14:56:52.362671"], ["locked_at", "2019-08-30 14:56:52.362683"], ["name", "Anne Ville"], ["email", "dewayne_jacobson@willmsmurray.net"], ["created_at", "2019-08-30 14:56:52.363512"], ["updated_at", "2019-08-30 14:56:52.363512"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:56:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dewayne_jacobson@willmsmurray.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dewayne_jacobson@willmsmurray.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nathaniel@luettgenconn.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nathaniel@luettgenconn.io"], ["encrypted_password", "$2a$04$psmAk3kyDyWg5N6esL99M.18qEspodhYymnyJy31IDFhY/3Dru4Fq"], ["confirmed_at", "2019-08-30 14:56:52.370723"], ["name", "Ben Dover"], ["email", "nathaniel@luettgenconn.io"], ["created_at", "2019-08-30 14:56:52.371595"], ["updated_at", "2019-08-30 14:56:52.371595"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:56:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"nathaniel@luettgenconn.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nathaniel@luettgenconn.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "debbra.lakin@predovicstracke.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "debbra.lakin@predovicstracke.name"], ["encrypted_password", "$2a$04$gnlDLPK/g2oRtSIj74VcVO1s5MR8v6zJHaETsQJXj82G3wS9Ddws2"], ["confirmed_at", "2019-08-30 14:56:52.380284"], ["name", "Reed Toomey"], ["email", "debbra.lakin@predovicstracke.name"], ["created_at", "2019-08-30 14:56:52.381322"], ["updated_at", "2019-08-30 14:56:52.381322"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"vLUEHknoxsRBrz88dX-5yQ\":{\"token\":\"$2a$10$ReJUrPVdjXQLb5OfFUr3D.iWe//fWKwmV3lxxlOrhHsM8V/ASDsoi\",\"expiry\":1568386612,\"updated_at\":\"2019-08-30 14:56:52 UTC\"}}"], ["updated_at", "2019-08-30 14:56:52.434543"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:56:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "debbra.lakin@predovicstracke.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 14:56:52.484197"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:56:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "faith.mcclure@breitenbergboehm.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "faith.mcclure@breitenbergboehm.io"], ["encrypted_password", "$2a$04$LGO9ukmigvllpSmH.MNGzeC372jQTCTqdCPDF5OHIMSR5aPMMnGBq"], ["confirmed_at", "2019-08-30 14:56:52.493239"], ["name", "Pat Downe"], ["email", "faith.mcclure@breitenbergboehm.io"], ["created_at", "2019-08-30 14:56:52.494341"], ["updated_at", "2019-08-30 14:56:52.494341"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'thao@kub.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Kay Mart"], ["email", "thao@kub.net"], ["encrypted_password", "$2a$04$5eiPp9hj1zuMljT61Uzej.xdrMSLVNgrn7Qb1RBsVkOEn28UWEY7y"], ["confirmed_at", "2019-08-30 14:57:40.821503"], ["uid", "thao@kub.net"], ["created_at", "2019-08-30 14:57:40.829906"], ["updated_at", "2019-08-30 14:57:40.829906"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"thao@kub.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "thao@kub.net"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YeMqlZ01imuzdTnQ1v-Trg\":{\"token\":\"$2a$10$BFr/eyWpRC71QAETy7VuQOq49VVCoxkRR9GLoecgcl7frIu7yVpRa\",\"expiry\":1568386660,\"updated_at\":\"2019-08-30 14:57:40 UTC\"}}"], ["updated_at", "2019-08-30 14:57:40.914955"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-08-30 14:57:40.920457"], ["current_sign_in_at", "2019-08-30 14:57:40.920457"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 14:57:40.921152"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 70ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'duane@dubuquequitzon.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Skip Stone"], ["email", "duane@dubuquequitzon.co"], ["encrypted_password", "$2a$04$XSnyRxFHaMemBizxWuGh.O6PSwZT5w3Tax7benRzAIBIoXWCZrTKi"], ["confirmed_at", "2019-08-30 14:57:40.928374"], ["uid", "duane@dubuquequitzon.co"], ["created_at", "2019-08-30 14:57:40.929132"], ["updated_at", "2019-08-30 14:57:40.929132"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"duane@dubuquequitzon.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "duane@dubuquequitzon.co"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'shane@hayes.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Lucy Fer"], ["email", "shane@hayes.co"], ["encrypted_password", "$2a$04$2nkezUuCrxgOXh/QqIC0uuFLBrFOMmyXJiNLHEKwKGS/vkqHNXirm"], ["uid", "shane@hayes.co"], ["created_at", "2019-08-30 14:57:40.940489"], ["updated_at", "2019-08-30 14:57:40.940489"], ["confirmation_token", "4ghVnosmvJqUCXkX5Sup"], ["confirmation_sent_at", "2019-08-30 14:57:40.940637"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"shane@hayes.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "shane@hayes.co"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'leilani.nitzsche@bogan.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "M. Balmer"], ["email", "leilani.nitzsche@bogan.io"], ["encrypted_password", "$2a$04$gIVm77EY2rlHjSz4Qjxvp.wBmssRwSL4w0XA0DRFsxIcHCsUmuLUu"], ["confirmed_at", "2019-08-30 14:57:40.949564"], ["locked_at", "2019-08-30 14:57:40.949642"], ["uid", "leilani.nitzsche@bogan.io"], ["created_at", "2019-08-30 14:57:40.950602"], ["updated_at", "2019-08-30 14:57:40.950602"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"leilani.nitzsche@bogan.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "leilani.nitzsche@bogan.io"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'boyd_sipes@rutherford.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Mary Gold"], ["email", "boyd_sipes@rutherford.org"], ["encrypted_password", "$2a$04$LsSfj5u7ua81GCav2TVRletQ3skrfJHlsq8C4u9zavromU27e5Jqq"], ["confirmed_at", "2019-08-30 14:57:40.961507"], ["auth_available", "f"], ["uid", "boyd_sipes@rutherford.org"], ["created_at", "2019-08-30 14:57:40.962712"], ["updated_at", "2019-08-30 14:57:40.962712"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"boyd_sipes@rutherford.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "boyd_sipes@rutherford.org"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'terry.kautzer@carroll.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Renee Sance"], ["email", "terry.kautzer@carroll.biz"], ["encrypted_password", "$2a$04$KSg0fCja8xkPOl9zn357QepwelpSSER4RwyG1Fv7e8UQLKcPLx/.a"], ["confirmed_at", "2019-08-30 14:57:40.973667"], ["uid", "terry.kautzer@carroll.biz"], ["created_at", "2019-08-30 14:57:40.974746"], ["updated_at", "2019-08-30 14:57:40.974746"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dLnSwIDhG30pezeT0Adrew\":{\"token\":\"$2a$10$O5OQ0864kAFnJzQOUKNICexPooPBvtjvqcOWAeFUzVQxKT4JFWU7S\",\"expiry\":1568386661,\"updated_at\":\"2019-08-30 14:57:40 UTC\"}}"], ["updated_at", "2019-08-30 14:57:41.029671"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "terry.kautzer@carroll.biz"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 14:57:41.090006"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'sean@jaskolskilittel.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Tyrone Shoes"], ["email", "sean@jaskolskilittel.name"], ["encrypted_password", "$2a$04$GGZWyNAO2/5UW2GJBu/5A.npI0R706kvuv2KuQv2dTtBGSUbj27Pe"], ["confirmed_at", "2019-08-30 14:57:41.100471"], ["uid", "sean@jaskolskilittel.name"], ["created_at", "2019-08-30 14:57:41.101652"], ["updated_at", "2019-08-30 14:57:41.101652"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "stevie@boyer.com"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "stevie@boyer.com"], ["encrypted_password", "$2a$04$L/RauKsz1Ur6b9gGEaRtXuSRsYY9nX4o3q/m12svvm6Vzq3Kv9bFK"], ["confirmed_at", "2019-08-30 14:57:44.872042"], ["name", "Ilene North"], ["email", "stevie@boyer.com"], ["tokens", "{}"], ["created_at", "2019-08-30 14:57:44.873403"], ["updated_at", "2019-08-30 14:57:44.873403"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"stevie@boyer.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stevie@boyer.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"tZUyz101cHIHg9gOzUcdIw\":{\"token\":\"$2a$12$3SSRXnpLb4lumVpo8oHeHewZ.LyvcpU8vqCqwaKcbgxvCoBUOLUte\",\"expiry\":1568386665,\"last_token\":null,\"updated_at\":\"2019-08-30T09:57:45.078-05:00\"}}"], ["updated_at", "2019-08-30 14:57:45.079382"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 14:57:45.085597"], ["last_sign_in_at", "2019-08-30 14:57:45.085597"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 14:57:45.086313"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 199ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "annalisa_heel@bernhard.org"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "annalisa_heel@bernhard.org"], ["encrypted_password", "$2a$04$LAEUMFKY64I663S8lYaL0.eojXVkJoDMIXLBARyTnuShfuyKMsTsW"], ["confirmed_at", "2019-08-30 14:57:45.096038"], ["name", "Hy Ball"], ["email", "annalisa_heel@bernhard.org"], ["tokens", "{}"], ["created_at", "2019-08-30 14:57:45.096816"], ["updated_at", "2019-08-30 14:57:45.096816"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"annalisa_heel@bernhard.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "annalisa_heel@bernhard.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 14:57:45.101400"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "courtney.kilback@luettgen.name"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "f14b7f59b60f2989f796c35c5498a7c492fce9e174e0d8b9575f65fb559482e2"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "courtney.kilback@luettgen.name"], ["encrypted_password", "$2a$04$ll4Qp2hDkLEzuXC/m3B.9O1fcVIHv5hj7bJgh3QKlZgdo.gf6KMR2"], ["confirmation_token", "DNxsuKhhepkzn1dxTBU7"], ["confirmation_sent_at", "2019-08-30 14:57:45.189411"], ["name", "Wanda Rinn"], ["email", "courtney.kilback@luettgen.name"], ["tokens", "{}"], ["created_at", "2019-08-30 14:57:45.105760"], ["updated_at", "2019-08-30 14:57:45.105760"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"courtney.kilback@luettgen.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "courtney.kilback@luettgen.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "deangelo_schowalter@kochbrown.co"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "deangelo_schowalter@kochbrown.co"], ["encrypted_password", "$2a$04$gFve4v93kq8RtWjdqLcc8.mP.N7u0VVSSZxSBceogq1d4sLjBsWJ2"], ["confirmed_at", "2019-08-30 14:57:45.196168"], ["locked_at", "2019-08-30 14:57:45.196182"], ["name", "Rocky Rhoades"], ["email", "deangelo_schowalter@kochbrown.co"], ["tokens", "{}"], ["created_at", "2019-08-30 14:57:45.196911"], ["updated_at", "2019-08-30 14:57:45.196911"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"deangelo_schowalter@kochbrown.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "deangelo_schowalter@kochbrown.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "randall@kovacek.biz"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "randall@kovacek.biz"], ["encrypted_password", "$2a$04$LsAZ9Pdd5ArCPwsnpF.OW.2ohXc7/nnksMxk3gnjbDT186fqfZFPG"], ["confirmed_at", "2019-08-30 14:57:45.203174"], ["name", "Phil Rupp"], ["email", "randall@kovacek.biz"], ["tokens", "{}"], ["created_at", "2019-08-30 14:57:45.203839"], ["updated_at", "2019-08-30 14:57:45.203839"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"randall@kovacek.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "randall@kovacek.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "britany.mueller@franecki.biz"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "britany.mueller@franecki.biz"], ["encrypted_password", "$2a$04$MjRaKe4wZSf2EhjnIBWav.9bI.OMAQZq/Ax7H9mh8Bb6XzXWst5mm"], ["confirmed_at", "2019-08-30 14:57:45.210888"], ["name", "C. Worthy"], ["email", "britany.mueller@franecki.biz"], ["tokens", "{}"], ["created_at", "2019-08-30 14:57:45.211660"], ["updated_at", "2019-08-30 14:57:45.211660"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3vg3MuU7L1GYHkZ7zH3MAg\":{\"token\":\"$2a$12$lnh3guOGiwtHwn7LYiffp.1dAnlfGQ92DMbW20ehLgrx3/xxt3Gga\",\"expiry\":1568386665,\"last_token\":null,\"updated_at\":\"2019-08-30T09:57:45.400-05:00\"}}"], ["updated_at", "2019-08-30 14:57:45.401020"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "britany.mueller@franecki.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 14:57:45.576197"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 175ms (Views: 0.2ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "keneth@bauchbosco.name"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "keneth@bauchbosco.name"], ["encrypted_password", "$2a$04$H6yzmU0SD.vzL4yLYgxzKOxL4z73ZieoYV9D0SzuqqjBT3r3zBPw."], ["confirmed_at", "2019-08-30 14:57:45.583892"], ["name", "Anita Bath"], ["email", "keneth@bauchbosco.name"], ["tokens", "{}"], ["created_at", "2019-08-30 14:57:45.584634"], ["updated_at", "2019-08-30 14:57:45.584634"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dewitt_lind@oreillymaggio.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dewitt_lind@oreillymaggio.info"], ["encrypted_password", "$2a$04$LJ0OSnFVAJ/qj8ODrWdqzOJ2GOPo1LJfcy4WKx/t4w9Q3OZMbEcAu"], ["confirmed_at", "2019-08-30 14:57:49.395239"], ["name", "Stan Still"], ["email", "dewitt_lind@oreillymaggio.info"], ["created_at", "2019-08-30 14:57:49.403663"], ["updated_at", "2019-08-30 14:57:49.403663"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dewitt_lind@oreillymaggio.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dewitt_lind@oreillymaggio.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YpJdpKcAsOjO5SlZCY7oCA\":{\"token\":\"$2a$10$OwFWx9ZAQKJMwgIvkfcy8Of3Hs/Evqx2xZSOchhTE3rPBbRKj0Pgq\",\"expiry\":1568386669,\"updated_at\":\"2019-08-30 14:57:49 UTC\"}}"], ["updated_at", "2019-08-30 14:57:49.477972"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 14:57:49.482618"], ["last_sign_in_at", "2019-08-30 14:57:49.482618"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 14:57:49.483032"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 65ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "linh.daugherty@cormierflatley.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "linh.daugherty@cormierflatley.com"], ["encrypted_password", "$2a$04$lkyJqAb5R/euuOcATXp3Q.w8Zc.aOtMOAiaV9fLq9GW4U/MIsr75u"], ["confirmed_at", "2019-08-30 14:57:49.489395"], ["name", "Hy Lowe"], ["email", "linh.daugherty@cormierflatley.com"], ["created_at", "2019-08-30 14:57:49.490057"], ["updated_at", "2019-08-30 14:57:49.490057"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"linh.daugherty@cormierflatley.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "linh.daugherty@cormierflatley.com"], ["LIMIT", 1]] SQL (0.0ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "krystle.swift@senger.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "krystle.swift@senger.net"], ["encrypted_password", "$2a$04$fFJB13dj2nrgP3.S8zZlMOFinTi8C8qCh1pJROUIboybFe9SyyVc6"], ["confirmation_token", "1CPwMYW_2R8UaMgukS4v"], ["confirmation_sent_at", "2019-08-30 14:57:49.498551"], ["name", "Lisa Carr"], ["email", "krystle.swift@senger.net"], ["created_at", "2019-08-30 14:57:49.498473"], ["updated_at", "2019-08-30 14:57:49.498473"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"krystle.swift@senger.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "krystle.swift@senger.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "florene_jenkins@satterfieldheidenreich.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "florene_jenkins@satterfieldheidenreich.co"], ["encrypted_password", "$2a$04$BRauwL28U1lV.IWFJQQGhO8jSqwSFHaIs5sxW/HVfp7fSLPl9Opb."], ["confirmed_at", "2019-08-30 14:57:49.504882"], ["locked_at", "2019-08-30 14:57:49.504893"], ["name", "Katy Litter"], ["email", "florene_jenkins@satterfieldheidenreich.co"], ["created_at", "2019-08-30 14:57:49.505699"], ["updated_at", "2019-08-30 14:57:49.505699"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"florene_jenkins@satterfieldheidenreich.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "florene_jenkins@satterfieldheidenreich.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kiana@ohara.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kiana@ohara.org"], ["encrypted_password", "$2a$04$jYX0gQEOeE8Ppew2kJEdbetPP6OPh5Rr/jWCVbwVq7X6YGdrTGryK"], ["confirmed_at", "2019-08-30 14:57:49.513613"], ["name", "Les Payne"], ["email", "kiana@ohara.org"], ["created_at", "2019-08-30 14:57:49.514779"], ["updated_at", "2019-08-30 14:57:49.514779"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kiana@ohara.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kiana@ohara.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gaylord@hermannbashirian.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gaylord@hermannbashirian.biz"], ["encrypted_password", "$2a$04$6ub4wnXLiGu1jopD817wwelZjHv1OKYJwq3Q1f.TeLUYm1PhxuV/K"], ["confirmed_at", "2019-08-30 14:57:49.524210"], ["name", "Abbie Birthday"], ["email", "gaylord@hermannbashirian.biz"], ["created_at", "2019-08-30 14:57:49.525448"], ["updated_at", "2019-08-30 14:57:49.525448"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jjBnWFNtjVF0cdegyEQq2A\":{\"token\":\"$2a$10$OK0ACODOzjQCT1lQEfFij.4vrlvl/d/fa9LDWUZMOv..V3b13OPL6\",\"expiry\":1568386669,\"updated_at\":\"2019-08-30 14:57:49 UTC\"}}"], ["updated_at", "2019-08-30 14:57:49.585963"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gaylord@hermannbashirian.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 14:57:49.639163"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "andrew.moriette@cummingsmurray.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "andrew.moriette@cummingsmurray.info"], ["encrypted_password", "$2a$04$5JwKafBysfRmohTrG0oYguiD.EJS.HesqiC3Kr12/ctBhwU4u.V4i"], ["confirmed_at", "2019-08-30 14:57:49.646927"], ["name", "Dee Liver"], ["email", "andrew.moriette@cummingsmurray.info"], ["created_at", "2019-08-30 14:57:49.647737"], ["updated_at", "2019-08-30 14:57:49.647737"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "beulah@torphy.co"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "beulah@torphy.co"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "beulah@torphy.co"], ["encrypted_password", "$2a$04$hLMkQ/Vx6MJDUHKyKPFn4.UTVAONyGN7.pcvzQ6KZO64oCBNRA4SO"], ["confirmed_at", "2019-08-30 14:57:53.936080"], ["name", "Rita Story"], ["email", "beulah@torphy.co"], ["tokens", "{}"], ["created_at", "2019-08-30 14:57:53.939750"], ["updated_at", "2019-08-30 14:57:53.939750"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"beulah@torphy.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "beulah@torphy.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ns8EvpZcLo-ijxgMQGbVJQ\":{\"token\":\"$2a$12$8v70ZgETdRXEZIqhO0l1ceYuTAIS5LdZGV4fsWnQPBpVUBxSIiTzK\",\"expiry\":1568386674,\"last_token\":null,\"updated_at\":\"2019-08-30T09:57:54.160-05:00\"}}"], ["updated_at", "2019-08-30 14:57:54.161294"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 14:57:54.164844"], ["last_sign_in_at", "2019-08-30 14:57:54.164844"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 14:57:54.165154"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 210ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gabriella_bernier@kihn.net"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "gabriella_bernier@kihn.net"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gabriella_bernier@kihn.net"], ["encrypted_password", "$2a$04$U/dY7ojmT02dYgtR78ICiuKAW9AhTL3f.HahVBjqYA4EPXMOh70YG"], ["confirmed_at", "2019-08-30 14:57:54.173267"], ["name", "Brooke Waters"], ["email", "gabriella_bernier@kihn.net"], ["tokens", "{}"], ["created_at", "2019-08-30 14:57:54.174758"], ["updated_at", "2019-08-30 14:57:54.174758"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"gabriella_bernier@kihn.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gabriella_bernier@kihn.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 14:57:54.180024"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hermine_ernser@fadel.name"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "hermine_ernser@fadel.name"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hermine_ernser@fadel.name"], ["encrypted_password", "$2a$04$jr.IL.6OHNra3aOjR.83yeiYpGKAVraLaZOwuiVAPQcB5IFYTkVhm"], ["confirmation_token", "h-sgs8z_ezo795rCro-g"], ["confirmation_sent_at", "2019-08-30 14:57:54.186029"], ["name", "Brooke Waters"], ["email", "hermine_ernser@fadel.name"], ["tokens", "{}"], ["created_at", "2019-08-30 14:57:54.185890"], ["updated_at", "2019-08-30 14:57:54.185890"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"hermine_ernser@fadel.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hermine_ernser@fadel.name"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hortensia.zieme@bartonpaucek.co"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "hortensia.zieme@bartonpaucek.co"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hortensia.zieme@bartonpaucek.co"], ["encrypted_password", "$2a$04$sXI0iICgEvdXtDyced6nXOI.4yUzMa6irNFLd/edXDBSAnSQvRL2S"], ["confirmed_at", "2019-08-30 14:57:54.196823"], ["locked_at", "2019-08-30 14:57:54.196855"], ["name", "Skip Stone"], ["email", "hortensia.zieme@bartonpaucek.co"], ["tokens", "{}"], ["created_at", "2019-08-30 14:57:54.198372"], ["updated_at", "2019-08-30 14:57:54.198372"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"hortensia.zieme@bartonpaucek.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hortensia.zieme@bartonpaucek.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "colby@rohanraynor.info"], ["LIMIT", 1]]  (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "colby@rohanraynor.info"]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "colby@rohanraynor.info"], ["encrypted_password", "$2a$04$MBbjEGY9y5Q2782sn9E74e2ymzxOd1ns0QCGQfxD9eDtgC91g.glO"], ["confirmed_at", "2019-08-30 14:57:54.208001"], ["name", "Holly Day"], ["email", "colby@rohanraynor.info"], ["tokens", "{}"], ["created_at", "2019-08-30 14:57:54.211168"], ["updated_at", "2019-08-30 14:57:54.211168"], ["auth_available", "f"]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"colby@rohanraynor.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "colby@rohanraynor.info"], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ona@torphy.net"], ["LIMIT", 1]]  (0.3ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "ona@torphy.net"]] SQL (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ona@torphy.net"], ["encrypted_password", "$2a$04$hCYNMdfFbYrFebhG31IJu.9fepTx777qjL21u/Kr55Gc1bw5esCW."], ["confirmed_at", "2019-08-30 14:57:54.225330"], ["name", "Bob Ng"], ["email", "ona@torphy.net"], ["tokens", "{}"], ["created_at", "2019-08-30 14:57:54.230021"], ["updated_at", "2019-08-30 14:57:54.230021"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LNxhvjjseuVqS8P-wt6Z0A\":{\"token\":\"$2a$12$pLda2ZtMFOJyo6jEvH8NFu6FNmpYEtvK.fnGq8SALHl9YYMhHbFHK\",\"expiry\":1568386674,\"last_token\":null,\"updated_at\":\"2019-08-30T09:57:54.448-05:00\"}}"], ["updated_at", "2019-08-30 14:57:54.449580"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ona@torphy.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 14:57:54.630433"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 180ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jonas@zboncak.name"], ["LIMIT", 1]]  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "jonas@zboncak.name"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jonas@zboncak.name"], ["encrypted_password", "$2a$04$W4N5BAiRUYEF12w9wsywru6GJG3iSl507wpP7mb.ddxIUWHnaMMyO"], ["confirmed_at", "2019-08-30 14:57:54.636638"], ["name", "Barry Shmelly"], ["email", "jonas@zboncak.name"], ["tokens", "{}"], ["created_at", "2019-08-30 14:57:54.637575"], ["updated_at", "2019-08-30 14:57:54.637575"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marian@mosciskicronin.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marian@mosciskicronin.co"], ["encrypted_password", "$2a$04$L2KUp.24BaKIapWLtWB2I.QrvMTpFhi3zUNKWvEr25CehL/XNWq/G"], ["confirmed_at", "2019-08-30 14:57:58.224884"], ["name", "Bea Lowe"], ["email", "marian@mosciskicronin.co"], ["created_at", "2019-08-30 14:57:58.226717"], ["updated_at", "2019-08-30 14:57:58.226717"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"marian@mosciskicronin.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marian@mosciskicronin.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"FJISzjMQWJURFaDvj878bw\":{\"token\":\"$2a$10$YhzQ3otaUyFBh0pCqYjudejx7DZ5OCUGgHyTQ2Ll9C0l3QbLsvmmy\",\"expiry\":1568386678,\"updated_at\":\"2019-08-30 14:57:58 UTC\"}}"], ["updated_at", "2019-08-30 14:57:58.292671"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 14:57:58.296698"], ["last_sign_in_at", "2019-08-30 14:57:58.296698"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 14:57:58.297465"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deja_pollich@kuhicleannon.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "deja_pollich@kuhicleannon.org"], ["encrypted_password", "$2a$04$r1kZafR67rAOlkzpT0STr.YCv7IQzklyHLTjbAYKpeDGpl5rcYK6m"], ["confirmed_at", "2019-08-30 14:57:58.305002"], ["name", "Tom Katt"], ["email", "deja_pollich@kuhicleannon.org"], ["created_at", "2019-08-30 14:57:58.305805"], ["updated_at", "2019-08-30 14:57:58.305805"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"deja_pollich@kuhicleannon.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "deja_pollich@kuhicleannon.org"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joseph@smitham.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "joseph@smitham.biz"], ["encrypted_password", "$2a$04$cvStEwha9GH4X87/bkFjPuR.aMFwma53JUl7mrA4VunzimRZMS5zu"], ["confirmation_token", "ZF_6tmxT7EUPDWuYG53z"], ["confirmation_sent_at", "2019-08-30 14:57:58.316178"], ["name", "Rusty Carr"], ["email", "joseph@smitham.biz"], ["created_at", "2019-08-30 14:57:58.316057"], ["updated_at", "2019-08-30 14:57:58.316057"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"joseph@smitham.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "joseph@smitham.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jude.ziemann@schimmel.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jude.ziemann@schimmel.name"], ["encrypted_password", "$2a$04$TFJt02uj80aZrBkbmPKrXe2tGi4qu/VlfV87h1AiMCQo7X4Lnjxyu"], ["confirmed_at", "2019-08-30 14:57:58.323254"], ["locked_at", "2019-08-30 14:57:58.323285"], ["name", "Matt Tress"], ["email", "jude.ziemann@schimmel.name"], ["created_at", "2019-08-30 14:57:58.325248"], ["updated_at", "2019-08-30 14:57:58.325248"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jude.ziemann@schimmel.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jude.ziemann@schimmel.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "maddie@feilheidenreich.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "maddie@feilheidenreich.com"], ["encrypted_password", "$2a$04$F5sE/fFBfp/SSwr2wimKXeO.PODznoX10ObeudKjIczyjvZnqj9cK"], ["confirmed_at", "2019-08-30 14:57:58.334378"], ["name", "Reed Toomey"], ["email", "maddie@feilheidenreich.com"], ["created_at", "2019-08-30 14:57:58.335598"], ["updated_at", "2019-08-30 14:57:58.335598"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"maddie@feilheidenreich.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "maddie@feilheidenreich.com"], ["LIMIT", 1]] Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "millie@beer.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "millie@beer.co"], ["encrypted_password", "$2a$04$tXR0GD0gL7ofdNE7NN0rOe/wVh98QXzY.8XAZSuxVkQInhsbCVluK"], ["confirmed_at", "2019-08-30 14:57:58.347799"], ["name", "Anna Mull"], ["email", "millie@beer.co"], ["created_at", "2019-08-30 14:57:58.349109"], ["updated_at", "2019-08-30 14:57:58.349109"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jOyBd-TT3AIa7sgIKLXK2Q\":{\"token\":\"$2a$10$8FSBf1g3gdnQUcfr6.2qm.AJHl9YJ1AMhuLJjWz2pCz96WaF9aqMa\",\"expiry\":1568386678,\"updated_at\":\"2019-08-30 14:57:58 UTC\"}}"], ["updated_at", "2019-08-30 14:57:58.406882"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "millie@beer.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 14:57:58.454735"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:57:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "don@lehner.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "don@lehner.biz"], ["encrypted_password", "$2a$04$jQfiWd72.E7k2esMgJ9T3O3gVz9EefBdBnMyB8eAkWeLlrEpSHw4S"], ["confirmed_at", "2019-08-30 14:57:58.462102"], ["name", "Bill Dollar"], ["email", "don@lehner.biz"], ["created_at", "2019-08-30 14:57:58.462932"], ["updated_at", "2019-08-30 14:57:58.462932"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "doreen@turcotte.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "doreen@turcotte.name"], ["encrypted_password", "$2a$04$XYSGg5mY3Zun/TzjHHK66.jzJKoGXfVfmDsS/L.EssKdl41h8ISxi"], ["confirmed_at", "2019-08-30 14:58:02.473553"], ["name", "Chris Ko"], ["email", "doreen@turcotte.name"], ["tokens", "{}"], ["created_at", "2019-08-30 14:58:02.476312"], ["updated_at", "2019-08-30 14:58:02.476312"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"doreen@turcotte.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "doreen@turcotte.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"N4WzYMUkJC4JM-OELGDFTg\":{\"token\":\"$2a$12$b9jwULESz2kpDi1VMlah5urtQmNBqs.tfKjpPR9DwsJupKdYs/teS\",\"expiry\":1568386682,\"last_token\":null,\"updated_at\":\"2019-08-30T09:58:02.505-05:00\"}}"], ["updated_at", "2019-08-30 14:58:02.691725"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 14:58:02.694533"], ["last_sign_in_at", "2019-08-30 14:58:02.694533"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 14:58:02.694796"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 201ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "danyell.blick@champlin.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "danyell.blick@champlin.biz"], ["encrypted_password", "$2a$04$fbc8vxZgd8jJwcCRcMGqF.EkgjqJnZYJ1zpijQXZKxq23xeEBlf4C"], ["confirmed_at", "2019-08-30 14:58:02.702169"], ["name", "Liz Onnia"], ["email", "danyell.blick@champlin.biz"], ["tokens", "{}"], ["created_at", "2019-08-30 14:58:02.702930"], ["updated_at", "2019-08-30 14:58:02.702930"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"danyell.blick@champlin.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "danyell.blick@champlin.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-08-30 14:58:02.707548"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "claris_stoltenberg@wisozkweinat.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "claris_stoltenberg@wisozkweinat.biz"], ["encrypted_password", "$2a$04$HzyzBkBqS0T2pP/LM9qP2ejMWDp43mRiI922abLpJoVQeqyxConxi"], ["confirmation_token", "1BqBsx_jyzSsWMBVzjyp"], ["confirmation_sent_at", "2019-08-30 14:58:02.712159"], ["name", "Ann Tartica"], ["email", "claris_stoltenberg@wisozkweinat.biz"], ["tokens", "{}"], ["created_at", "2019-08-30 14:58:02.712072"], ["updated_at", "2019-08-30 14:58:02.712072"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"claris_stoltenberg@wisozkweinat.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "claris_stoltenberg@wisozkweinat.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "damien_gleichner@nolan.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "damien_gleichner@nolan.net"], ["encrypted_password", "$2a$04$ARnu7fLoTjfXzCRwVumaQegTN9qDOPROHwAFS8tAzXQdkX7J5V/Qu"], ["confirmed_at", "2019-08-30 14:58:02.718768"], ["locked_at", "2019-08-30 14:58:02.718779"], ["name", "Dusty Sandmann"], ["email", "damien_gleichner@nolan.net"], ["tokens", "{}"], ["created_at", "2019-08-30 14:58:02.719605"], ["updated_at", "2019-08-30 14:58:02.719605"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"damien_gleichner@nolan.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "damien_gleichner@nolan.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joselyn_ruecker@kuvalis.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "joselyn_ruecker@kuvalis.io"], ["encrypted_password", "$2a$04$l8c/ioHgh2MD.tv6aGMyUecpsuHLRFgUGYjq1JusayIIweaxECbf."], ["confirmed_at", "2019-08-30 14:58:02.726644"], ["name", "Bea Sting"], ["email", "joselyn_ruecker@kuvalis.io"], ["tokens", "{}"], ["created_at", "2019-08-30 14:58:02.727433"], ["updated_at", "2019-08-30 14:58:02.727433"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"joselyn_ruecker@kuvalis.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "joselyn_ruecker@kuvalis.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "donetta@king.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "donetta@king.co"], ["encrypted_password", "$2a$04$KlNYaNcT1BfgCWWyHmiSnO0z7/vrij6nC2pKjy7w0M7cMimkkhjE."], ["confirmed_at", "2019-08-30 14:58:02.736558"], ["name", "Ella Vader"], ["email", "donetta@king.co"], ["tokens", "{}"], ["created_at", "2019-08-30 14:58:02.737678"], ["updated_at", "2019-08-30 14:58:02.737678"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5NmZHkIn7f-LQ1dRGD1GtQ\":{\"token\":\"$2a$12$L3D5fxU0MLcX79SorK67H.MsJaw.nwXS0tQBuxan7wnlrsQYjB6T6\",\"expiry\":1568386682,\"last_token\":null,\"updated_at\":\"2019-08-30T09:58:02.738-05:00\"}}"], ["updated_at", "2019-08-30 14:58:02.919577"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "donetta@king.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-08-30 14:58:03.091851"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 172ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "richard.mcglynn@frami.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "richard.mcglynn@frami.net"], ["encrypted_password", "$2a$04$DvBmPGGgtc6Vw/uyk.2PjeEPLoZKr1eh6GivcyzrgNCL2E7eYJzZK"], ["confirmed_at", "2019-08-30 14:58:03.100743"], ["name", "Doug Graves"], ["email", "richard.mcglynn@frami.net"], ["tokens", "{}"], ["created_at", "2019-08-30 14:58:03.101710"], ["updated_at", "2019-08-30 14:58:03.101710"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rocco_corwin@sauerdoyle.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rocco_corwin@sauerdoyle.io"], ["encrypted_password", "$2a$04$M8m3TS64FdS763PIrPEtre8HiFtjkDipNqvnSNeeliPl3I01rNg/G"], ["confirmed_at", "2019-08-30 14:58:06.494043"], ["name", "Katy Litter"], ["email", "rocco_corwin@sauerdoyle.io"], ["created_at", "2019-08-30 14:58:06.495970"], ["updated_at", "2019-08-30 14:58:06.495970"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rocco_corwin@sauerdoyle.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rocco_corwin@sauerdoyle.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"FL-IVzvTBZFcFke5iUp1Aw\":{\"token\":\"$2a$10$mnNA7ddjk5OJEGhEZTF5ZOz.SbKH8kuNvoiKs3PxuySPdkDrF2HSa\",\"expiry\":1568386686,\"updated_at\":\"2019-08-30 14:58:06 UTC\"}}"], ["updated_at", "2019-08-30 14:58:06.563494"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 14:58:06.566211"], ["last_sign_in_at", "2019-08-30 14:58:06.566211"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 14:58:06.566497"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lyda@oconnell.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lyda@oconnell.net"], ["encrypted_password", "$2a$04$ihjRv6SiC0NiR.mVPRVpSuHTrAU/Pp26UC5UZbbs3xdQkt5rm52hu"], ["confirmed_at", "2019-08-30 14:58:06.574134"], ["name", "Phil Graves"], ["email", "lyda@oconnell.net"], ["created_at", "2019-08-30 14:58:06.575043"], ["updated_at", "2019-08-30 14:58:06.575043"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lyda@oconnell.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lyda@oconnell.net"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeffrey.okuneva@huel.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jeffrey.okuneva@huel.biz"], ["encrypted_password", "$2a$04$8xhFvOCM6XlfhMGeU/oSS.yE1f.MOiXWAac49/P84Frsp/BwwYyFa"], ["confirmation_token", "8AzeVhxXpwXTK87F6NWS"], ["confirmation_sent_at", "2019-08-30 14:58:06.585290"], ["name", "Ben Down"], ["email", "jeffrey.okuneva@huel.biz"], ["created_at", "2019-08-30 14:58:06.585211"], ["updated_at", "2019-08-30 14:58:06.585211"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jeffrey.okuneva@huel.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jeffrey.okuneva@huel.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tyler@streich.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tyler@streich.info"], ["encrypted_password", "$2a$04$BfOZOgvkEthlnfk9N9QTNelXqrE/OMrSO/k8tAVLFXjjQSSkEZQc2"], ["confirmed_at", "2019-08-30 14:58:06.591515"], ["locked_at", "2019-08-30 14:58:06.591530"], ["name", "Bill Overdew"], ["email", "tyler@streich.info"], ["created_at", "2019-08-30 14:58:06.592403"], ["updated_at", "2019-08-30 14:58:06.592403"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tyler@streich.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tyler@streich.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "johnson_collier@barrowchaden.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "johnson_collier@barrowchaden.net"], ["encrypted_password", "$2a$04$dIE3a1MSsaplkCetC8qI1uls66j3U8zNYatpeJhtL2eQjZP/w6xPy"], ["confirmed_at", "2019-08-30 14:58:06.600659"], ["name", "Brandy Bottle"], ["email", "johnson_collier@barrowchaden.net"], ["created_at", "2019-08-30 14:58:06.601592"], ["updated_at", "2019-08-30 14:58:06.601592"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"johnson_collier@barrowchaden.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "johnson_collier@barrowchaden.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kenny.heaney@ernser.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kenny.heaney@ernser.co"], ["encrypted_password", "$2a$04$8iuIAjXQKRkBGx1u9IcFeOb4sd.aBL6Bd4penGiwJlOvlkn.2rKIq"], ["confirmed_at", "2019-08-30 14:58:06.610703"], ["name", "Brooke Trout"], ["email", "kenny.heaney@ernser.co"], ["created_at", "2019-08-30 14:58:06.611668"], ["updated_at", "2019-08-30 14:58:06.611668"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"aumhgz-NNmntXJ75k1-LMg\":{\"token\":\"$2a$10$OJuDr9lUGpfGyNIUGH8sXO/s7.IITZ3gbq1bBznDzs1gBjupvAZJi\",\"expiry\":1568386686,\"updated_at\":\"2019-08-30 14:58:06 UTC\"}}"], ["updated_at", "2019-08-30 14:58:06.666282"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kenny.heaney@ernser.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 14:58:06.713771"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "breana_huel@krisgreen.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "breana_huel@krisgreen.net"], ["encrypted_password", "$2a$04$Tf8MUfJXBY3.qMwWbpuAheMxhd4qSUXUnmVi/8unE8PfYLf8I6KNO"], ["confirmed_at", "2019-08-30 14:58:06.720865"], ["name", "Dan Deline"], ["email", "breana_huel@krisgreen.net"], ["created_at", "2019-08-30 14:58:06.721635"], ["updated_at", "2019-08-30 14:58:06.721635"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (1.1ms) SELECT sqlite_version(*)  (1.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dominique@huel.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dominique@huel.name"], ["encrypted_password", "$2a$04$Rf8lTMs7pmApUcw8WHuV1ug/xOvXzMMVVv57jUycqUxIAO7fNoFeS"], ["confirmed_at", "2019-08-30 14:58:10.896506"], ["name", "Adam Meway"], ["email", "dominique@huel.name"], ["created_at", "2019-08-30 14:58:10.898111"], ["updated_at", "2019-08-30 14:58:10.898111"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dominique@huel.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dominique@huel.name"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ILLZGE_ibP8HLPW1TmDCKg\":{\"token\":\"$2a$10$6Kz/astcMteGABELoa.lC.suqcU.A6WIfAyhxwvmnG8GvRW.rpSHq\",\"expiry\":1568386690,\"updated_at\":\"2019-08-30 14:58:10 UTC\"}}"], ["updated_at", "2019-08-30 14:58:10.976468"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-08-30 14:58:10.979547"], ["last_sign_in_at", "2019-08-30 14:58:10.979547"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-08-30 14:58:10.979754"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 65ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 11924) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wonda.hoeger@fadelberge.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "wonda.hoeger@fadelberge.co"], ["encrypted_password", "$2a$04$jLfQt35jYtIwQeElfWmCO.GFQ/gr3h2zIz33vKVO5n9Aix5QitrzO"], ["confirmed_at", "2019-08-30 14:58:10.988437"], ["name", "Rusty Nails"], ["email", "wonda.hoeger@fadelberge.co"], ["created_at", "2019-08-30 14:58:10.989301"], ["updated_at", "2019-08-30 14:58:10.989301"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"wonda.hoeger@fadelberge.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "wonda.hoeger@fadelberge.co"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2055) TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "earnest.kunde@leannon.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "earnest.kunde@leannon.com"], ["encrypted_password", "$2a$04$8Leg/85Yz8WN.Lybh0jhZOjJM4cn03AHiM/dli3GUwuZPdMpIQtoS"], ["confirmation_token", "UReowFNTiS66yKbyvrqp"], ["confirmation_sent_at", "2019-08-30 14:58:10.999281"], ["name", "Jacques Strap"], ["email", "earnest.kunde@leannon.com"], ["created_at", "2019-08-30 14:58:10.999200"], ["updated_at", "2019-08-30 14:58:10.999200"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"earnest.kunde@leannon.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "earnest.kunde@leannon.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1407) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "keeley_lubowitz@larson.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "keeley_lubowitz@larson.org"], ["encrypted_password", "$2a$04$h2I.zu1WwiIQ6f5dF1Yp0u/ZDY.sUhT1EFa3HhxJYs2jQY9JAYNZy"], ["confirmed_at", "2019-08-30 14:58:11.005952"], ["locked_at", "2019-08-30 14:58:11.005984"], ["name", "Colin Allcars"], ["email", "keeley_lubowitz@larson.org"], ["created_at", "2019-08-30 14:58:11.008049"], ["updated_at", "2019-08-30 14:58:11.008049"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"keeley_lubowitz@larson.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "keeley_lubowitz@larson.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1425) TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marleen@aufderharschoen.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "marleen@aufderharschoen.biz"], ["encrypted_password", "$2a$04$JnKyfq6bwc5pwo3Q/VZtEOQsncQNZB8oEr7k0ULiRZx.J2aEzGVMu"], ["confirmed_at", "2019-08-30 14:58:11.017512"], ["name", "Winnie Bago"], ["email", "marleen@aufderharschoen.biz"], ["created_at", "2019-08-30 14:58:11.018801"], ["updated_at", "2019-08-30 14:58:11.018801"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"marleen@aufderharschoen.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marleen@aufderharschoen.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1404) TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eli.braun@kunzemohr.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "eli.braun@kunzemohr.co"], ["encrypted_password", "$2a$04$fIXMmphsDc8LSM7e5S6.dO.yksYjmtHP4169XPK8JMe8HStDjXziC"], ["confirmed_at", "2019-08-30 14:58:11.028614"], ["name", "Chris Ko"], ["email", "eli.braun@kunzemohr.co"], ["created_at", "2019-08-30 14:58:11.029560"], ["updated_at", "2019-08-30 14:58:11.029560"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"6riE2yZRFUXKNk-dQZWjfg\":{\"token\":\"$2a$10$U9akQLY.M/AhimS31smpOOuRcZvmPmqA/krMrwQET9KyTiBeVZtVq\",\"expiry\":1568386691,\"updated_at\":\"2019-08-30 14:58:11 UTC\"}}"], ["updated_at", "2019-08-30 14:58:11.087743"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "eli.braun@kunzemohr.co"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-08-30 14:58:11.136554"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 48ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1970) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-08-30 09:58:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1002) TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "robby_kub@hackett.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "robby_kub@hackett.net"], ["encrypted_password", "$2a$04$nXl64P.4dpCofdl7BjoX1uchwe/eUoETTrIbHSmpWmiauvEB7H9Qe"], ["confirmed_at", "2019-08-30 14:58:11.144853"], ["name", "Hy Ball"], ["email", "robby_kub@hackett.net"], ["created_at", "2019-08-30 14:58:11.145757"], ["updated_at", "2019-08-30 14:58:11.145757"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "zaida@hirthe.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "zaida@hirthe.info"], ["encrypted_password", "$2a$04$Cc6u0XsCXboQmg7MAQVNieIWA3zycFavBobR1xHJt234DWykZDkDi"], ["confirmed_at", "2019-09-01 17:34:14.277809"], ["name", "Gladys Eeya"], ["email", "zaida@hirthe.info"], ["created_at", "2019-09-01 17:34:14.279999"], ["updated_at", "2019-09-01 17:34:14.279999"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:34:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"zaida@hirthe.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "zaida@hirthe.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"WJvy_ae4r0qVlpmuJPZSCA\":{\"token\":\"$2a$10$L7I7GQlyUEClB4u2uS7YI.H76nGTgqQfQcfFaxlWlpsDb2fATqEji\",\"expiry\":1568568854,\"updated_at\":\"2019-09-01 17:34:14 UTC\"}}"], ["updated_at", "2019-09-01 17:34:14.374691"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-01 17:34:14.377507"], ["last_sign_in_at", "2019-09-01 17:34:14.377507"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-01 17:34:14.377801"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 76ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "noreen@kreiger.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "noreen@kreiger.org"], ["encrypted_password", "$2a$04$9t13cEbwqdBwzG5aYA8ZP.zIy1tPA6o.C1ToLbsPHVeJZhqI.V8Ga"], ["confirmed_at", "2019-09-01 17:34:14.385892"], ["name", "Bess Twishes"], ["email", "noreen@kreiger.org"], ["created_at", "2019-09-01 17:34:14.386960"], ["updated_at", "2019-09-01 17:34:14.386960"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:34:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"noreen@kreiger.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "noreen@kreiger.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "daron_kovacek@thompson.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "daron_kovacek@thompson.org"], ["encrypted_password", "$2a$04$bSegAY5UUzhU0XQHN8/f4e5ENOR92FvLEap.feFgJDpQW9duF6z0i"], ["confirmation_token", "B7sZGn6CPd_DoDsQSv8w"], ["confirmation_sent_at", "2019-09-01 17:34:14.397801"], ["name", "Joaquin DeFlores"], ["email", "daron_kovacek@thompson.org"], ["created_at", "2019-09-01 17:34:14.397707"], ["updated_at", "2019-09-01 17:34:14.397707"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:34:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"daron_kovacek@thompson.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "daron_kovacek@thompson.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ahmed@wunschkuhlman.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ahmed@wunschkuhlman.biz"], ["encrypted_password", "$2a$04$FQTGpX6hHou4m6wUQ2qaperump1F6T09UXXBPU3dL0UhS6JTbnbtu"], ["confirmed_at", "2019-09-01 17:34:14.404951"], ["locked_at", "2019-09-01 17:34:14.404965"], ["name", "Stu Pitt"], ["email", "ahmed@wunschkuhlman.biz"], ["created_at", "2019-09-01 17:34:14.405894"], ["updated_at", "2019-09-01 17:34:14.405894"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:34:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ahmed@wunschkuhlman.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ahmed@wunschkuhlman.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "burt_purdy@mcclureolson.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "burt_purdy@mcclureolson.io"], ["encrypted_password", "$2a$04$5wjHI6Ly7TBMaGOjhnTmKeoBvC2i9acijV4GIUvNEah0iXabdjhKi"], ["confirmed_at", "2019-09-01 17:34:14.412958"], ["name", "Bruce Easley"], ["email", "burt_purdy@mcclureolson.io"], ["created_at", "2019-09-01 17:34:14.413964"], ["updated_at", "2019-09-01 17:34:14.413964"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:34:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"burt_purdy@mcclureolson.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "burt_purdy@mcclureolson.io"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kandace@heller.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kandace@heller.co"], ["encrypted_password", "$2a$04$R0uLb4g3wssNARMKxir0eeJ8HFeynDm60cbwfCmzzO6WZ0q99rvkm"], ["confirmed_at", "2019-09-01 17:34:14.423732"], ["name", "Nick O'Time"], ["email", "kandace@heller.co"], ["created_at", "2019-09-01 17:34:14.424581"], ["updated_at", "2019-09-01 17:34:14.424581"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hnzD-kNrG1YaobQSSiokkg\":{\"token\":\"$2a$10$2SmucW31vMxjJQq8Y9uK0O3Av6/YVvXLHeNuhL/acRFh6hIRdD1KO\",\"expiry\":1568568854,\"updated_at\":\"2019-09-01 17:34:14 UTC\"}}"], ["updated_at", "2019-09-01 17:34:14.477149"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:34:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kandace@heller.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-01 17:34:14.535838"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:34:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "debera@windler.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "debera@windler.com"], ["encrypted_password", "$2a$04$7ERiORm6y040jzQ91eUfye7yOUBmKaCwwPS15oWRlQrNxJW7QZxse"], ["confirmed_at", "2019-09-01 17:34:14.544231"], ["name", "Terry Achey"], ["email", "debera@windler.com"], ["created_at", "2019-09-01 17:34:14.545523"], ["updated_at", "2019-09-01 17:34:14.545523"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:34:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n userSignUp(\n email: \"lakeisha_kovacek@haag.io\"\n name: \"Temika Kling II\"\n password: \"43It32GcSrL7\"\n passwordConfirmation: \"43It32GcSrL7\"\n confirmSuccessUrl: \"http://balistreri.net/brice_johns\"\n ) {\n success\n errors\n user {\n email\n name\n }\n }\n}\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lakeisha_kovacek@haag.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lakeisha_kovacek@haag.io"], ["encrypted_password", "$2a$04$eKehvC.i0hiSxn4USOEr4OpXuxW1cVjduWxhvbGei4FrBT0pKLDpi"], ["confirmation_token", "_GVm8mjGPyiSUb1LHHt7"], ["confirmation_sent_at", "2019-09-01 17:34:14.560140"], ["name", "Temika Kling II"], ["email", "lakeisha_kovacek@haag.io"], ["created_at", "2019-09-01 17:34:14.560045"], ["updated_at", "2019-09-01 17:34:14.560045"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering devise/mailer/confirmation_instructions.html.erb Rendered devise/mailer/confirmation_instructions.html.erb (1.3ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 158.8ms Sent mail to lakeisha_kovacek@haag.io (7.7ms) Date: Sun, 01 Sep 2019 12:34:20 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: lakeisha_kovacek@haag.io Message-ID: <5d6c011cb1716_5efa3fc2f20320107649a@Marios-MBP.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://balistreri.net/brice_johns

Welcome lakeisha_kovacek@haag.io!

You can confirm your account email through the link below:

Completed 200 OK in 6177ms (Views: 0.2ms | ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "francie_schaden@lynch.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "francie_schaden@lynch.org"], ["encrypted_password", "$2a$04$IqiVAUx8fp6Trx1RvPf7XeHzVhudUqrTZU3nxek5hTtguw0elTESi"], ["confirmed_at", "2019-09-01 17:47:46.968059"], ["name", "Rusty Blades"], ["email", "francie_schaden@lynch.org"], ["created_at", "2019-09-01 17:47:46.970132"], ["updated_at", "2019-09-01 17:47:46.970132"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:47:46 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"francie_schaden@lynch.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "francie_schaden@lynch.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"K4tdSw_KR0_ZRrAcD1KHaw\":{\"token\":\"$2a$10$r7ULmwte2r3q/W2EZ4x1quWfSrlNNwZHGNmd380d2TFci0DL3TqYC\",\"expiry\":1568569667,\"updated_at\":\"2019-09-01 17:47:46 UTC\"}}"], ["updated_at", "2019-09-01 17:47:47.040512"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-01 17:47:47.044281"], ["last_sign_in_at", "2019-09-01 17:47:47.044281"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-01 17:47:47.044764"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fidel@bartell.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "fidel@bartell.org"], ["encrypted_password", "$2a$04$zal0aGskK3IjYX1H6U3FN./PIQhyGTTshonr9F3emzWlCxS/5i9nm"], ["confirmed_at", "2019-09-01 17:47:47.052334"], ["name", "Nick O'Time"], ["email", "fidel@bartell.org"], ["created_at", "2019-09-01 17:47:47.053213"], ["updated_at", "2019-09-01 17:47:47.053213"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:47:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"fidel@bartell.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "fidel@bartell.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brittney@leannon.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "brittney@leannon.biz"], ["encrypted_password", "$2a$04$uhFtFbilQ0PnvqjODlqEX.fs3HcotA3iMO5kZlixFN2JAw7uFk3SW"], ["confirmation_token", "jnN9VaPdHNwepCDKS13F"], ["confirmation_sent_at", "2019-09-01 17:47:47.063034"], ["name", "Sarah Doctorinthehouse"], ["email", "brittney@leannon.biz"], ["created_at", "2019-09-01 17:47:47.062940"], ["updated_at", "2019-09-01 17:47:47.062940"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:47:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"brittney@leannon.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "brittney@leannon.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lloyd@windler.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lloyd@windler.com"], ["encrypted_password", "$2a$04$yXBGEv3F3u0VxVDtsUgHL.YzJnAgzYBhBIBM6pS7WZlfcvASDOaBy"], ["confirmed_at", "2019-09-01 17:47:47.070414"], ["locked_at", "2019-09-01 17:47:47.070430"], ["name", "Misty Shore"], ["email", "lloyd@windler.com"], ["created_at", "2019-09-01 17:47:47.071375"], ["updated_at", "2019-09-01 17:47:47.071375"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:47:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lloyd@windler.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lloyd@windler.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "contea@kovacekhowe.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "contea@kovacekhowe.name"], ["encrypted_password", "$2a$04$XUdwoM1gpKOARBB06mEyBOIJRHdFsNIp6p85FK.A2bz0IMKXvGexG"], ["confirmed_at", "2019-09-01 17:47:47.079018"], ["name", "Annie Buddyhome"], ["email", "contea@kovacekhowe.name"], ["created_at", "2019-09-01 17:47:47.079978"], ["updated_at", "2019-09-01 17:47:47.079978"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:47:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"contea@kovacekhowe.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "contea@kovacekhowe.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "anglea.marquardt@langoshwhite.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "anglea.marquardt@langoshwhite.io"], ["encrypted_password", "$2a$04$aIji/meLIhp3JLUvLJg5rOvmc9wbOkyM6zZcHzl3jNWM9.bHtmuEW"], ["confirmed_at", "2019-09-01 17:47:47.088691"], ["name", "Stew Ng"], ["email", "anglea.marquardt@langoshwhite.io"], ["created_at", "2019-09-01 17:47:47.089644"], ["updated_at", "2019-09-01 17:47:47.089644"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"PaRZREYbJcTcZLY2quKwCg\":{\"token\":\"$2a$10$vraumwhkVE.y9cwlTJw1a.VVOCKVsBn9bSe7v.qDeIpjG6xkepD76\",\"expiry\":1568569667,\"updated_at\":\"2019-09-01 17:47:47 UTC\"}}"], ["updated_at", "2019-09-01 17:47:47.143279"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:47:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "anglea.marquardt@langoshwhite.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-01 17:47:47.193665"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (1.8ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:47:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "doris_connelly@konopelski.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "doris_connelly@konopelski.com"], ["encrypted_password", "$2a$04$7fRX.nZ71UzK.r1nFsPO1eGgNSH2Oiv4S9FKWVUTa9MXYxUs.Hl8O"], ["confirmed_at", "2019-09-01 17:47:47.202458"], ["name", "Harmon Ikka"], ["email", "doris_connelly@konopelski.com"], ["created_at", "2019-09-01 17:47:47.203296"], ["updated_at", "2019-09-01 17:47:47.203296"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:47:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n userSignUp(\n email: \"kelsi@white.name\"\n name: \"Dinah Jacobs III\"\n password: \"5fCrX3Wu2s050d\"\n passwordConfirmation: \"5fCrX3Wu2s050d\"\n confirmSuccessUrl: \"http://ziemann.net/gia_hilpert\"\n ) {\n success\n errors\n user {\n email\n name\n }\n }\n}\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kelsi@white.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kelsi@white.name"], ["encrypted_password", "$2a$04$NZiKeZHdZFJPlDUqcq8RT.0rzUiWU0TYUtE6XwphUzRLcZmm3BbLS"], ["confirmation_token", "jEFczsTkyR-wGEJEFyyh"], ["confirmation_sent_at", "2019-09-01 17:47:47.213630"], ["name", "Dinah Jacobs III"], ["email", "kelsi@white.name"], ["created_at", "2019-09-01 17:47:47.213532"], ["updated_at", "2019-09-01 17:47:47.213532"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/.rvm/rubies/ruby-2.6.3/lib/ruby/gems/2.6.0/gems/devise_token_auth-1.1.1/app/views/devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/.rvm/rubies/ruby-2.6.3/lib/ruby/gems/2.6.0/gems/devise_token_auth-1.1.1/app/views/devise/mailer/confirmation_instructions.html.erb (126.2ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 137.1ms Completed 500 Internal Server Error in 158ms (ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joseph@gorczany.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "joseph@gorczany.net"], ["encrypted_password", "$2a$04$gbetCm1aATqJQoCGoc1rv.Lx..jnQNV6SzLyhkY37EVTiVJyFvoUW"], ["confirmed_at", "2019-09-01 17:48:36.337370"], ["name", "Phil Graves"], ["email", "joseph@gorczany.net"], ["created_at", "2019-09-01 17:48:36.339343"], ["updated_at", "2019-09-01 17:48:36.339343"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:48:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"joseph@gorczany.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "joseph@gorczany.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"N481bbNS0UdWfFH6VErS7A\":{\"token\":\"$2a$10$a9X9ypwXHcpi.vNf4GNp7uObg81PZ.1VUGZt69t9hJ2iAxBxYlNde\",\"expiry\":1568569716,\"updated_at\":\"2019-09-01 17:48:36 UTC\"}}"], ["updated_at", "2019-09-01 17:48:36.407947"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-01 17:48:36.410786"], ["last_sign_in_at", "2019-09-01 17:48:36.410786"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-01 17:48:36.411080"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jenae@schneidercorkery.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jenae@schneidercorkery.co"], ["encrypted_password", "$2a$04$oefBCtURqfhTZddrXNR6TutVfIS7Ru750Yruck7xN34cWcP9P26tS"], ["confirmed_at", "2019-09-01 17:48:36.418606"], ["name", "Cal Culator"], ["email", "jenae@schneidercorkery.co"], ["created_at", "2019-09-01 17:48:36.419402"], ["updated_at", "2019-09-01 17:48:36.419402"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:48:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jenae@schneidercorkery.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jenae@schneidercorkery.co"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "katherine_schaden@lind.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "katherine_schaden@lind.name"], ["encrypted_password", "$2a$04$93TWTTwgMPf9RZvRdEhK2O6ZwiBMJvd/MJHFFaHI2yKRZHp6P2jny"], ["confirmation_token", "GB7xCe3rG2Y9Wrt_bL7q"], ["confirmation_sent_at", "2019-09-01 17:48:36.429016"], ["name", "Bill Loney"], ["email", "katherine_schaden@lind.name"], ["created_at", "2019-09-01 17:48:36.428931"], ["updated_at", "2019-09-01 17:48:36.428931"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:48:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"katherine_schaden@lind.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "katherine_schaden@lind.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "haan_blanda@rutherford.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "haan_blanda@rutherford.name"], ["encrypted_password", "$2a$04$xEM./MyJxPru/gUV5uNRFuyUT/vquXr5M1.6p7HsiMTihHf9ep8za"], ["confirmed_at", "2019-09-01 17:48:36.435386"], ["locked_at", "2019-09-01 17:48:36.435396"], ["name", "E. Ville"], ["email", "haan_blanda@rutherford.name"], ["created_at", "2019-09-01 17:48:36.436589"], ["updated_at", "2019-09-01 17:48:36.436589"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:48:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"haan_blanda@rutherford.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "haan_blanda@rutherford.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "duncan@mcglynn.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "duncan@mcglynn.org"], ["encrypted_password", "$2a$04$fQ3CKWlF3Ere.U78tOqqWOB.Xv5j8BXvcvdIqsB2Vn9QfowqsKpEC"], ["confirmed_at", "2019-09-01 17:48:36.445180"], ["name", "Jerry Atrics"], ["email", "duncan@mcglynn.org"], ["created_at", "2019-09-01 17:48:36.446090"], ["updated_at", "2019-09-01 17:48:36.446090"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:48:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"duncan@mcglynn.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "duncan@mcglynn.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "christen_lehner@keebler.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "christen_lehner@keebler.io"], ["encrypted_password", "$2a$04$8AO/OO81hz665jRVFIXcIuF1v5kEBoK9qH9KISfuEcHCUeKhhpLYu"], ["confirmed_at", "2019-09-01 17:48:36.454350"], ["name", "Ewan Whatarmy"], ["email", "christen_lehner@keebler.io"], ["created_at", "2019-09-01 17:48:36.455281"], ["updated_at", "2019-09-01 17:48:36.455281"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"iIRcCa1h9C_PqO3_wAS8Mw\":{\"token\":\"$2a$10$Q71zb8WP6ZHtbKXKM9NJVeiL1/9PPPWsAF6.7ehkzTbHqkFNTp2Sy\",\"expiry\":1568569716,\"updated_at\":\"2019-09-01 17:48:36 UTC\"}}"], ["updated_at", "2019-09-01 17:48:36.508309"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:48:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "christen_lehner@keebler.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-01 17:48:36.557621"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:48:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "allan.kutch@purdybraun.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "allan.kutch@purdybraun.info"], ["encrypted_password", "$2a$04$on8SlN1SftIArzLc1gjphejy6doYPtOZZKVk0IZmOhHS5cDhtZCTq"], ["confirmed_at", "2019-09-01 17:48:36.564598"], ["name", "Claire Annette"], ["email", "allan.kutch@purdybraun.info"], ["created_at", "2019-09-01 17:48:36.565358"], ["updated_at", "2019-09-01 17:48:36.565358"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.2ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:48:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"mutation {\n userSignUp(\n email: \"arnold@kunde.info\"\n name: \"Mrs. Frankie Sawayn\"\n password: \"CwKuXfHa3tG\"\n passwordConfirmation: \"CwKuXfHa3tG\"\n confirmSuccessUrl: \"http://johnston.biz/maya.marks\"\n ) {\n success\n errors\n user {\n email\n name\n }\n }\n}\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arnold@kunde.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "arnold@kunde.info"], ["encrypted_password", "$2a$04$uBN2a0icOvsuC09aggT1de8hcoVrWMjYoFS1SjJ/uZIiPw93H3Y2G"], ["confirmation_token", "YMswmsX_zh3QNp8P7zXs"], ["confirmation_sent_at", "2019-09-01 17:48:36.576833"], ["name", "Mrs. Frankie Sawayn"], ["email", "arnold@kunde.info"], ["created_at", "2019-09-01 17:48:36.576739"], ["updated_at", "2019-09-01 17:48:36.576739"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/confirmation_instructions.html.erb (0.7ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 130.0ms Sent mail to arnold@kunde.info (3.8ms) Date: Sun, 01 Sep 2019 12:48:36 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: arnold@kunde.info Message-ID: <5d6c0474b1624_93e83fe4c8c320209275b@Marios-MBP.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://johnston.biz/maya.marks

Welcome arnold@kunde.info!

You can confirm your account email through the link below:

Completed 200 OK in 156ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 12:50:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"jody@ratke.name\"\n name: \"Elizabet Ziemann MD\"\n password: \"8lDuNtNx\"\n passwordConfirmation: \"8lDuNtNx\"\n confirmSuccessUrl: \"http://robelschumm.org/avelina_dickinson\"\n ) {\n success\n errors\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jody@ratke.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jody@ratke.name"], ["encrypted_password", "$2a$04$M66CcWfDibZtIm2EGSfAaOzqjKsOD6aeBsMI54oyioRapVXpvcCsK"], ["confirmation_token", "ZhFeTczgmdhwn8VJLgxo"], ["confirmation_sent_at", "2019-09-01 17:50:15.351577"], ["name", "Elizabet Ziemann MD"], ["email", "jody@ratke.name"], ["created_at", "2019-09-01 17:50:15.351482"], ["updated_at", "2019-09-01 17:50:15.351482"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/confirmation_instructions.html.erb (0.6ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 122.9ms Sent mail to jody@ratke.name (3.7ms) Date: Sun, 01 Sep 2019 12:50:15 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: jody@ratke.name Message-ID: <5d6c04d7752a7_94693fd647032020130d0@Marios-MBP.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://robelschumm.org/avelina_dickinson

Welcome jody@ratke.name!

You can confirm your account email through the link below:

Mario Completed 200 OK in 152ms (Views: 0.2ms | ActiveRecord: 0.6ms)  (0.2ms) SELECT COUNT(*) FROM "users" User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]]  (0.2ms) rollback transaction  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clarinda_borer@mccullough.io"], ["provider", "email"], ["LIMIT", 1]] User Create (1.9ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "clarinda_borer@mccullough.io"], ["encrypted_password", "$2a$04$t9dAY2gjgB2AQfxcO.jQL.ndtxMA6iOT5Lvqy3WS2tjO5qZIg.U/G"], ["confirmed_at", "2019-09-02 02:02:15.958909"], ["name", "Abbie Birthday"], ["email", "clarinda_borer@mccullough.io"], ["created_at", "2019-09-02 02:02:15.961471"], ["updated_at", "2019-09-02 02:02:15.961471"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:02:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"clarinda_borer@mccullough.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "amal@goldner.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "amal@goldner.biz"], ["encrypted_password", "$2a$04$gVgECo57YX6prvmarcRmA.l3nxo9pSdKyeDmjldUZqa0MeKokD5ci"], ["confirmed_at", "2019-09-02 02:02:16.021204"], ["name", "Tommy Hawk"], ["email", "amal@goldner.biz"], ["created_at", "2019-09-02 02:02:16.022132"], ["updated_at", "2019-09-02 02:02:16.022132"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:02:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"amal@goldner.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jolene@jacobicruickshank.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jolene@jacobicruickshank.name"], ["encrypted_password", "$2a$04$EKD6cbi2XG12LS1aLHlXieEDfFjV4npSwEy1D50Lv6wAo6/mDSw0e"], ["confirmation_token", "kKHutsWK1YvpzJWu6zd_"], ["confirmation_sent_at", "2019-09-02 02:02:16.029632"], ["name", "Willie Maykit"], ["email", "jolene@jacobicruickshank.name"], ["created_at", "2019-09-02 02:02:16.029531"], ["updated_at", "2019-09-02 02:02:16.029531"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:02:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jolene@jacobicruickshank.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jefferson.reichel@schmitt.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jefferson.reichel@schmitt.net"], ["encrypted_password", "$2a$04$AtipbJMhz5z6fqyUS8UlXeOWPkSiaFmcz0cfGgpSJD67ARdIJbfvu"], ["confirmed_at", "2019-09-02 02:02:16.036582"], ["locked_at", "2019-09-02 02:02:16.036595"], ["name", "May Day"], ["email", "jefferson.reichel@schmitt.net"], ["created_at", "2019-09-02 02:02:16.037587"], ["updated_at", "2019-09-02 02:02:16.037587"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:02:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jefferson.reichel@schmitt.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tari_torphy@casper.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tari_torphy@casper.co"], ["encrypted_password", "$2a$04$IvS6wlto5vIOMHwBlNCJxeuGyWiCfBPaHgkxxOiXnMvzCsoDa6Ufy"], ["confirmed_at", "2019-09-02 02:02:16.044995"], ["name", "Rusty Keyes"], ["email", "tari_torphy@casper.co"], ["created_at", "2019-09-02 02:02:16.045990"], ["updated_at", "2019-09-02 02:02:16.045990"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:02:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tari_torphy@casper.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rosann@kohler.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rosann@kohler.biz"], ["encrypted_password", "$2a$04$Pb88ZQB5MbpDlIcPnAOfxe3Q.nS2CQC5i0SZlhWWiaWZZgg1PikoK"], ["confirmed_at", "2019-09-02 02:02:16.052831"], ["name", "Fletcher Bisceps"], ["email", "rosann@kohler.biz"], ["created_at", "2019-09-02 02:02:16.053811"], ["updated_at", "2019-09-02 02:02:16.053811"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Spo2Axzse6tqfpe2SWIRZA\":{\"token\":\"$2a$10$V2UAbBPGzokh7FilIGctNuGS4ZIfPL9vEVSRqIZUTV1qU3gknTbai\",\"expiry\":1568599336,\"updated_at\":\"2019-09-02 02:02:16 UTC\"}}"], ["updated_at", "2019-09-02 02:02:16.107621"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:02:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "rosann@kohler.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 56ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:02:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n success\n errors\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kraig_towne@whitevandervort.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kraig_towne@whitevandervort.info"], ["encrypted_password", "$2a$04$ykz6a/xKwlHGKhTLDm5KVubeA1JlhS4JrQ1o8Dz79382aOiW3V.kO"], ["confirmed_at", "2019-09-02 02:02:16.171360"], ["name", "Pat Pending"], ["email", "kraig_towne@whitevandervort.info"], ["created_at", "2019-09-02 02:02:16.172232"], ["updated_at", "2019-09-02 02:02:16.172232"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brenton.connelly@wintheiser.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "brenton.connelly@wintheiser.io"], ["encrypted_password", "$2a$04$eZrGMCCdFMhLvEtbdEFCMuFsKBuDx2QNvHBpvAr3/Wd5/nZR8jkYu"], ["confirmed_at", "2019-09-02 02:02:56.192667"], ["name", "Claire Annette"], ["email", "brenton.connelly@wintheiser.io"], ["created_at", "2019-09-02 02:02:56.194593"], ["updated_at", "2019-09-02 02:02:56.194593"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:02:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"brenton.connelly@wintheiser.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n success\n errors\n }\n }\n"} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joesph@koepp.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "joesph@koepp.io"], ["encrypted_password", "$2a$04$imHjDIhVFfZQKmh9xetIx.7wIic8hEXDR/7nut87U6h32LPQovgNC"], ["confirmed_at", "2019-09-02 02:03:28.634829"], ["name", "Ophelia Payne"], ["email", "joesph@koepp.io"], ["created_at", "2019-09-02 02:03:28.636989"], ["updated_at", "2019-09-02 02:03:28.636989"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:03:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"joesph@koepp.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "joesph@koepp.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "williams.torp@kris.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "williams.torp@kris.org"], ["encrypted_password", "$2a$04$ghdOW.rffUacnPZSSgL4w.aE4pMsiAL187Fp2fDcBtQIFCmSD3NR6"], ["confirmed_at", "2019-09-02 02:05:02.390600"], ["name", "Al Dente"], ["email", "williams.torp@kris.org"], ["created_at", "2019-09-02 02:05:02.393786"], ["updated_at", "2019-09-02 02:05:02.393786"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:05:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"williams.torp@kris.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "williams.torp@kris.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "teie@mueller.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "teie@mueller.org"], ["encrypted_password", "$2a$04$lQ6aYbYQqWnNCQ4Esnnsze04OHqGROM1RWlK0hlfXnspiTCGKCVLO"], ["confirmed_at", "2019-09-02 02:21:12.535480"], ["name", "I. Lasch"], ["email", "teie@mueller.org"], ["created_at", "2019-09-02 02:21:12.537392"], ["updated_at", "2019-09-02 02:21:12.537392"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:21:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"teie@mueller.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "teie@mueller.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bernie@handrobel.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bernie@handrobel.co"], ["encrypted_password", "$2a$04$qga75FscFJimk8q3NovwGON8eLVgkrnBXbLrNn7cQMODUM1H1QM.O"], ["confirmed_at", "2019-09-02 02:22:33.670810"], ["name", "Andy Structible"], ["email", "bernie@handrobel.co"], ["created_at", "2019-09-02 02:22:33.672708"], ["updated_at", "2019-09-02 02:22:33.672708"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:22:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"bernie@handrobel.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bernie@handrobel.co"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dodie@armstrongbeahan.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dodie@armstrongbeahan.io"], ["encrypted_password", "$2a$04$9ujDblzqqpPkbF/o2Lc5V.FQn/fectPebNAvaIvjySZe5capA/Dy2"], ["confirmed_at", "2019-09-02 02:23:30.328292"], ["name", "Tina See"], ["email", "dodie@armstrongbeahan.io"], ["created_at", "2019-09-02 02:23:30.330400"], ["updated_at", "2019-09-02 02:23:30.330400"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:23:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dodie@armstrongbeahan.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dodie@armstrongbeahan.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"K-hKkyVx04qbbtY9OZJhUw\":{\"token\":\"$2a$10$u9Lt0mXf1FB0kFCyTTCtW.DZPYmxT2q.eXTywM9X9p7pEvxDJraBK\",\"expiry\":1568600610,\"updated_at\":\"2019-09-02 02:23:30 UTC\"}}"], ["updated_at", "2019-09-02 02:23:30.401227"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 02:23:30.404016"], ["last_sign_in_at", "2019-09-02 02:23:30.404016"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 02:23:30.404323"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "daniel_schumm@balistrerismith.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "daniel_schumm@balistrerismith.biz"], ["encrypted_password", "$2a$04$XpHYWRkmvM/s8jS2zLq6/OrdoWG9RDRMv67VyYs0R1FAJ1PSm0a5q"], ["confirmed_at", "2019-09-02 02:23:30.419090"], ["name", "Manuel Labor"], ["email", "daniel_schumm@balistrerismith.biz"], ["created_at", "2019-09-02 02:23:30.419916"], ["updated_at", "2019-09-02 02:23:30.419916"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:23:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"daniel_schumm@balistrerismith.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "daniel_schumm@balistrerismith.biz"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "katelyn@oconner.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "katelyn@oconner.biz"], ["encrypted_password", "$2a$04$Zi2fyxJ/nDhqIigsi5W41uxNuHhJmDWSuTcpCPg7jgiCMxpnE2CLK"], ["confirmation_token", "Wo795Kj_sSCnLQbZKKhh"], ["confirmation_sent_at", "2019-09-02 02:23:30.429302"], ["name", "Annie Howe"], ["email", "katelyn@oconner.biz"], ["created_at", "2019-09-02 02:23:30.429215"], ["updated_at", "2019-09-02 02:23:30.429215"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:23:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"katelyn@oconner.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "katelyn@oconner.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sona@gleasontremblay.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sona@gleasontremblay.io"], ["encrypted_password", "$2a$04$1Tx7S/66VjrxCCsLXzu7LOA8MrggR0tebjOtTS1SNW5r6tv1GN9py"], ["confirmed_at", "2019-09-02 02:23:30.435525"], ["locked_at", "2019-09-02 02:23:30.435535"], ["name", "Sally Mander"], ["email", "sona@gleasontremblay.io"], ["created_at", "2019-09-02 02:23:30.436271"], ["updated_at", "2019-09-02 02:23:30.436271"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:23:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sona@gleasontremblay.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sona@gleasontremblay.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kacie_upton@douglas.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kacie_upton@douglas.io"], ["encrypted_password", "$2a$04$RnHWCKeaXBCSo9ZrR9YL6OXkfTjppyfD.p96Kma9ESIy1k.HWQYwq"], ["confirmed_at", "2019-09-02 02:23:30.445272"], ["name", "Noah Riddle"], ["email", "kacie_upton@douglas.io"], ["created_at", "2019-09-02 02:23:30.446505"], ["updated_at", "2019-09-02 02:23:30.446505"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:23:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kacie_upton@douglas.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kacie_upton@douglas.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "whitney.hamill@hamillrenner.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "whitney.hamill@hamillrenner.biz"], ["encrypted_password", "$2a$04$N4NRO0frDl19J.odKCZI1u1a7Iyqf.SNpmQ.qzATGc.kP2abjvabm"], ["confirmed_at", "2019-09-02 02:25:23.671327"], ["name", "Otto Whackew"], ["email", "whitney.hamill@hamillrenner.biz"], ["created_at", "2019-09-02 02:25:23.673472"], ["updated_at", "2019-09-02 02:25:23.673472"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:25:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"whitney.hamill@hamillrenner.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "whitney.hamill@hamillrenner.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Np9q92ikJL66GiH5fSk-1w\":{\"token\":\"$2a$10$Uoh7U/cUKLCQOZiGInE41.uHRitY8UgcHm4tLsiqtkm4AVeLhXdOa\",\"expiry\":1568600723,\"updated_at\":\"2019-09-02 02:25:23 UTC\"}}"], ["updated_at", "2019-09-02 02:25:23.745414"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 02:25:23.748455"], ["last_sign_in_at", "2019-09-02 02:25:23.748455"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 02:25:23.748744"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lesley.cain@beer.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lesley.cain@beer.io"], ["encrypted_password", "$2a$04$7Pjg4s6/usDv8nLMM4YoOOIe/K9db3jOdbUs42bkkPc.F9kDFZBtC"], ["confirmed_at", "2019-09-02 02:25:36.241889"], ["name", "Owen Big"], ["email", "lesley.cain@beer.io"], ["created_at", "2019-09-02 02:25:36.243824"], ["updated_at", "2019-09-02 02:25:36.243824"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:25:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lesley.cain@beer.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lesley.cain@beer.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"VozbVMl7d7diHXjDtVybzQ\":{\"token\":\"$2a$10$aUOKI1bEhLJKykOva.Ih4e6PWiNg8VpAYkEXnhGSKjjIPN8h07T4i\",\"expiry\":1568600736,\"updated_at\":\"2019-09-02 02:25:36 UTC\"}}"], ["updated_at", "2019-09-02 02:25:36.314799"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 02:25:36.317726"], ["last_sign_in_at", "2019-09-02 02:25:36.317726"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 02:25:36.318038"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "valentine.lockman@rolfson.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "valentine.lockman@rolfson.net"], ["encrypted_password", "$2a$04$YPcMtAye3E5Hzentwtk8FuAB/wu8SEQ0Av7yygC1/lCQuXd3X3u9S"], ["confirmed_at", "2019-09-02 02:26:01.430683"], ["name", "Mabel Syrup"], ["email", "valentine.lockman@rolfson.net"], ["created_at", "2019-09-02 02:26:01.432818"], ["updated_at", "2019-09-02 02:26:01.432818"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:26:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"valentine.lockman@rolfson.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "valentine.lockman@rolfson.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"WMRQetuYzoYx9GRZmdLM-A\":{\"token\":\"$2a$10$WxkKg5E5J3f2NuVCJehqhuuWrZEj7q6NsR4eKNFZToqgSoNRHRS9m\",\"expiry\":1568600761,\"updated_at\":\"2019-09-02 02:26:01 UTC\"}}"], ["updated_at", "2019-09-02 02:26:01.504373"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 02:26:01.507179"], ["last_sign_in_at", "2019-09-02 02:26:01.507179"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 02:26:01.507466"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nga@carrollokuneva.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nga@carrollokuneva.org"], ["encrypted_password", "$2a$04$sbttk.WDDt2/jLgErvzU3O6hEltaEzrUTn/XuUqbezUKqs/QjdS7S"], ["confirmed_at", "2019-09-02 02:27:53.846532"], ["name", "Lynn Meabuck"], ["email", "nga@carrollokuneva.org"], ["created_at", "2019-09-02 02:27:53.848446"], ["updated_at", "2019-09-02 02:27:53.848446"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:27:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"nga@carrollokuneva.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nga@carrollokuneva.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "willene@gerholdortiz.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "willene@gerholdortiz.io"], ["encrypted_password", "$2a$04$/Z.ryFtRktfkJCJR.G8ao.0lVtcpGAUB1eK63ZQ0paPVCOBcLrlrm"], ["confirmation_token", "Zd_Ew3wj3isoH9kq5syV"], ["confirmation_sent_at", "2019-09-02 02:29:27.821352"], ["name", "Nida Lyte"], ["email", "willene@gerholdortiz.io"], ["created_at", "2019-09-02 02:29:27.821224"], ["updated_at", "2019-09-02 02:29:27.821224"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:29:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"willene@gerholdortiz.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "willene@gerholdortiz.io"], ["LIMIT", 1]] Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lavern_jakubowski@ryan.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lavern_jakubowski@ryan.net"], ["encrypted_password", "$2a$04$4rA2mhnFJ2iL0UHuID697u1kR8mffH41Tejv/.Sd6aug34hc0E18a"], ["confirmation_token", "wqsYQfosJmCoxZ_FktVz"], ["confirmation_sent_at", "2019-09-02 02:29:36.975735"], ["name", "Rich Kidd"], ["email", "lavern_jakubowski@ryan.net"], ["created_at", "2019-09-02 02:29:36.975561"], ["updated_at", "2019-09-02 02:29:36.975561"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:29:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lavern_jakubowski@ryan.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lavern_jakubowski@ryan.net"], ["LIMIT", 1]] Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "phyli_mclaughlin@ernsermertz.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "phyli_mclaughlin@ernsermertz.biz"], ["encrypted_password", "$2a$04$J.EJaakMmCUxDEe5gVvIVuGNqex.gPc7VW.1yIxZmmKf43htpj4Eu"], ["confirmed_at", "2019-09-02 02:30:51.169336"], ["name", "Jacques Strap"], ["email", "phyli_mclaughlin@ernsermertz.biz"], ["created_at", "2019-09-02 02:30:51.171265"], ["updated_at", "2019-09-02 02:30:51.171265"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:30:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"phyli_mclaughlin@ernsermertz.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "phyli_mclaughlin@ernsermertz.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"z8ZHj0hSof0Tdp-lRclUzA\":{\"token\":\"$2a$10$QPHZnmO4Ie4cAu.P8erK2.edYRRhO/Sx//mNYNhGY1fl26BDLTRt6\",\"expiry\":1568601051,\"updated_at\":\"2019-09-02 02:30:51 UTC\"}}"], ["updated_at", "2019-09-02 02:30:51.236235"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 02:30:51.240110"], ["last_sign_in_at", "2019-09-02 02:30:51.240110"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 02:30:51.240650"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elanor@feeneygoyette.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "elanor@feeneygoyette.info"], ["encrypted_password", "$2a$04$/azuQNZD9HET1d5XM7QC3ePewVj7YBluMbRSj3ZounSDaeq4cKvRK"], ["confirmed_at", "2019-09-02 02:30:51.249466"], ["name", "Cammie Sole"], ["email", "elanor@feeneygoyette.info"], ["created_at", "2019-09-02 02:30:51.250904"], ["updated_at", "2019-09-02 02:30:51.250904"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:30:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"elanor@feeneygoyette.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elanor@feeneygoyette.info"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carey.oberbrunner@steuberrunolfsdottir.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "carey.oberbrunner@steuberrunolfsdottir.net"], ["encrypted_password", "$2a$04$iYJvqZsi/GDu.rPIth3IdupkzgcP77pH2E7CXoMtlSISvoct85gQC"], ["confirmation_token", "_96NUa43PVLXsfo661CZ"], ["confirmation_sent_at", "2019-09-02 02:30:51.261462"], ["name", "Jay Bird"], ["email", "carey.oberbrunner@steuberrunolfsdottir.net"], ["created_at", "2019-09-02 02:30:51.261365"], ["updated_at", "2019-09-02 02:30:51.261365"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:30:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"carey.oberbrunner@steuberrunolfsdottir.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "carey.oberbrunner@steuberrunolfsdottir.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "iva@schmitt.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "iva@schmitt.com"], ["encrypted_password", "$2a$04$IxOiurbqbx9rKquP28cgIORMj9RMlORVvzxd2MlDmkBCUiBJ3gdp6"], ["confirmed_at", "2019-09-02 02:30:51.269856"], ["locked_at", "2019-09-02 02:30:51.269876"], ["name", "Eve Hill"], ["email", "iva@schmitt.com"], ["created_at", "2019-09-02 02:30:51.271039"], ["updated_at", "2019-09-02 02:30:51.271039"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:30:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"iva@schmitt.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "iva@schmitt.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "misti@grady.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "misti@grady.co"], ["encrypted_password", "$2a$04$qeNjVYhMnLaV8N5PLjoYDO2BcCZO0uc9.UxuzNu8v3BLoMdLxgkU6"], ["confirmed_at", "2019-09-02 02:30:51.279967"], ["name", "Kenny Dewitt"], ["email", "misti@grady.co"], ["created_at", "2019-09-02 02:30:51.281067"], ["updated_at", "2019-09-02 02:30:51.281067"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:30:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"misti@grady.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "misti@grady.co"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "evon.corkery@klocko.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "evon.corkery@klocko.net"], ["encrypted_password", "$2a$04$fvXihG6lDW2UYoLtrIckrOG4oQhJlH8l35IcNTuyHvVQj/9HKpHQO"], ["confirmed_at", "2019-09-02 02:33:26.833160"], ["name", "Ilene South"], ["email", "evon.corkery@klocko.net"], ["created_at", "2019-09-02 02:33:26.835090"], ["updated_at", "2019-09-02 02:33:26.835090"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yZJ1e5jEw5gaJFnzy4fylw\":{\"token\":\"$2a$10$tU2aIkb8ELn1FyqOquGhTeXRAoyKitZKvEvg6rdQ/8mk9ZI6lRhT.\",\"expiry\":1568601206,\"updated_at\":\"2019-09-02 02:33:26 UTC\"}}"], ["updated_at", "2019-09-02 02:33:26.878714"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:33:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "evon.corkery@klocko.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 02:33:26.950256"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:33:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dorotha.parker@volkmanhammes.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dorotha.parker@volkmanhammes.net"], ["encrypted_password", "$2a$04$PBCfTxTSU7XYBCUFxTWxQ.fjMEuYd3d363/cwiJ2vLh9XDW7Prjna"], ["confirmed_at", "2019-09-02 02:33:26.958025"], ["name", "Anne Teak"], ["email", "dorotha.parker@volkmanhammes.net"], ["created_at", "2019-09-02 02:33:26.958686"], ["updated_at", "2019-09-02 02:33:26.958686"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kip.brekke@beahan.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kip.brekke@beahan.com"], ["encrypted_password", "$2a$04$Dq.wqhrM2Ew8/2ko1ck6eeXpkeXyBogztGi5dr77GUnAQ1SQk7d7m"], ["confirmed_at", "2019-09-02 02:34:50.839444"], ["name", "Lou Zar"], ["email", "kip.brekke@beahan.com"], ["created_at", "2019-09-02 02:34:50.841345"], ["updated_at", "2019-09-02 02:34:50.841345"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"i6vc7-IoO4jFV2375NCx0w\":{\"token\":\"$2a$10$lB8kgUbjqUgQV2C77LvUB.J0/fdXCa0.ojfj/eXfnCajtm3S./YM.\",\"expiry\":1568601290,\"updated_at\":\"2019-09-02 02:34:50 UTC\"}}"], ["updated_at", "2019-09-02 02:34:50.885737"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:34:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kip.brekke@beahan.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 02:34:50.951685"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:34:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jocelyn@nicolas.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jocelyn@nicolas.io"], ["encrypted_password", "$2a$04$9Uu.Qlb7EKKCQtVGf2DrYuVqKl7Yt3laySmuEKfjOw7PwmWD62Jdi"], ["confirmed_at", "2019-09-02 02:34:50.960143"], ["name", "Liv Good"], ["email", "jocelyn@nicolas.io"], ["created_at", "2019-09-02 02:34:50.960939"], ["updated_at", "2019-09-02 02:34:50.960939"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shon@boyle.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shon@boyle.com"], ["encrypted_password", "$2a$04$e6P45XXeJwm7NEHoCQFhLe2Io/I8lu6MPrr9L..ktgSuEWvW2MYNC"], ["confirmed_at", "2019-09-02 02:37:35.833724"], ["name", "Sandy Spring"], ["email", "shon@boyle.com"], ["created_at", "2019-09-02 02:37:35.835705"], ["updated_at", "2019-09-02 02:37:35.835705"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:37:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"shon@boyle.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shon@boyle.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"pUtsupbLroSR-j3ecrlWxg\":{\"token\":\"$2a$10$hnDmxtVgsSb1dh6KhSAa3.QaYhtKWE424qrTbPk1ZLLdvmCLactem\",\"expiry\":1568601455,\"updated_at\":\"2019-09-02 02:37:35 UTC\"}}"], ["updated_at", "2019-09-02 02:37:35.915615"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 02:37:35.918500"], ["last_sign_in_at", "2019-09-02 02:37:35.918500"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 02:37:35.918821"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.4ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "darleen.miller@ebert.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "darleen.miller@ebert.io"], ["encrypted_password", "$2a$04$KDm3qi1k6VdXUdAMdSlGouT0zLSPhRCLns3b.QTYMi9Mbq4KNsJy2"], ["confirmed_at", "2019-09-02 02:37:35.927008"], ["name", "Liv Long"], ["email", "darleen.miller@ebert.io"], ["created_at", "2019-09-02 02:37:35.927845"], ["updated_at", "2019-09-02 02:37:35.927845"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:37:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"darleen.miller@ebert.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "darleen.miller@ebert.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leatrice.johnston@hansen.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "leatrice.johnston@hansen.io"], ["encrypted_password", "$2a$04$c9EU7HhUec1tFetwACAWc.QhG3lekYHLTGPqUYWMbkKeEyO75ur72"], ["confirmation_token", "x9JxPmY9ZQZcab1hrGfB"], ["confirmation_sent_at", "2019-09-02 02:37:35.937892"], ["name", "Rick Kleiner"], ["email", "leatrice.johnston@hansen.io"], ["created_at", "2019-09-02 02:37:35.937776"], ["updated_at", "2019-09-02 02:37:35.937776"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:37:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"leatrice.johnston@hansen.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leatrice.johnston@hansen.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alejandro@schiller.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alejandro@schiller.name"], ["encrypted_password", "$2a$04$u4dEqzIdxaX.5woduARVoO/SDPEn07LwH/8ZoquNrzCHRsQ0S43mG"], ["confirmed_at", "2019-09-02 02:37:35.944622"], ["locked_at", "2019-09-02 02:37:35.944653"], ["name", "Mel Function"], ["email", "alejandro@schiller.name"], ["created_at", "2019-09-02 02:37:35.946441"], ["updated_at", "2019-09-02 02:37:35.946441"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:37:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"alejandro@schiller.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alejandro@schiller.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "larita.hudson@bruenbrekke.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "larita.hudson@bruenbrekke.co"], ["encrypted_password", "$2a$04$ii1rB2cAJ9zOK5mQe/CPv.NwnWVXxMcuDGAHKW8ehOCR2QJAgtr1y"], ["confirmed_at", "2019-09-02 02:37:35.955228"], ["name", "Melba Crisp"], ["email", "larita.hudson@bruenbrekke.co"], ["created_at", "2019-09-02 02:37:35.956415"], ["updated_at", "2019-09-02 02:37:35.956415"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:37:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"larita.hudson@bruenbrekke.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "larita.hudson@bruenbrekke.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gerard@little.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gerard@little.com"], ["encrypted_password", "$2a$04$DAnEgeuniVj1nIVKlQFtrOQmGdXz21klzJOtpGgquQNMImN4ptslu"], ["confirmed_at", "2019-09-02 02:37:35.965532"], ["name", "Noah Lott"], ["email", "gerard@little.com"], ["created_at", "2019-09-02 02:37:35.966523"], ["updated_at", "2019-09-02 02:37:35.966523"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"feCQCNOOQ5XEPfPhcVjvAw\":{\"token\":\"$2a$10$IZR72eMmlXevnrhRuMjF/O8cyKafhCgLanDkPwjfDFiwG2z1IRsPS\",\"expiry\":1568601456,\"updated_at\":\"2019-09-02 02:37:35 UTC\"}}"], ["updated_at", "2019-09-02 02:37:36.024750"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:37:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gerard@little.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 02:37:36.078508"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:37:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cherlyn@rolfson.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cherlyn@rolfson.biz"], ["encrypted_password", "$2a$04$fj067KvMZwsKaTUx2Lw2Je2Geqt/ZMo.83eUNXNJ8PrvykZhBaOF."], ["confirmed_at", "2019-09-02 02:37:36.085272"], ["name", "Bruce Easley"], ["email", "cherlyn@rolfson.biz"], ["created_at", "2019-09-02 02:37:36.086027"], ["updated_at", "2019-09-02 02:37:36.086027"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "humberto.braun@breitenberg.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "humberto.braun@breitenberg.co"], ["encrypted_password", "$2a$04$iK2EqgmdTng3dlTfvxdkEuygWSiIdSrlF3xdssprTOc/bpBP/C4x."], ["confirmed_at", "2019-09-02 02:44:07.538241"], ["name", "Penny Whistler"], ["email", "humberto.braun@breitenberg.co"], ["created_at", "2019-09-02 02:44:07.540157"], ["updated_at", "2019-09-02 02:44:07.540157"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:44:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"humberto.braun@breitenberg.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "humberto.braun@breitenberg.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OTD-_drlxPz4iaoGgamtaQ\":{\"token\":\"$2a$10$j5zDuVfxVSXdNmpvDMlJeO0z2y0LNVcyY7e7lXG5vtOcA/3pdSlne\",\"expiry\":1568601847,\"updated_at\":\"2019-09-02 02:44:07 UTC\"}}"], ["updated_at", "2019-09-02 02:44:07.607664"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 02:44:07.610897"], ["last_sign_in_at", "2019-09-02 02:44:07.610897"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 02:44:07.611334"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joshua.maggio@fritsch.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "joshua.maggio@fritsch.net"], ["encrypted_password", "$2a$04$k96JzS40VEr3gbfMRpRIz.P81kBXuHtTCX1xJ4sweXp7S7z2.4VbG"], ["confirmed_at", "2019-09-02 02:44:07.619388"], ["name", "Rocky Rhoades"], ["email", "joshua.maggio@fritsch.net"], ["created_at", "2019-09-02 02:44:07.620461"], ["updated_at", "2019-09-02 02:44:07.620461"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:44:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"joshua.maggio@fritsch.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "joshua.maggio@fritsch.net"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chaidy.pacocha@gislason.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "chaidy.pacocha@gislason.co"], ["encrypted_password", "$2a$04$daxodiAtp2Vr9qP9AWX5IuKWLoQS/tda.foAEUSJn1t4SlrSrotLu"], ["confirmation_token", "Dxdpzh3BNU4xNCNExvSN"], ["confirmation_sent_at", "2019-09-02 02:44:07.630663"], ["name", "Ken Dahl"], ["email", "chaidy.pacocha@gislason.co"], ["created_at", "2019-09-02 02:44:07.630567"], ["updated_at", "2019-09-02 02:44:07.630567"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:44:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"chaidy.pacocha@gislason.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "chaidy.pacocha@gislason.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "anisa.tromp@heelconroy.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "anisa.tromp@heelconroy.biz"], ["encrypted_password", "$2a$04$upU1DjOS.2J0Nk3r09AgbeOmud0Vm.Z5hHucq2kIHZsj6EdD9jh6W"], ["confirmed_at", "2019-09-02 02:44:07.637464"], ["locked_at", "2019-09-02 02:44:07.637494"], ["name", "Al Kaholic"], ["email", "anisa.tromp@heelconroy.biz"], ["created_at", "2019-09-02 02:44:07.639352"], ["updated_at", "2019-09-02 02:44:07.639352"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:44:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"anisa.tromp@heelconroy.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anisa.tromp@heelconroy.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "osvaldo@vandervort.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "osvaldo@vandervort.org"], ["encrypted_password", "$2a$04$IdIg286AK5gSrdta14IReuvXXePAma0SbdWBqxucX41QFbdAcEaX."], ["confirmed_at", "2019-09-02 02:44:07.648286"], ["name", "Winnie Dipoo"], ["email", "osvaldo@vandervort.org"], ["created_at", "2019-09-02 02:44:07.649465"], ["updated_at", "2019-09-02 02:44:07.649465"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:44:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"osvaldo@vandervort.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "osvaldo@vandervort.org"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cordia_schuster@ullrich.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cordia_schuster@ullrich.org"], ["encrypted_password", "$2a$04$DSH9/10VrFaIyZG5B2ku7eKrzH2ql1YN2XYK5pjzenXeSRMLOPL1O"], ["confirmed_at", "2019-09-02 02:44:07.660154"], ["name", "Ryan Carnation"], ["email", "cordia_schuster@ullrich.org"], ["created_at", "2019-09-02 02:44:07.661188"], ["updated_at", "2019-09-02 02:44:07.661188"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OSOZiaUpY1plxKr4dsy5bg\":{\"token\":\"$2a$10$RdyeybgTbQmVagribD6jIOC6m7Kr.EcUBvzCGvzJEds1LJ6bUumFS\",\"expiry\":1568601847,\"updated_at\":\"2019-09-02 02:44:07 UTC\"}}"], ["updated_at", "2019-09-02 02:44:07.718938"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:44:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "cordia_schuster@ullrich.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 02:44:07.767344"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 48ms (Views: 0.2ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 21:44:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout{\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "maxwell@kirlin.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "maxwell@kirlin.name"], ["encrypted_password", "$2a$04$G1ejILe4XMPiRuFFjYMaVe0aMxr9yOvKeoleDHWQ6sJZTY7.UdiL."], ["confirmed_at", "2019-09-02 02:44:07.774131"], ["name", "Doris Schutt"], ["email", "maxwell@kirlin.name"], ["created_at", "2019-09-02 02:44:07.774881"], ["updated_at", "2019-09-02 02:44:07.774881"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "queen_veum@mcculloughcormier.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "queen_veum@mcculloughcormier.biz"], ["encrypted_password", "$2a$04$bIdNFJmBoiOABtKl6h.4KO5onpUfxvca3NzGiVMt2Sefbd1fMfRz."], ["confirmed_at", "2019-09-02 03:54:06.754672"], ["name", "Carrie Oakey"], ["email", "queen_veum@mcculloughcormier.biz"], ["created_at", "2019-09-02 03:54:06.756575"], ["updated_at", "2019-09-02 03:54:06.756575"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ud40nyo9QhPz3pKGAr0zuA\":{\"token\":\"$2a$10$ojFjp4vKt3x8ewFDIDL8Fe5lsV7avMOyyt9cZNuVvlu2Yssy/p15y\",\"expiry\":1568606046,\"updated_at\":\"2019-09-02 03:54:06 UTC\"}}"], ["updated_at", "2019-09-02 03:54:06.801141"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 22:54:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword{\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "queen_veum@mcculloughcormier.biz"], ["LIMIT", 1]] Completed 500 Internal Server Error in 53ms (ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 22:54:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword{\n authenticable { email }\n }\n }\n"} Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)  (0.1ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vincent_dare@vandervort.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "vincent_dare@vandervort.io"], ["encrypted_password", "$2a$04$GClwSBy/vcxRevq7FqrA2egAe1pE8Vh58POwPWwIE24rmFceXYbqC"], ["confirmed_at", "2019-09-02 03:54:31.380626"], ["name", "Wilma Leggrowbach"], ["email", "vincent_dare@vandervort.io"], ["created_at", "2019-09-02 03:54:31.382565"], ["updated_at", "2019-09-02 03:54:31.382565"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3lxBiyWoaPQyeEf7mgJPNQ\":{\"token\":\"$2a$10$emuOVdLftyls0gCGfefrBuWkiTA3MZ2SFEcSmJJkyt8QdxiRuGEV.\",\"expiry\":1568606071,\"updated_at\":\"2019-09-02 03:54:31 UTC\"}}"], ["updated_at", "2019-09-02 03:54:31.426169"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 22:54:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword{\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "vincent_dare@vandervort.io"], ["LIMIT", 1]] Completed 500 Internal Server Error in 53ms (ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 22:54:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword{\n authenticable { email }\n }\n }\n"} Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)  (0.0ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "linda@gerhold.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "linda@gerhold.com"], ["encrypted_password", "$2a$04$TNEfN/gAyeXBinAGSNlWGuUIQFQuG4/BrNeBIBOFXasKSfDOsB.Oi"], ["confirmed_at", "2019-09-02 03:55:55.769208"], ["name", "Chris Cross"], ["email", "linda@gerhold.com"], ["created_at", "2019-09-02 03:55:55.771171"], ["updated_at", "2019-09-02 03:55:55.771171"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"D1MPb_qWAeMDU8kUxp6x2A\":{\"token\":\"$2a$10$PK7rCi.RkrehCiLhw10rtuN165WGRDhsv9Imnm7ZpQtArkqgspM/C\",\"expiry\":1568606155,\"updated_at\":\"2019-09-02 03:55:55 UTC\"}}"], ["updated_at", "2019-09-02 03:55:55.816524"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 22:55:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword{\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "linda@gerhold.com"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 57ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 22:56:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword{\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mac@legros.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mac@legros.biz"], ["encrypted_password", "$2a$04$rYegsCpkF87NLEXI8NC/ourwFbwTpYdLy1IZTwPLYsoM1Ap9qoPq6"], ["confirmed_at", "2019-09-02 03:56:25.147767"], ["name", "Ty Malone"], ["email", "mac@legros.biz"], ["created_at", "2019-09-02 03:56:25.148843"], ["updated_at", "2019-09-02 03:56:25.148843"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shayne.pollich@mcculloughmoen.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shayne.pollich@mcculloughmoen.co"], ["encrypted_password", "$2a$04$05jgCRlspqlx5Tfm5M8i1O0hkRYZDEGe7HT8YMp3oqwN6HD55/kIe"], ["confirmed_at", "2019-09-02 03:56:28.514179"], ["name", "Daisy Chain"], ["email", "shayne.pollich@mcculloughmoen.co"], ["created_at", "2019-09-02 03:56:28.516095"], ["updated_at", "2019-09-02 03:56:28.516095"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YFqarwoRKS6nTGSKSOYnhw\":{\"token\":\"$2a$10$KkIPCTYfCEpTbkEsbQ.x6.hL/54.n/9hJD35q9O37Vd5.RdBab.N2\",\"expiry\":1568606188,\"updated_at\":\"2019-09-02 03:56:28 UTC\"}}"], ["updated_at", "2019-09-02 03:56:28.560084"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 22:56:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword{\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "shayne.pollich@mcculloughmoen.co"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 59ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:01:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword{\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "takisha@johnsontromp.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "takisha@johnsontromp.name"], ["encrypted_password", "$2a$04$hMFxRj0O0BMwcpFtZI3xne2hGBqrnAzRrCje7m2Ss/xxP8/A3VC4u"], ["confirmed_at", "2019-09-02 04:01:34.408044"], ["name", "Ali Katt"], ["email", "takisha@johnsontromp.name"], ["created_at", "2019-09-02 04:01:34.409509"], ["updated_at", "2019-09-02 04:01:34.409509"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vance_pacocha@haagjakubowski.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "vance_pacocha@haagjakubowski.com"], ["encrypted_password", "$2a$04$HJa13Nm2zJR74pGWnZ1P2.flEge7CcAl88QoRQYNmLSQaepjoS/EW"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:01:37.369171"], ["name", "Jasmine Flowers"], ["email", "vance_pacocha@haagjakubowski.com"], ["created_at", "2019-09-02 04:01:37.371098"], ["updated_at", "2019-09-02 04:01:37.371098"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"HEkvtwPEwB7DBXQB_iEgQA\":{\"token\":\"$2a$10$VV5hVNgUSy64HYD33O8Lk.SGLBvi/RUirP13bG0G7ZVd8kvzw21Wm\",\"expiry\":1568606497,\"updated_at\":\"2019-09-02 04:01:37 UTC\"}}"], ["updated_at", "2019-09-02 04:01:37.418096"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:01:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "vance_pacocha@haagjakubowski.com"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 58ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:02:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rosamaria@baumbach.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rosamaria@baumbach.biz"], ["encrypted_password", "$2a$04$EwZVbdYD3ogSIOF7JR/i0O6CRiZfWATg5M3jA3VxsYxkwD7LD2246"], ["confirmed_at", "2019-09-02 04:02:17.033839"], ["name", "Hy Marx"], ["email", "rosamaria@baumbach.biz"], ["created_at", "2019-09-02 04:02:17.035099"], ["updated_at", "2019-09-02 04:02:17.035099"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eugenie@mills.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "eugenie@mills.info"], ["encrypted_password", "$2a$04$5Xcy08kHEZto/gS1cWboueIMXNrLnBBhXZE97wtnH1BhGjUyM0URC"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:02:28.551802"], ["name", "Chris Mass"], ["email", "eugenie@mills.info"], ["created_at", "2019-09-02 04:02:28.553738"], ["updated_at", "2019-09-02 04:02:28.553738"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bw0dDdKsrdqcI9jWqsBUeg\":{\"token\":\"$2a$10$7AQPHF.LBdclcMznMZZxEe0jPPh7YzCdcuJVcRMgYEaKlm7kDZwqe\",\"expiry\":1568606548,\"updated_at\":\"2019-09-02 04:02:28 UTC\"}}"], ["updated_at", "2019-09-02 04:02:28.597681"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:02:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n currentPassword: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "eugenie@mills.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 500 Internal Server Error in 58ms (ActiveRecord: 0.2ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:02:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n currentPassword: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fawn_kemmer@dubuque.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "fawn_kemmer@dubuque.com"], ["encrypted_password", "$2a$04$nCbQyZTAOTakeACb7To.gOPorUw54XAMvwlVvdI6mysUkFY6GgPGG"], ["confirmed_at", "2019-09-02 04:02:28.675410"], ["name", "June Bugg"], ["email", "fawn_kemmer@dubuque.com"], ["created_at", "2019-09-02 04:02:28.676279"], ["updated_at", "2019-09-02 04:02:28.676279"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gino@murazik.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gino@murazik.co"], ["encrypted_password", "$2a$04$e.2MIdjCmRLsea1MPI/RJurrnignknBJBHU0/PKig9ThwcsOmyAnq"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:02:47.250612"], ["name", "Gene Poole"], ["email", "gino@murazik.co"], ["created_at", "2019-09-02 04:02:47.252576"], ["updated_at", "2019-09-02 04:02:47.252576"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BbBuKF_3m2iwVUCMchzb5Q\":{\"token\":\"$2a$10$xhSYxs.std7aMrG6m7D77uyyRTZz1ZhuWzydpQ21bM6mFa8Vmnxaq\",\"expiry\":1568606567,\"updated_at\":\"2019-09-02 04:02:47 UTC\"}}"], ["updated_at", "2019-09-02 04:02:47.300811"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:02:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n currentPassword: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gino@murazik.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 500 Internal Server Error in 54ms (ActiveRecord: 0.2ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:02:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n currentPassword: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "waneta@lemke.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "waneta@lemke.co"], ["encrypted_password", "$2a$04$ogpFWgMBxB8qNaqj48eXR.mJyTUYM23esuNcZAcU3tD0hgXdVx8UC"], ["confirmed_at", "2019-09-02 04:02:47.380546"], ["name", "Anita Job"], ["email", "waneta@lemke.co"], ["created_at", "2019-09-02 04:02:47.381513"], ["updated_at", "2019-09-02 04:02:47.381513"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "corine@wintheiser.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "corine@wintheiser.net"], ["encrypted_password", "$2a$04$TTK0mMeHabE5In5bm0eDdO7M0hHN7/toy5Jc2dpyAoND6QVjoY.fm"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:02:57.690893"], ["name", "May O'Nays"], ["email", "corine@wintheiser.net"], ["created_at", "2019-09-02 04:02:57.692804"], ["updated_at", "2019-09-02 04:02:57.692804"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"GJPXPd1-8Xns9CVZ1aSq2A\":{\"token\":\"$2a$10$dw1GdSjVfy.rinKYcUuaa.Dc9h851.9E4.zCqA1tbiYtXKF.Pur82\",\"expiry\":1568606577,\"updated_at\":\"2019-09-02 04:02:57 UTC\"}}"], ["updated_at", "2019-09-02 04:02:57.742082"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:02:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n currentPassword: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "corine@wintheiser.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 500 Internal Server Error in 55ms (ActiveRecord: 0.2ms)  (2.7ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "benjamin@gradydubuque.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "benjamin@gradydubuque.org"], ["encrypted_password", "$2a$04$hdG2a8ZvX0clItYPlYm9SeVe/twsCxI01/ppmq65GxLDPKLZ.vewK"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:03:52.416692"], ["name", "Doug Graves"], ["email", "benjamin@gradydubuque.org"], ["created_at", "2019-09-02 04:03:52.418615"], ["updated_at", "2019-09-02 04:03:52.418615"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YnU7fYSzGDN9URcgJ-lqDg\":{\"token\":\"$2a$10$93uRmuWYIZfspjA8kuEf5eOJgHqfw2dngRSWQIiAeLHlV/G2nYOEW\",\"expiry\":1568606632,\"updated_at\":\"2019-09-02 04:03:52 UTC\"}}"], ["updated_at", "2019-09-02 04:03:52.469141"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "benjamin@gradydubuque.org"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 57ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "len_parker@schmidt.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "len_parker@schmidt.net"], ["encrypted_password", "$2a$04$fqodrMvY0woicGV9e0XUTuK4lwgbVU4MlMdoJ6sdlhDrXR7qu36qu"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:04:52.445339"], ["name", "Lisa Neucar"], ["email", "len_parker@schmidt.net"], ["created_at", "2019-09-02 04:04:52.447317"], ["updated_at", "2019-09-02 04:04:52.447317"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3W7RrXB2MykfRYe_kO-bEw\":{\"token\":\"$2a$10$/c4bC.V68osxd4UIcmUpO.RTSpmwLnlaBXRuBOwPiupBGB7kZ69di\",\"expiry\":1568606692,\"updated_at\":\"2019-09-02 04:04:52 UTC\"}}"], ["updated_at", "2019-09-02 04:04:52.497250"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:04:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "len_parker@schmidt.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$IPKup8ouogsg.iG31dGTxO/TEvrOam1/urrULKwPCpnmkkCPmHEPO"], ["updated_at", "2019-09-02 04:04:52.563898"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 04:04:52.564825"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.6ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shaquana_jakubowski@bartoletti.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "shaquana_jakubowski@bartoletti.org"], ["encrypted_password", "$2a$04$ffaOQstXt.2Yt6nfQWMBYeASuN4xUwghb9OW21u9gJcFyHYMaCec6"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:08:46.841635"], ["name", "Robin Meeblind"], ["email", "shaquana_jakubowski@bartoletti.org"], ["created_at", "2019-09-02 04:08:46.843504"], ["updated_at", "2019-09-02 04:08:46.843504"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dpJu-3mqQqkL7VPbz3iazg\":{\"token\":\"$2a$10$A2y9fewVrhfmm.nbeZ/PYOawNH45OXxtpg9LOd791U.7at8Uy6tb6\",\"expiry\":1568606926,\"updated_at\":\"2019-09-02 04:08:46 UTC\"}}"], ["updated_at", "2019-09-02 04:08:46.888481"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:08:46 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "shaquana_jakubowski@bartoletti.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Dnqc8jOaRFiThn.m2JShL.NG3eVf/CYInRqWXT2uQPzouR6GXvWJK"], ["updated_at", "2019-09-02 04:08:46.952416"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 04:08:46.953333"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "katherin.morar@gaylordhuel.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "katherin.morar@gaylordhuel.net"], ["encrypted_password", "$2a$04$vDPL4WJ1Ox/JT1hVP8SWb.oXHPk//KThIJMi9goBto1w3hMdUWJ4S"], ["confirmed_at", "2019-09-02 04:16:41.540051"], ["name", "Stan Still"], ["email", "katherin.morar@gaylordhuel.net"], ["created_at", "2019-09-02 04:16:41.542049"], ["updated_at", "2019-09-02 04:16:41.542049"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"vQ5_Y4A0i6IcuahvQezB1Q\":{\"token\":\"$2a$10$3edEiFtnXTn6LcqA5rv/8Ob5CLjocuIMqWUgVer0nYiGAGuUFmw.e\",\"expiry\":1568607401,\"updated_at\":\"2019-09-02 04:16:41 UTC\"}}"], ["updated_at", "2019-09-02 04:16:41.586168"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:16:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "katherin.morar@gaylordhuel.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 04:16:41.655642"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:16:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ralph@kohler.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ralph@kohler.org"], ["encrypted_password", "$2a$04$UMYrsfBdG8id99X8S7OtLOtV.JMK/MpnUNYUVhgs8Xmi7GFGCKOtO"], ["confirmed_at", "2019-09-02 04:16:41.664934"], ["name", "Faye Kinnitt"], ["email", "ralph@kohler.org"], ["created_at", "2019-09-02 04:16:41.665656"], ["updated_at", "2019-09-02 04:16:41.665656"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "reggie@sanfordsmith.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "reggie@sanfordsmith.co"], ["encrypted_password", "$2a$04$VYIM7vyGqvoNDjp3aT4wQeF95ExzfiPEnHtnRMjZlrammvbcy6.fi"], ["confirmed_at", "2019-09-02 04:17:43.736768"], ["name", "Matt Tress"], ["email", "reggie@sanfordsmith.co"], ["created_at", "2019-09-02 04:17:43.738678"], ["updated_at", "2019-09-02 04:17:43.738678"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EG-u0avx_ZV6vSIe1IL5Lw\":{\"token\":\"$2a$10$LhZU5Wdrl.2if3FGIaB3Ku9n8Om98Bk5keEeFnmyNMgHCBM70qU9G\",\"expiry\":1568607463,\"updated_at\":\"2019-09-02 04:17:43 UTC\"}}"], ["updated_at", "2019-09-02 04:17:43.787914"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:17:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "reggie@sanfordsmith.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 04:17:43.856233"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 56ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:18:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "harley@stoltenberg.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "harley@stoltenberg.io"], ["encrypted_password", "$2a$04$KQ9WiOZ.egBHvt/BdXhtP.joKdr0JK1aV6UJizuqYNQG7a9.OZsdK"], ["confirmed_at", "2019-09-02 04:18:35.408089"], ["name", "Lowden Clear"], ["email", "harley@stoltenberg.io"], ["created_at", "2019-09-02 04:18:35.409311"], ["updated_at", "2019-09-02 04:18:35.409311"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "keri_reilly@cummings.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "keri_reilly@cummings.io"], ["encrypted_password", "$2a$04$PT7wgfx8a4POTYjH4xgrp.DABOW5.G4KB3et4rPDt3OD/mUY29pPO"], ["confirmed_at", "2019-09-02 04:18:38.372531"], ["name", "Otto Graf"], ["email", "keri_reilly@cummings.io"], ["created_at", "2019-09-02 04:18:38.374431"], ["updated_at", "2019-09-02 04:18:38.374431"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EOfQq5_cySId8EAE_GZbJw\":{\"token\":\"$2a$10$LdHoC6hUyWujYJJfcHzdv.w1o9VmtAdrPnujS2NFSTk9rMrQaVj7m\",\"expiry\":1568607518,\"updated_at\":\"2019-09-02 04:18:38 UTC\"}}"], ["updated_at", "2019-09-02 04:18:38.418032"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:18:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "keri_reilly@cummings.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:19:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jarrett@crist.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jarrett@crist.co"], ["encrypted_password", "$2a$04$n7kvUj2/0FzKk4rLag9zaeqdgpActpE/QfoIZKnbsJ1BtqI47jJ22"], ["confirmed_at", "2019-09-02 04:19:06.702340"], ["name", "Ben O'Drill"], ["email", "jarrett@crist.co"], ["created_at", "2019-09-02 04:19:06.703437"], ["updated_at", "2019-09-02 04:19:06.703437"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "winfred@grantdooley.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "winfred@grantdooley.io"], ["encrypted_password", "$2a$04$k5FBXY050HqBNkp8xICTnOJPJt0vN3skMwbZ.Ox/2EPa51zro4FXO"], ["confirmed_at", "2019-09-02 04:19:10.447802"], ["name", "C. Worthy"], ["email", "winfred@grantdooley.io"], ["created_at", "2019-09-02 04:19:10.449737"], ["updated_at", "2019-09-02 04:19:10.449737"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TKUBfnNpuXmiS6AYhThDMg\":{\"token\":\"$2a$10$6L17wbohsnZqvY2QH.ymHe/hCBjBR2SC9y2uwwAzIKxNXlg.JF7Pm\",\"expiry\":1568607550,\"updated_at\":\"2019-09-02 04:19:10 UTC\"}}"], ["updated_at", "2019-09-02 04:19:10.507213"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:19:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "winfred@grantdooley.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 04:19:10.579457"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:19:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tony.gulgowski@hammeslubowitz.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tony.gulgowski@hammeslubowitz.net"], ["encrypted_password", "$2a$04$UH.hP2L1SN63B/O6L83douX8CBA.zRN4nIq3/U3Bsp4Wmhn8TJaaW"], ["confirmed_at", "2019-09-02 04:19:12.391007"], ["name", "Candy Baskett"], ["email", "tony.gulgowski@hammeslubowitz.net"], ["created_at", "2019-09-02 04:19:12.392562"], ["updated_at", "2019-09-02 04:19:12.392562"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "erich@simonis.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "erich@simonis.io"], ["encrypted_password", "$2a$04$CZS59npr/OP/x8LoZO9XROVBC1V89YzaubicqcUk1OoHlo39GL/D2"], ["confirmed_at", "2019-09-02 04:19:22.326459"], ["name", "Beau Tye"], ["email", "erich@simonis.io"], ["created_at", "2019-09-02 04:19:22.328425"], ["updated_at", "2019-09-02 04:19:22.328425"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"owygEmeOalMCJ2dj0lMnBg\":{\"token\":\"$2a$10$6YOHoxvQZDANvIINRMcabebSXtwWWf66rTfsfKe9qamF.J1iK7U9C\",\"expiry\":1568607562,\"updated_at\":\"2019-09-02 04:19:22 UTC\"}}"], ["updated_at", "2019-09-02 04:19:22.377522"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:19:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "erich@simonis.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 04:19:22.452810"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.3ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:19:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dottie.kling@boyle.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dottie.kling@boyle.io"], ["encrypted_password", "$2a$04$S9AoUDuH8i.IIjo77kwwReVaCekU1hr9X.d5kgJTMtYGlJJ3lW9ge"], ["confirmed_at", "2019-09-02 04:19:22.462387"], ["name", "Owen Moore"], ["email", "dottie.kling@boyle.io"], ["created_at", "2019-09-02 04:19:22.463304"], ["updated_at", "2019-09-02 04:19:22.463304"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jonna@halvorsonroberts.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jonna@halvorsonroberts.org"], ["encrypted_password", "$2a$04$dPrN08D.Bbj.z/Kg00YNoec0.DuIFTsvGigceLhcelms.YRJkum82"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:19:30.571328"], ["name", "Olive Hoyl"], ["email", "jonna@halvorsonroberts.org"], ["created_at", "2019-09-02 04:19:30.573289"], ["updated_at", "2019-09-02 04:19:30.573289"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fIaglpI8TeEBZE2khs58WA\":{\"token\":\"$2a$10$e9rx878Jkqg00qTx06QqGerLjWK.LL.7jvh0.XK6i1buFwwY0wZT.\",\"expiry\":1568607570,\"updated_at\":\"2019-09-02 04:19:30 UTC\"}}"], ["updated_at", "2019-09-02 04:19:30.619908"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:19:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jonna@halvorsonroberts.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$eSxMkqXqdL/9PfomLm1u6OLWRAqlktDIgwYO7lLNcZOj/qk5z/VfG"], ["updated_at", "2019-09-02 04:19:30.692035"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 04:19:30.693050"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.7ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "beula@oconner.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "beula@oconner.net"], ["encrypted_password", "$2a$04$n5axuimMNG19w6B6wRYxrubJbtRrnko1jzgyHnoZSRYd5XLZLwECq"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:21:04.137638"], ["name", "Myra Maines"], ["email", "beula@oconner.net"], ["created_at", "2019-09-02 04:21:04.139491"], ["updated_at", "2019-09-02 04:21:04.139491"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"q617LmpDuaPmoGTMhaG1GA\":{\"token\":\"$2a$10$v.Gq7YBWv5GosfjTKkkQiuQyP63zQYjwsun4E0oxhjGgKtUXe3K5q\",\"expiry\":1568607664,\"updated_at\":\"2019-09-02 04:21:04 UTC\"}}"], ["updated_at", "2019-09-02 04:21:04.183519"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:21:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "beula@oconner.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$9fTcQGEnFUDahDZf4xtGcOFAYB2A2oeDk1HBCMrMOlqzGfSYTXA9S"], ["updated_at", "2019-09-02 04:21:04.246614"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 04:21:04.247524"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]] User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"q617LmpDuaPmoGTMhaG1GA\":{\"token\":\"$2a$10$v.Gq7YBWv5GosfjTKkkQiuQyP63zQYjwsun4E0oxhjGgKtUXe3K5q\",\"expiry\":1568607664,\"updated_at\":\"2019-09-02 04:22:23 UTC\"}}"], ["updated_at", "2019-09-02 04:22:23.765976"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]] User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"q617LmpDuaPmoGTMhaG1GA\":{\"token\":\"$2a$10$v.Gq7YBWv5GosfjTKkkQiuQyP63zQYjwsun4E0oxhjGgKtUXe3K5q\",\"expiry\":1568607664,\"updated_at\":\"2019-09-02 04:23:30 UTC\"}}"], ["updated_at", "2019-09-02 04:23:30.597887"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 146403ms (Views: 0.1ms | ActiveRecord: 1.4ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "viviana@hagenes.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "viviana@hagenes.net"], ["encrypted_password", "$2a$04$kJTX7UmtIY45uGSl.sCISOiaK.vlMDbGctH5.NTxvRQwax3LXADFC"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:23:46.979650"], ["name", "Jerry Atrics"], ["email", "viviana@hagenes.net"], ["created_at", "2019-09-02 04:23:46.981548"], ["updated_at", "2019-09-02 04:23:46.981548"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"C3sFKF4D2KlBSq28rvNayg\":{\"token\":\"$2a$10$usnrLB55W0soS3Av.ewGJ.mpXoeCe4PUWN1PhlskrDJ.b7MMFpSyq\",\"expiry\":1568607827,\"updated_at\":\"2019-09-02 04:23:46 UTC\"}}"], ["updated_at", "2019-09-02 04:23:47.026578"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:23:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "viviana@hagenes.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$fMjjTO5hqF1rPvWCbhx93.7PP7bTC8NxTShMdYyPOFVT6fH1EkbbS"], ["updated_at", "2019-09-02 04:23:47.099145"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 04:23:47.100100"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]] User Update (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"C3sFKF4D2KlBSq28rvNayg\":{\"token\":\"$2a$10$usnrLB55W0soS3Av.ewGJ.mpXoeCe4PUWN1PhlskrDJ.b7MMFpSyq\",\"expiry\":1568607827,\"updated_at\":\"2019-09-02 04:23:47 UTC\"}}"], ["updated_at", "2019-09-02 04:23:47.102459"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 165239ms (Views: 0.1ms | ActiveRecord: 0.8ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lacy.nolan@mosciski.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lacy.nolan@mosciski.net"], ["encrypted_password", "$2a$04$yB0.la958ihVofyzpJ0Kh.FuXef/1wiy07FaqJWOhszCFLit5T.hm"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:26:37.604443"], ["name", "Anna Sasin"], ["email", "lacy.nolan@mosciski.net"], ["created_at", "2019-09-02 04:26:37.606570"], ["updated_at", "2019-09-02 04:26:37.606570"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9gtemPC0nOr6A9GTUCWdEg\":{\"token\":\"$2a$10$0js5.dx5JyY/RISm7Md09OME7.Kf82t6YFm0x3pOP7sPMlK4LFH3G\",\"expiry\":1568607997,\"updated_at\":\"2019-09-02 04:26:37 UTC\"}}"], ["updated_at", "2019-09-02 04:26:37.655479"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:26:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lacy.nolan@mosciski.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$XnLNmaDtRA.2l0AV8DHzXOqsttHQ9nAbCwkZcxSFW4GhOiEoLuSta"], ["updated_at", "2019-09-02 04:26:37.725832"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 04:26:37.726762"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dion@mohr.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dion@mohr.io"], ["encrypted_password", "$2a$04$b7Je3p43.u5vcG/YIpoZpeQf/vj9JeedvzF5sgjxZI5ZV.hX0AcIe"], ["confirmed_at", "2019-09-02 04:27:49.083644"], ["name", "Laura Norder"], ["email", "dion@mohr.io"], ["created_at", "2019-09-02 04:27:49.085564"], ["updated_at", "2019-09-02 04:27:49.085564"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"AwGlxUrZHtsYyuWvhNOO3g\":{\"token\":\"$2a$10$LxM4xS3O6uQICc5nQB1Xw./NVXNcOr93tZZOvpn5NSRxsxpENpjim\",\"expiry\":1568608069,\"updated_at\":\"2019-09-02 04:27:49 UTC\"}}"], ["updated_at", "2019-09-02 04:27:49.129248"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:27:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dion@mohr.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 04:27:49.199239"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 55ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:27:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "phyllis.dickinson@conn.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "phyllis.dickinson@conn.co"], ["encrypted_password", "$2a$04$4eQN2RrByCHP/EusU/LF5ePILOCrNlV3awezMFLSHPHnr4Kof5SrS"], ["confirmed_at", "2019-09-02 04:27:49.207907"], ["name", "Duane Pipe"], ["email", "phyllis.dickinson@conn.co"], ["created_at", "2019-09-02 04:27:49.208732"], ["updated_at", "2019-09-02 04:27:49.208732"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nathanial.moriette@stanton.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nathanial.moriette@stanton.info"], ["encrypted_password", "$2a$04$ixUiNgKN3eUPsI18TtrcOuUVWuxnlckecdhngagtuJRHfmdQosxiq"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:28:03.789113"], ["name", "Bill Lowney"], ["email", "nathanial.moriette@stanton.info"], ["created_at", "2019-09-02 04:28:03.791031"], ["updated_at", "2019-09-02 04:28:03.791031"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"R8_HiYdbZOP71VGMvggCTg\":{\"token\":\"$2a$10$dJAgC2ES4xO3R7045IyI7utKinthc/AgbGWWxhUdKHgGTFJLCwOZu\",\"expiry\":1568608083,\"updated_at\":\"2019-09-02 04:28:03 UTC\"}}"], ["updated_at", "2019-09-02 04:28:03.837100"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:28:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "nathanial.moriette@stanton.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$.hm8F3sw8lHia51NbZUjfeMZkm.oP5z16/o/2C1SxNwKhR2esez86"], ["updated_at", "2019-09-02 04:28:03.906631"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 04:28:03.907630"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tennie@weimanngreenholt.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tennie@weimanngreenholt.io"], ["encrypted_password", "$2a$04$77K1zTNST4YBDJHLIvSwEuwDI.kxE2WuNpK59ulOhTjQ/0l0o/VaW"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:33:19.372753"], ["name", "Marj Oram"], ["email", "tennie@weimanngreenholt.io"], ["created_at", "2019-09-02 04:33:19.374691"], ["updated_at", "2019-09-02 04:33:19.374691"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gKRWgfA0NTt3LLTMz8UhLw\":{\"token\":\"$2a$10$jodR4v7XUdAWXcNjnJNIBOikCAs0ws32TLNapnxH73sTy7vFq/aT2\",\"expiry\":1568608399,\"updated_at\":\"2019-09-02 04:33:19 UTC\"}}"], ["updated_at", "2019-09-02 04:33:19.426082"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:33:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tennie@weimanngreenholt.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$t5F.Z9vFRUi3eZO49IsYru6CQZ3vdJm7zvk70GaDnoUu/AyA9y2Ae"], ["updated_at", "2019-09-02 04:33:19.509944"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 04:33:19.510909"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "edwin@corwinchristiansen.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "edwin@corwinchristiansen.co"], ["encrypted_password", "$2a$04$2Ih4sl25ZSfmFSHZzURrJO1iMBtp3nsoC/nu6ae1Gog5szsbIWjce"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:33:41.722849"], ["name", "Artie Choke"], ["email", "edwin@corwinchristiansen.co"], ["created_at", "2019-09-02 04:33:41.724819"], ["updated_at", "2019-09-02 04:33:41.724819"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"MYdoaJ7XISV_w5QBw0I7GQ\":{\"token\":\"$2a$10$iOCnj3IcMBpq76xnHMFe5OihNyxYkrd92l3MLrMk/WCPArQKBfBgO\",\"expiry\":1568608421,\"updated_at\":\"2019-09-02 04:33:41 UTC\"}}"], ["updated_at", "2019-09-02 04:33:41.774341"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:33:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "edwin@corwinchristiansen.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$u0j2gFPUZOeHJqGMziiZDu/sc7AyIjLSqgVpSGDeJuQ08Q3V6jNJC"], ["updated_at", "2019-09-02 04:33:41.844958"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 04:33:41.845932"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tanya.volkman@herman.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tanya.volkman@herman.io"], ["encrypted_password", "$2a$04$jSEacg6Gfm22WxCYqsgk4.BbutlKkvuiN3DoPJrsElNygehzK.UjW"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:34:13.478324"], ["name", "Phil Rupp"], ["email", "tanya.volkman@herman.io"], ["created_at", "2019-09-02 04:34:13.480277"], ["updated_at", "2019-09-02 04:34:13.480277"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"xy_ns28eUpeXTmrqcqL3Pg\":{\"token\":\"$2a$10$CqkyeKM1D1BBuaRJCBlKZeFqKFAYgEMUa4m24tJjMaRNehVqXvQuO\",\"expiry\":1568608453,\"updated_at\":\"2019-09-02 04:34:13 UTC\"}}"], ["updated_at", "2019-09-02 04:34:13.524909"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:34:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tanya.volkman@herman.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$kQ3gpoYE2hlua0wMZGs9/.N9XyDKZdOseRq4famEthEIkgeQN3D3m"], ["updated_at", "2019-09-02 04:34:13.595184"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 04:34:13.596161"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bulah@willms.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bulah@willms.io"], ["encrypted_password", "$2a$04$Xt3Rny8uT91E13H57atsZ.Ig99lg/0Gnk/t/PRFTqD0UmzlULwMkW"], ["confirmed_at", "2019-09-02 04:35:22.229784"], ["name", "Justin Tune"], ["email", "bulah@willms.io"], ["created_at", "2019-09-02 04:35:22.231738"], ["updated_at", "2019-09-02 04:35:22.231738"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2OabZxEkLW6HCWOtcDF3fg\":{\"token\":\"$2a$10$aqN1Uvlyci.6yEao8Cbi9.z.bA1US3kHF89IJq2CJ8RRHhLZo0QVO\",\"expiry\":1568608522,\"updated_at\":\"2019-09-02 04:35:22 UTC\"}}"], ["updated_at", "2019-09-02 04:35:22.278645"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:35:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "bulah@willms.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$.LWnRoolxPAl1PTr39UICe3fFRNraGveye0nzPFde1eK2bxC9TRrS"], ["updated_at", "2019-09-02 04:35:22.352042"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "henry.wolf@runolfsdottir.co"], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "zita_von@kirlin.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "zita_von@kirlin.name"], ["encrypted_password", "$2a$04$9IYHnubOR0S5kwd.z6ork.Q8YjJTx9d9rLr6ou7FK11OiPnJQnxxe"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:51:55.053998"], ["name", "Hy Price"], ["email", "zita_von@kirlin.name"], ["created_at", "2019-09-02 04:51:55.055961"], ["updated_at", "2019-09-02 04:51:55.055961"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DUANCbL6LWVP3JKgHm7Gvg\":{\"token\":\"$2a$10$nPIpQhevdyBPsNhp1mAa3e6ahb.W.P8DcvGAkfQRvvC4jcccHhTxO\",\"expiry\":1568609515,\"updated_at\":\"2019-09-02 04:51:55 UTC\"}}"], ["updated_at", "2019-09-02 04:51:55.101892"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:51:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "zita_von@kirlin.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 500 Internal Server Error in 57ms (ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "pete.oconnell@boehm.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "pete.oconnell@boehm.name"], ["encrypted_password", "$2a$04$yEg2H61XLRqqy2XddeKAvuRlzXEJ1Ay3mRU6beiw5to4p2eXsI36O"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:52:30.395422"], ["name", "Colleen Cardd"], ["email", "pete.oconnell@boehm.name"], ["created_at", "2019-09-02 04:52:30.397335"], ["updated_at", "2019-09-02 04:52:30.397335"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"PKeAb3nuzzDtmVRyOqvp3A\":{\"token\":\"$2a$10$sTumB1WcjTg4h587ikYiBe9gADgTK71EBEaj1YPfcLCQVNEPCNv6q\",\"expiry\":1568609550,\"updated_at\":\"2019-09-02 04:52:30 UTC\"}}"], ["updated_at", "2019-09-02 04:52:30.443022"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:52:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "pete.oconnell@boehm.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 500 Internal Server Error in 169095ms (ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "granville_graham@purdy.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "granville_graham@purdy.io"], ["encrypted_password", "$2a$04$ODRnAS2dDfsSCkmFsbY7P.r1iNzyTx6pNqtDZAWFuVT2huXQTw/na"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 04:58:44.111103"], ["name", "Rocky Shore"], ["email", "granville_graham@purdy.io"], ["created_at", "2019-09-02 04:58:44.113029"], ["updated_at", "2019-09-02 04:58:44.113029"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TVCb08vYeQG949AnfdBGig\":{\"token\":\"$2a$10$j337hjcSPib5ahwTa7lSPe0vYMlSkxQ.0vKn0qxJFuXAj94O6Z0R2\",\"expiry\":1568609924,\"updated_at\":\"2019-09-02 04:58:44 UTC\"}}"], ["updated_at", "2019-09-02 04:58:44.163127"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-01 23:58:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "granville_graham@purdy.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$gxvsmzSfY2ZUCOJESsCkyuIGyE2hjmt5/uqLho8BFwUNm/Kf91O5m"], ["updated_at", "2019-09-02 04:58:44.247469"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 04:58:44.248443"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "julietta_braun@yosthettinger.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "julietta_braun@yosthettinger.io"], ["encrypted_password", "$2a$04$tc7r0mJjGaiAib2sp3N72eEEHxZrcOonHf1OPidUX7grDB3fcSQle"], ["confirmed_at", "2019-09-02 05:00:11.745364"], ["name", "Frank Enstein"], ["email", "julietta_braun@yosthettinger.io"], ["created_at", "2019-09-02 05:00:11.747263"], ["updated_at", "2019-09-02 05:00:11.747263"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"IC2bszDif0ZONzYyYQcACg\":{\"token\":\"$2a$10$hUeWFRErQG3UubbLWuOkze8aUUugSP.iZUwjF6ldP.wX5FoPFwtLG\",\"expiry\":1568610011,\"updated_at\":\"2019-09-02 05:00:11 UTC\"}}"], ["updated_at", "2019-09-02 05:00:11.797569"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:00:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "julietta_braun@yosthettinger.io"], ["LIMIT", 1]] Completed 500 Internal Server Error in 56ms (ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "patti@christiansen.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "patti@christiansen.io"], ["encrypted_password", "$2a$04$/A8HAM6UaKjsuBTHYg4QD.5Gx5PtdNc7qjMgO/ojXc0EM30autZZy"], ["confirmed_at", "2019-09-02 05:00:40.718068"], ["name", "Cal Efornia"], ["email", "patti@christiansen.io"], ["created_at", "2019-09-02 05:00:40.721073"], ["updated_at", "2019-09-02 05:00:40.721073"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-EpbkNkRDQlsEnl-FIHnFw\":{\"token\":\"$2a$10$Rx0ZH64Ex/a.GAvmg0sKcejJxkMsgTH92YT.WpWysDvdcB7z2maj.\",\"expiry\":1568610040,\"updated_at\":\"2019-09-02 05:00:40 UTC\"}}"], ["updated_at", "2019-09-02 05:00:40.772467"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:00:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "patti@christiansen.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.2ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tom_altenwerth@hills.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tom_altenwerth@hills.info"], ["encrypted_password", "$2a$04$oFyRe4LH6vRAJwYVoU2f2.Ix.Z2W8R5RwfJnAJKEgbWA16SPGkezG"], ["confirmed_at", "2019-09-02 05:02:11.684462"], ["name", "Hugh Mungous"], ["email", "tom_altenwerth@hills.info"], ["created_at", "2019-09-02 05:02:11.686397"], ["updated_at", "2019-09-02 05:02:11.686397"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Wa6nfou6X7Tf7OGIdks8ng\":{\"token\":\"$2a$10$TNaZGyJnxivSWfI29HQVr.D9XhOwxUzCKU4eHrUU/DvkdSg5SwR.O\",\"expiry\":1568610131,\"updated_at\":\"2019-09-02 05:02:11 UTC\"}}"], ["updated_at", "2019-09-02 05:02:11.736027"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:02:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tom_altenwerth@hills.info"], ["LIMIT", 1]] Completed 500 Internal Server Error in 55ms (ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "micah@goldnerjakubowski.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "micah@goldnerjakubowski.io"], ["encrypted_password", "$2a$04$sl2ZAuPIYAzyCSiSn1P9Qe.yporJwQvGpNnx6hngnyQO.IIiwrlf2"], ["confirmed_at", "2019-09-02 05:02:29.854752"], ["name", "Peg Legge"], ["email", "micah@goldnerjakubowski.io"], ["created_at", "2019-09-02 05:02:29.856617"], ["updated_at", "2019-09-02 05:02:29.856617"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"4od65Sq8GuPDT3RWq24IYQ\":{\"token\":\"$2a$10$o8gUdIXUMDv3JSUbYQLsGenfwVzOKsgDVFlfdUiBJphFXBvuevNse\",\"expiry\":1568610149,\"updated_at\":\"2019-09-02 05:02:29 UTC\"}}"], ["updated_at", "2019-09-02 05:02:29.902846"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:02:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "micah@goldnerjakubowski.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 58ms (Views: 0.2ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lakeisha@okunevamckenzie.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lakeisha@okunevamckenzie.biz"], ["encrypted_password", "$2a$04$/C.1RrFStLrVRsjVKi/8Pu2UTwkg3DrVr4i12Ci4fr42EoQi51lxi"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:08:05.363723"], ["name", "Bill Ng"], ["email", "lakeisha@okunevamckenzie.biz"], ["created_at", "2019-09-02 05:08:05.365924"], ["updated_at", "2019-09-02 05:08:05.365924"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"MlVU7udKF2SdKeiZsEHEQw\":{\"token\":\"$2a$10$i7Zm4qFEUzKlQ6NaQHwd..kYzwyplRvFklGJ7qoGI7l9CKSTZxS3m\",\"expiry\":1568610485,\"updated_at\":\"2019-09-02 05:08:05 UTC\"}}"], ["updated_at", "2019-09-02 05:08:05.417732"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:08:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lakeisha@okunevamckenzie.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$04QlrSfkJSUyuVN.rohTpOKD9EJUqD2yaT79/qHrfY.lq74XwKhHC"], ["updated_at", "2019-09-02 05:08:05.489773"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:08:05.490739"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bobbie_parker@gutkowskimccullough.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bobbie_parker@gutkowskimccullough.name"], ["encrypted_password", "$2a$04$MoUSZ.P/dv8Q35hAh50g1O4cfG59onvZATr4kpy8Suh9RRhMcc36i"], ["confirmed_at", "2019-09-02 05:08:43.472757"], ["name", "Macon Paine"], ["email", "bobbie_parker@gutkowskimccullough.name"], ["created_at", "2019-09-02 05:08:43.474691"], ["updated_at", "2019-09-02 05:08:43.474691"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"S1AZ7Dm2x6cd7E1INqbeZg\":{\"token\":\"$2a$10$EIyBhPOhRkBT8bBPPCqfCOa/JejprQeZ0M6TnEaxCmG60TSRXpqXa\",\"expiry\":1568610523,\"updated_at\":\"2019-09-02 05:08:43 UTC\"}}"], ["updated_at", "2019-09-02 05:08:43.525394"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:08:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "bobbie_parker@gutkowskimccullough.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$X13brXnsLInf.xbF.nZDGeU/hQHPAZo7c9dCD02PTYF4RaJEyq5Tq"], ["updated_at", "2019-09-02 05:08:43.595774"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nicolasa.ruel@kuhic.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nicolasa.ruel@kuhic.biz"], ["encrypted_password", "$2a$04$sfyJRUbunDeUm8qJ4G55cuqvIvtli28ycPsrrhquCffP7t2CNCpyO"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:11:43.191931"], ["name", "Rocky Beach"], ["email", "nicolasa.ruel@kuhic.biz"], ["created_at", "2019-09-02 05:11:43.193844"], ["updated_at", "2019-09-02 05:11:43.193844"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"XU-5bPlcjxJiSKZMscffIw\":{\"token\":\"$2a$10$BYwPFul7neNhc62h1StMMOwCZZHR3JQH3DrxKMGv5FM0M0S0hDTGa\",\"expiry\":1568610703,\"updated_at\":\"2019-09-02 05:11:43 UTC\"}}"], ["updated_at", "2019-09-02 05:11:43.239126"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:11:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "nicolasa.ruel@kuhic.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$ymH1OjhJi1KvpceKmZ3w2Oh.SQGnHAMjl5J3VQWkxuA/nXy/V5vle"], ["updated_at", "2019-09-02 05:11:43.324059"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:11:43.325039"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 62ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "malena_baumbach@schulist.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "malena_baumbach@schulist.info"], ["encrypted_password", "$2a$04$yOzNCMm4tgSvTMI63JR3c.RBID6T5WPscDsLBKd53dqbgVORovWFO"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:12:10.912136"], ["name", "Dusty Storm"], ["email", "malena_baumbach@schulist.info"], ["created_at", "2019-09-02 05:12:10.915743"], ["updated_at", "2019-09-02 05:12:10.915743"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-8ULeSPwAIrbGhaJGwauAg\":{\"token\":\"$2a$10$hRfzMuO6RVx.GyBuI.Ur3eUzhEeSZiA.K/uPU3vDhNAb6hZ75tZj.\",\"expiry\":1568610730,\"updated_at\":\"2019-09-02 05:12:10 UTC\"}}"], ["updated_at", "2019-09-02 05:12:10.968938"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:12:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "malena_baumbach@schulist.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$816HvWGwXsM.adWYOGlJtu6ahKvFOFvFm2.K9WZ4LMHdmWoQ/OC7e"], ["updated_at", "2019-09-02 05:12:11.042317"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:12:11.043314"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "august@goldner.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "august@goldner.name"], ["encrypted_password", "$2a$04$mB04AFZyYTLafK86kr8ju.DLis99b6d.M8Z1QJyU2vgUNkvWLTDC6"], ["confirmed_at", "2019-09-02 05:12:11.049369"], ["name", "Lou Pole"], ["email", "august@goldner.name"], ["created_at", "2019-09-02 05:12:11.049974"], ["updated_at", "2019-09-02 05:12:11.049974"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"PpxzjFaHIamJ7Mw1wnmFjg\":{\"token\":\"$2a$10$E54DlrAQeQxPdAUQeQ5j0uSJPmlqvej2ZnYB2xcg6vymYlhuOy5ou\",\"expiry\":1568610731,\"updated_at\":\"2019-09-02 05:12:11 UTC\"}}"], ["updated_at", "2019-09-02 05:12:11.096119"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:12:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "august@goldner.name"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.2ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lashunda_satterfield@cristheller.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lashunda_satterfield@cristheller.info"], ["encrypted_password", "$2a$04$REZUqUP0GjzSvT1m78m03./QYjdfzYVLVjCe425FoXEL1rptNa9ou"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:12:11.162452"], ["name", "Ray Zenz"], ["email", "lashunda_satterfield@cristheller.info"], ["created_at", "2019-09-02 05:12:11.163280"], ["updated_at", "2019-09-02 05:12:11.163280"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yGyckIQxzWVGpMxMoakpAw\":{\"token\":\"$2a$10$sYYDOZ0Obt1g5HWOnHAtSOX83fGRKCNxG0sIs9gmpbP60noWq6HNa\",\"expiry\":1568610731,\"updated_at\":\"2019-09-02 05:12:11 UTC\"}}"], ["updated_at", "2019-09-02 05:12:11.217594"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:12:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lashunda_satterfield@cristheller.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$tlaoWypTQsSw3m5BTtWC8eRFvPIn2JN7ku4wyOE2sncnJI2hyCxCe"], ["updated_at", "2019-09-02 05:12:11.267358"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:12:11.268257"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mohammed@romagueratrantow.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mohammed@romagueratrantow.org"], ["encrypted_password", "$2a$04$VAvhO1JbMlQXWF/jW0y/FuNUGeqABrxPIwYSSADe18IQWcajmIjdG"], ["confirmed_at", "2019-09-02 05:12:11.273803"], ["name", "Ben Dover"], ["email", "mohammed@romagueratrantow.org"], ["created_at", "2019-09-02 05:12:11.274550"], ["updated_at", "2019-09-02 05:12:11.274550"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Jzfv2GLUuI_sLiUteJMnnQ\":{\"token\":\"$2a$10$ktED477P7omIoYrNC7f8IOfirL9x9D8.hrCvVKQkdD10BWtNsfrGm\",\"expiry\":1568610731,\"updated_at\":\"2019-09-02 05:12:11 UTC\"}}"], ["updated_at", "2019-09-02 05:12:11.323149"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:12:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "mohammed@romagueratrantow.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$FuKG52ZLtJea3tBXqoso4O8ynyKHwBa9JkH.e3BiwSLtePK/.njkW"], ["updated_at", "2019-09-02 05:12:11.371875"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "adan@lindbechtelar.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "adan@lindbechtelar.info"], ["encrypted_password", "$2a$04$9wFQunI/cTM5Q3TDleSLO.Bv9wngX/aJDghSn3H6MUCI9Oe41MPEy"], ["confirmed_at", "2019-09-02 05:13:17.207144"], ["name", "Eddie Bull"], ["email", "adan@lindbechtelar.info"], ["created_at", "2019-09-02 05:13:17.209108"], ["updated_at", "2019-09-02 05:13:17.209108"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:13:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ervin@satterfield.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ervin@satterfield.name"], ["encrypted_password", "$2a$04$81VeJDINRRyLAIeNnroNgewUIgSbPOtxsPF2mvJCLsVFux8bsZ.Da"], ["confirmed_at", "2019-09-02 05:13:29.208299"], ["name", "Freida Convict"], ["email", "ervin@satterfield.name"], ["created_at", "2019-09-02 05:13:29.210513"], ["updated_at", "2019-09-02 05:13:29.210513"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:13:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hellen@cummerata.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hellen@cummerata.io"], ["encrypted_password", "$2a$04$xP2R4K.5PbMcoGMrYx.tuuvshwnr.bp5G5ovltJtH4n3ZDaCczq/."], ["confirmed_at", "2019-09-02 05:14:48.703704"], ["name", "Rowan Boatman"], ["email", "hellen@cummerata.io"], ["created_at", "2019-09-02 05:14:48.705730"], ["updated_at", "2019-09-02 05:14:48.705730"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:14:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dominic_lehner@mckenziekunde.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dominic_lehner@mckenziekunde.name"], ["encrypted_password", "$2a$04$nZkMUpzplzXWgUsxqjFrOuVfk2bmROsgE9mUzLo7EAZmSPJCvySxG"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:14:55.517168"], ["name", "Candy Kane"], ["email", "dominic_lehner@mckenziekunde.name"], ["created_at", "2019-09-02 05:14:55.519190"], ["updated_at", "2019-09-02 05:14:55.519190"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bgPwwye7uS67G72N1UuiIA\":{\"token\":\"$2a$10$51dEqQbG6iMsswZy/n1/AO3dIgBrTpHbSuU9KaQR3pb6aYwOQKsly\",\"expiry\":1568610895,\"updated_at\":\"2019-09-02 05:14:55 UTC\"}}"], ["updated_at", "2019-09-02 05:14:55.581593"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:14:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dominic_lehner@mckenziekunde.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$7/M.NxYPX/Su7bH/8fs1leB5uFfYLy5YmUbh/0eopT0WwMmfgcB9G"], ["updated_at", "2019-09-02 05:14:55.655176"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:14:55.656150"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "saundra_shanahan@fadelkemmer.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "saundra_shanahan@fadelkemmer.io"], ["encrypted_password", "$2a$04$FQdF/kXE9D1ccVCalBfhGeRoxY8z1SZg8L9GgsYA/PjcpuYFnwboK"], ["confirmed_at", "2019-09-02 05:14:55.662729"], ["name", "Harmon Ikka"], ["email", "saundra_shanahan@fadelkemmer.io"], ["created_at", "2019-09-02 05:14:55.663555"], ["updated_at", "2019-09-02 05:14:55.663555"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"MH7vtTBTHP1mTZnG540UFQ\":{\"token\":\"$2a$10$XLXF9JtwZbMhNbM7iOokme6xl74sILvcfOZUnqT5TDo8pBVh1U4va\",\"expiry\":1568610895,\"updated_at\":\"2019-09-02 05:14:55 UTC\"}}"], ["updated_at", "2019-09-02 05:14:55.712497"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:14:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "saundra_shanahan@fadelkemmer.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "magaly@corwinflatley.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "magaly@corwinflatley.co"], ["encrypted_password", "$2a$04$lgikw5RW/96y8iTzAx8KDOTnMM2n40SRGrM6n2RZiOlEyWenFyLhe"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:14:55.770193"], ["name", "Skip Dover"], ["email", "magaly@corwinflatley.co"], ["created_at", "2019-09-02 05:14:55.771049"], ["updated_at", "2019-09-02 05:14:55.771049"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"JAgNUuClmwDzd9UaQNNcbQ\":{\"token\":\"$2a$10$kfrsokI89rxzRVFYGq8wjuUu7GJJhkQr9BG0HPQTdFgtgNVBJtBEi\",\"expiry\":1568610895,\"updated_at\":\"2019-09-02 05:14:55 UTC\"}}"], ["updated_at", "2019-09-02 05:14:55.822060"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:14:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "magaly@corwinflatley.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$EhoO7h8EczEANdCOgMTrJuLgd9s8RrMlHLJ9mGRREIN0blZnvlSJu"], ["updated_at", "2019-09-02 05:14:55.874517"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:14:55.875428"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sammy@heathcote.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sammy@heathcote.net"], ["encrypted_password", "$2a$04$JFs/4LQr17b7DeXMm/0mIOHL0MKBp.aI9fxCEBnCYsHit5uS8A8V6"], ["confirmed_at", "2019-09-02 05:14:55.879824"], ["name", "Justin Case"], ["email", "sammy@heathcote.net"], ["created_at", "2019-09-02 05:14:55.880404"], ["updated_at", "2019-09-02 05:14:55.880404"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kiECaji8gLARhaAHvLfkvw\":{\"token\":\"$2a$10$kWhv2NmDHsgu2pj6zMkAMuiHU6SFkS0k/umDIxP7jwZkE/FJDMCH2\",\"expiry\":1568610895,\"updated_at\":\"2019-09-02 05:14:55 UTC\"}}"], ["updated_at", "2019-09-02 05:14:55.929091"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:14:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sammy@heathcote.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$0gnN3ce.4w8l55ogjE6J/.BOIEcViGtvYplr1A4jDwSw/0VrArqgG"], ["updated_at", "2019-09-02 05:14:55.978130"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "christoper.daugherty@hegmann.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "christoper.daugherty@hegmann.co"], ["encrypted_password", "$2a$04$b0QAZVeU1yWIHm8acbN7/OYHTnts6b/g1OmxOgO3FD7sGlbQ1Rxty"], ["confirmed_at", "2019-09-02 05:14:55.983482"], ["name", "Maurice Minor"], ["email", "christoper.daugherty@hegmann.co"], ["created_at", "2019-09-02 05:14:55.984206"], ["updated_at", "2019-09-02 05:14:55.984206"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:14:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "donald@rutherford.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "donald@rutherford.info"], ["encrypted_password", "$2a$04$NEYIH.fn/UT6rLF/xGerN.reVN6fLC/naEPrQGSjoo9wwfgaS2pcC"], ["confirmed_at", "2019-09-02 05:15:11.584903"], ["name", "Aretha Holly"], ["email", "donald@rutherford.info"], ["created_at", "2019-09-02 05:15:11.586826"], ["updated_at", "2019-09-02 05:15:11.586826"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:15:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"donald@rutherford.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "donald@rutherford.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"eeaBmS7_E-vx7M1_aK7NeQ\":{\"token\":\"$2a$10$0dmp/iGpFbR.BSEvT2FoeuH6QsJZYDJXFuQlxjo61XE16y2M1FOYa\",\"expiry\":1568610911,\"updated_at\":\"2019-09-02 05:15:11 UTC\"}}"], ["updated_at", "2019-09-02 05:15:11.651536"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 05:15:11.654332"], ["last_sign_in_at", "2019-09-02 05:15:11.654332"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 05:15:11.654604"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "quincy.pfannerstill@ziemedooley.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "quincy.pfannerstill@ziemedooley.com"], ["encrypted_password", "$2a$04$B12pL6ShPRNTlHWy0JmzW.a98tB5HDhXLUUIwPe/3SixWp3KDUkoS"], ["confirmed_at", "2019-09-02 05:15:11.661350"], ["name", "Mike Czech"], ["email", "quincy.pfannerstill@ziemedooley.com"], ["created_at", "2019-09-02 05:15:11.662125"], ["updated_at", "2019-09-02 05:15:11.662125"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:15:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"quincy.pfannerstill@ziemedooley.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "quincy.pfannerstill@ziemedooley.com"], ["LIMIT", 1]] User Update All (0.0ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wilmer@walsh.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "wilmer@walsh.name"], ["encrypted_password", "$2a$04$smkZEUaueSsvTcyo4g.24eu3afWKEbJYnV/vmi2QJB5EwEazImQC6"], ["confirmation_token", "hKG7x4RYWvASVJnZJzPG"], ["confirmation_sent_at", "2019-09-02 05:15:11.671006"], ["name", "Ryan Coke"], ["email", "wilmer@walsh.name"], ["created_at", "2019-09-02 05:15:11.670894"], ["updated_at", "2019-09-02 05:15:11.670894"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:15:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"wilmer@walsh.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "wilmer@walsh.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "isreal_marks@larkinfeest.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "isreal_marks@larkinfeest.co"], ["encrypted_password", "$2a$04$H06Y4fPbQgSbCZ3H1HW6FOi1UzUdK/HQxekHw0PfTAJdlLSqW3aJ2"], ["confirmed_at", "2019-09-02 05:15:11.677422"], ["locked_at", "2019-09-02 05:15:11.677432"], ["name", "Sarah Bellum"], ["email", "isreal_marks@larkinfeest.co"], ["created_at", "2019-09-02 05:15:11.678206"], ["updated_at", "2019-09-02 05:15:11.678206"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:15:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"isreal_marks@larkinfeest.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "isreal_marks@larkinfeest.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sebastian.bailey@collierwehner.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sebastian.bailey@collierwehner.info"], ["encrypted_password", "$2a$04$/UlFjt21.uOQShRYCRuuFeerA2qzUndkZFLj/5Bo15BQOCTA4K3OK"], ["confirmed_at", "2019-09-02 05:15:11.686330"], ["name", "Gladys Eeya"], ["email", "sebastian.bailey@collierwehner.info"], ["created_at", "2019-09-02 05:15:11.687506"], ["updated_at", "2019-09-02 05:15:11.687506"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:15:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sebastian.bailey@collierwehner.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sebastian.bailey@collierwehner.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "trena@keebler.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "trena@keebler.net"], ["encrypted_password", "$2a$04$h/VxCmr1qy2M5AtZBy7XAeLOa2o5EvMfUCB9noUzWo9GHNknrPVoS"], ["confirmed_at", "2019-09-02 05:15:11.696841"], ["name", "Hazel Nutt"], ["email", "trena@keebler.net"], ["created_at", "2019-09-02 05:15:11.698290"], ["updated_at", "2019-09-02 05:15:11.698290"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dhsOgxgwMboLbATuFM8WNQ\":{\"token\":\"$2a$10$2ndgSpFQGq7zNa6FBsQqbe83WWDbUiibmZa0s.n0K5YgF4fniSqbS\",\"expiry\":1568610911,\"updated_at\":\"2019-09-02 05:15:11 UTC\"}}"], ["updated_at", "2019-09-02 05:15:11.754505"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:15:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "trena@keebler.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 05:15:11.803678"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.3ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:15:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "trinidad@hermann.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "trinidad@hermann.info"], ["encrypted_password", "$2a$04$FFqfMjMgBUhkaEiBwV.B0.KwjazcXWii3v4eeZ0/rzLdBTBIYRcmy"], ["confirmed_at", "2019-09-02 05:15:11.811377"], ["name", "Anna Mull"], ["email", "trinidad@hermann.info"], ["created_at", "2019-09-02 05:15:11.812180"], ["updated_at", "2019-09-02 05:15:11.812180"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bertram_krajcik@jasthackett.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bertram_krajcik@jasthackett.co"], ["encrypted_password", "$2a$04$qiyjAb55nRP/WhOwrGkBOurYcaxYX5nxD.krcEXrR9r1chBksnAx."], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:15:11.816103"], ["name", "Warren T."], ["email", "bertram_krajcik@jasthackett.co"], ["created_at", "2019-09-02 05:15:11.816806"], ["updated_at", "2019-09-02 05:15:11.816806"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"421a1vBQIhkHU9OJ_rRefQ\":{\"token\":\"$2a$10$ASsUxc.cMIvfDzm5nZ8q2e09ZC/OrkuQJ4Ba3FN9y03nO3fqpuZqq\",\"expiry\":1568610911,\"updated_at\":\"2019-09-02 05:15:11 UTC\"}}"], ["updated_at", "2019-09-02 05:15:11.870612"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:15:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "bertram_krajcik@jasthackett.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$h25/mZlqTMnvyDEzGj9touhtg7/FUxKY5Xfr0tU95WOXuEahuR/yS"], ["updated_at", "2019-09-02 05:15:11.921374"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:15:11.922293"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jamar_upton@kuphal.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jamar_upton@kuphal.com"], ["encrypted_password", "$2a$04$5ThHvgGDUmHGX7i70nssKON8sJbgco5Qt0l7v6poKpPjKqNkXxMS6"], ["confirmed_at", "2019-09-02 05:15:11.928444"], ["name", "Liv Good"], ["email", "jamar_upton@kuphal.com"], ["created_at", "2019-09-02 05:15:11.929411"], ["updated_at", "2019-09-02 05:15:11.929411"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"R236ZBub35mp0vceu5YOvQ\":{\"token\":\"$2a$10$WiO34lOnnlN4Y/AZGOGxMuAKCI5mEUq1rGifEGNulw8.lwUrDR3j6\",\"expiry\":1568610911,\"updated_at\":\"2019-09-02 05:15:11 UTC\"}}"], ["updated_at", "2019-09-02 05:15:11.978465"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:15:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jamar_upton@kuphal.com"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gema@rutherford.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gema@rutherford.com"], ["encrypted_password", "$2a$04$oXFCxnSAn6Tj1DKwejKKlevQn3dO2MjQ7P4Gnmf57A14t39Eh3l1y"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:15:12.033621"], ["name", "Rocky Shore"], ["email", "gema@rutherford.com"], ["created_at", "2019-09-02 05:15:12.034433"], ["updated_at", "2019-09-02 05:15:12.034433"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"L4o3Zd5GcHjIMr9S-IAZcw\":{\"token\":\"$2a$10$gxBj5MA784uKKwd.9WSLK.jpVwwdzqaxfADuEH7/2d7WddZBndQrO\",\"expiry\":1568610912,\"updated_at\":\"2019-09-02 05:15:12 UTC\"}}"], ["updated_at", "2019-09-02 05:15:12.081496"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:15:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gema@rutherford.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$M8o1YDVVQP7fgyhC07q.fuFgq4321fDvIUw2tC/y4f2Hq1s5XyVNS"], ["updated_at", "2019-09-02 05:15:12.133227"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:15:12.134114"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "felipe@schroeder.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "felipe@schroeder.info"], ["encrypted_password", "$2a$04$zq5z9nkdBfHtGfCUE6Cue.RNWCcOZsaDdG5S7I2qATfsUIpNcUmFi"], ["confirmed_at", "2019-09-02 05:15:12.139058"], ["name", "Sally Mander"], ["email", "felipe@schroeder.info"], ["created_at", "2019-09-02 05:15:12.139837"], ["updated_at", "2019-09-02 05:15:12.139837"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lGbRDpB4MFCH5SZUXVhfYQ\":{\"token\":\"$2a$10$8WkbmHlfFa/cC4m0oCxjCuj5OlpjQNOnOnnxLTjecSbpT0x6LL5IK\",\"expiry\":1568610912,\"updated_at\":\"2019-09-02 05:15:12 UTC\"}}"], ["updated_at", "2019-09-02 05:15:12.187675"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:15:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "felipe@schroeder.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$2/k1EeQ.H.vXMVDeZUefluG.4Y3.KeRwG1xsw6VGuOJBqeTUvFPgq"], ["updated_at", "2019-09-02 05:15:12.240023"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "audrie@volkman.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "audrie@volkman.net"], ["encrypted_password", "$2a$04$w39ZvOc9EUR/GuXID7eRe.22lzqt2ZoaxGmrE/olNPLYjuBLPZTVu"], ["confirmed_at", "2019-09-02 05:15:12.246230"], ["name", "Claire DeAir"], ["email", "audrie@volkman.net"], ["created_at", "2019-09-02 05:15:12.247897"], ["updated_at", "2019-09-02 05:15:12.247897"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:15:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elwood@zulauf.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "elwood@zulauf.co"], ["encrypted_password", "$2a$04$SMmOOzBdR8romIN8lVUpo.IK2zPVDKGjDZ/mE/ukcWO3.Q4rLUqGW"], ["confirmed_at", "2019-09-02 05:17:58.897347"], ["name", "Kitty Katz"], ["email", "elwood@zulauf.co"], ["created_at", "2019-09-02 05:17:58.899806"], ["updated_at", "2019-09-02 05:17:58.899806"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:17:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"elwood@zulauf.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elwood@zulauf.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"X6hoylBzDj57d0pZFAE5Iw\":{\"token\":\"$2a$10$WMtbRY/NZ3Va5/HP/23JLuWv6GMHzLloIIr.KQMTBeDNoy5rz1cZ2\",\"expiry\":1568611078,\"updated_at\":\"2019-09-02 05:17:58 UTC\"}}"], ["updated_at", "2019-09-02 05:17:58.980604"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 05:17:58.984012"], ["last_sign_in_at", "2019-09-02 05:17:58.984012"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 05:17:58.984494"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 69ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "walton@kiehn.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "walton@kiehn.name"], ["encrypted_password", "$2a$04$1awAHDIDdU7vj0F4x4y2.uxdtXX.CCoiK5v4H2YOnHXMGlvqBqR/a"], ["confirmed_at", "2019-09-02 05:17:58.992535"], ["name", "Annie Matter"], ["email", "walton@kiehn.name"], ["created_at", "2019-09-02 05:17:58.993484"], ["updated_at", "2019-09-02 05:17:58.993484"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:17:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"walton@kiehn.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "walton@kiehn.name"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "garry@moenwillms.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "garry@moenwillms.net"], ["encrypted_password", "$2a$04$8qbNqwbxqXJoPRX/uW7oU.iU.MQa3gbLrVAsCXrmx7VeDottx/X/2"], ["confirmation_token", "XmW8sGPWDxYqZDH5zdGA"], ["confirmation_sent_at", "2019-09-02 05:17:59.004695"], ["name", "May Day"], ["email", "garry@moenwillms.net"], ["created_at", "2019-09-02 05:17:59.004588"], ["updated_at", "2019-09-02 05:17:59.004588"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:17:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"garry@moenwillms.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "garry@moenwillms.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kandis.dare@okon.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kandis.dare@okon.net"], ["encrypted_password", "$2a$04$9jGhGAbAJBmBj.jH.HltYe2HDxnYkVM9fLvDpQHf3ZndFttOedLo."], ["confirmed_at", "2019-09-02 05:17:59.012414"], ["locked_at", "2019-09-02 05:17:59.012438"], ["name", "Kay Neine"], ["email", "kandis.dare@okon.net"], ["created_at", "2019-09-02 05:17:59.013836"], ["updated_at", "2019-09-02 05:17:59.013836"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:17:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kandis.dare@okon.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kandis.dare@okon.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "zachary@prosacco.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "zachary@prosacco.name"], ["encrypted_password", "$2a$04$aV7YHdlf44tiBvqMa6qQde9Ewh3zlkc3j//83e1GYex8/fz71P5Ky"], ["confirmed_at", "2019-09-02 05:17:59.022425"], ["name", "Andy Structible"], ["email", "zachary@prosacco.name"], ["created_at", "2019-09-02 05:17:59.023354"], ["updated_at", "2019-09-02 05:17:59.023354"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:17:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"zachary@prosacco.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "zachary@prosacco.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "beie.olson@cremin.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "beie.olson@cremin.co"], ["encrypted_password", "$2a$04$meEfxNnZm8r6oARkVtHZHu4G3u4qNSW6P.woW.dNRGm1uClNFVZRK"], ["confirmed_at", "2019-09-02 05:17:59.033915"], ["name", "Rip Tile"], ["email", "beie.olson@cremin.co"], ["created_at", "2019-09-02 05:17:59.035084"], ["updated_at", "2019-09-02 05:17:59.035084"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kVaV4S_hRW6ELDrdUqWPpg\":{\"token\":\"$2a$10$RCIXz3cQ9Z3RBDEy71YC8eCDz6NTdKY/qDTddd3UWeCRp0deDyDA.\",\"expiry\":1568611079,\"updated_at\":\"2019-09-02 05:17:59 UTC\"}}"], ["updated_at", "2019-09-02 05:17:59.095862"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:17:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "beie.olson@cremin.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 05:17:59.150560"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:17:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "yanira@adamsward.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "yanira@adamsward.biz"], ["encrypted_password", "$2a$04$N4.xptCIuQuqfEGIcsX8vuz0tzAPFwuDepvWCpU1NWGiu5ApXva3q"], ["confirmed_at", "2019-09-02 05:17:59.157553"], ["name", "Max Little"], ["email", "yanira@adamsward.biz"], ["created_at", "2019-09-02 05:17:59.158521"], ["updated_at", "2019-09-02 05:17:59.158521"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gonzalo@farrell.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gonzalo@farrell.co"], ["encrypted_password", "$2a$04$b/pAKPz4xH1.gtDFpUbYouuFQnHBv4fnRU2T8sA1N5k4kwOrqBeMq"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:17:59.163033"], ["name", "Igor Beaver"], ["email", "gonzalo@farrell.co"], ["created_at", "2019-09-02 05:17:59.164595"], ["updated_at", "2019-09-02 05:17:59.164595"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"8o7NKfesE8s8rUgS9BSl5g\":{\"token\":\"$2a$10$Ccs9QHd7yKGeoAqGZyuM4u.GqLwaE1pUzph970RaATiKs/qHS6JE6\",\"expiry\":1568611079,\"updated_at\":\"2019-09-02 05:17:59 UTC\"}}"], ["updated_at", "2019-09-02 05:17:59.223423"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:17:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gonzalo@farrell.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$60U/CwvYZCOucZ5PIxH.NOtmgV4qbNO6q1c8bpy034Q4/Y5PoLgam"], ["updated_at", "2019-09-02 05:17:59.277909"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:17:59.278976"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.3ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "loyd@medhurstgottlieb.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "loyd@medhurstgottlieb.name"], ["encrypted_password", "$2a$04$5U.wQMfUqK4xF2OMFCUFW.ucLFmbM6/UcFRAVT0ROGL7UrwhbX.sq"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:17:59.283811"], ["name", "Ivan Oder"], ["email", "loyd@medhurstgottlieb.name"], ["created_at", "2019-09-02 05:17:59.284528"], ["updated_at", "2019-09-02 05:17:59.284528"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"tMgu9C9uwp6SSAPIEIllHw\":{\"token\":\"$2a$10$MwJ3KuHfwdBPca7xE7qLZ.KoTnSWbAo3pTli0ANCTYOrDOdLaIczy\",\"expiry\":1568611079,\"updated_at\":\"2019-09-02 05:17:59 UTC\"}}"], ["updated_at", "2019-09-02 05:17:59.339509"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:17:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "loyd@medhurstgottlieb.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$QJIZjZ07GaxD.bIj2otiTucsDTNCzfpj9CGh46KD6HzRV7Gr.vaUy"], ["updated_at", "2019-09-02 05:17:59.394370"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:17:59.395422"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "thomasina@gerlach.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "thomasina@gerlach.io"], ["encrypted_password", "$2a$04$a5VfUgeFsp4EHH/rH9TlS.juWT00K7SUfkD7VCuMMgXLpGefxaeOu"], ["confirmed_at", "2019-09-02 05:17:59.400705"], ["name", "Chris Cross"], ["email", "thomasina@gerlach.io"], ["created_at", "2019-09-02 05:17:59.401495"], ["updated_at", "2019-09-02 05:17:59.401495"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"M4_wkdu3QVbtEsmmWI9Jjg\":{\"token\":\"$2a$10$AT0Lg6ShQ3vcyDrsPmie3.m9zPD0bn2H0oLpHCL8UXZqvTq9PBtpC\",\"expiry\":1568611079,\"updated_at\":\"2019-09-02 05:17:59 UTC\"}}"], ["updated_at", "2019-09-02 05:17:59.457020"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:17:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "thomasina@gerlach.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "loyd.crooks@smitham.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "loyd.crooks@smitham.name"], ["encrypted_password", "$2a$04$RrFoLU9qnJJ3lFUMs9N7oO4gIAoRJGuoX6mQo7pEFMlkvFLm6pmzy"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:17:59.516657"], ["name", "Gus Tofwin"], ["email", "loyd.crooks@smitham.name"], ["created_at", "2019-09-02 05:17:59.517414"], ["updated_at", "2019-09-02 05:17:59.517414"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"PmiTgUvbZH1TjjZ19zrASw\":{\"token\":\"$2a$10$5DnVwWsgwVmPlEPL7nOgCOwtjqf1e5IyPbaI5ZsVgyelHKOr1hLIO\",\"expiry\":1568611079,\"updated_at\":\"2019-09-02 05:17:59 UTC\"}}"], ["updated_at", "2019-09-02 05:17:59.570639"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:17:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "loyd.crooks@smitham.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$VsPt8ajgUtPWLb55hA5gyOBfLm2fFY3QpbwJzgPj5K0tdaiizNZCu"], ["updated_at", "2019-09-02 05:17:59.624402"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:17:59.625313"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hugo@ferry.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hugo@ferry.org"], ["encrypted_password", "$2a$04$89hWXuDO0GWS.0OL2EZqOu.dg3Z2FaAXDYiwMtonxpLLkXTSwb322"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:17:59.630326"], ["name", "Sam Manilla"], ["email", "hugo@ferry.org"], ["created_at", "2019-09-02 05:17:59.631203"], ["updated_at", "2019-09-02 05:17:59.631203"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EHATAktZ-unJqfG4UQ08hA\":{\"token\":\"$2a$10$RutPuFm/XzRKGDUG0k1HRejUg66OkivYVlo2UIek5wKnaShs9Bv8W\",\"expiry\":1568611079,\"updated_at\":\"2019-09-02 05:17:59 UTC\"}}"], ["updated_at", "2019-09-02 05:17:59.684912"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:17:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "hugo@ferry.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$1y6YJ2E68cq3zQcVyDltvOMkJJVZkNDS6nf4vie.QQEyuXbthOz3G"], ["updated_at", "2019-09-02 05:17:59.738851"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:17:59.739889"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "teresia@kohler.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "teresia@kohler.co"], ["encrypted_password", "$2a$04$7ozxfaMWyVLgd3QCShDa1uKlP1Dn0HLXt3ZZzSnrN40qpghy3pNaK"], ["confirmed_at", "2019-09-02 05:17:59.744883"], ["name", "Robin Banks"], ["email", "teresia@kohler.co"], ["created_at", "2019-09-02 05:17:59.745649"], ["updated_at", "2019-09-02 05:17:59.745649"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"moiUL7wxrQ1KQrkN25If0Q\":{\"token\":\"$2a$10$uh4zNYFx/QCt5pWNaQC5Rejjnz10TE6pusmVk522Zk.Dv4GhXowVK\",\"expiry\":1568611079,\"updated_at\":\"2019-09-02 05:17:59 UTC\"}}"], ["updated_at", "2019-09-02 05:17:59.801573"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:17:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "teresia@kohler.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$.hruS.QDwn/SK/jMYGezPeANIZSv0FDgzDadFR4k2horxpNTPi0FG"], ["updated_at", "2019-09-02 05:17:59.876139"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nigel@satterfield.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nigel@satterfield.net"], ["encrypted_password", "$2a$04$3X7vK28A8qJJP9J7UCAquOwgk4yhMCeEhfeDORS1BE0WGVSOVMD7O"], ["confirmed_at", "2019-09-02 05:17:59.882078"], ["name", "Skip Roper"], ["email", "nigel@satterfield.net"], ["created_at", "2019-09-02 05:17:59.882910"], ["updated_at", "2019-09-02 05:17:59.882910"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:17:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "reanna@halvorson.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "reanna@halvorson.co"], ["encrypted_password", "$2a$04$x6GuCw5ULXvbl/upFc9u6Oqt86WXpm/drlOb8vlLEIkeMTDtPz7Le"], ["confirmed_at", "2019-09-02 05:19:49.522863"], ["name", "Rip Torn"], ["email", "reanna@halvorson.co"], ["created_at", "2019-09-02 05:19:49.524751"], ["updated_at", "2019-09-02 05:19:49.524751"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:19:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"reanna@halvorson.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "reanna@halvorson.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BpJFnIxSsLcA7bGUBdZ_og\":{\"token\":\"$2a$10$p1tL29MMN1hFbldsEGqus.vnrXdNakXJSRZ15BqeQXDIklpO5sY82\",\"expiry\":1568611189,\"updated_at\":\"2019-09-02 05:19:49 UTC\"}}"], ["updated_at", "2019-09-02 05:19:49.595681"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 05:19:49.598623"], ["last_sign_in_at", "2019-09-02 05:19:49.598623"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 05:19:49.598905"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 62ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "royal_christiansen@oconner.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "royal_christiansen@oconner.com"], ["encrypted_password", "$2a$04$Z/NPwN2YKWPyrMq.Q2PkVeyIYDrI5fd7j2RKNERPfW1O8qIYf0D5W"], ["confirmed_at", "2019-09-02 05:19:49.606009"], ["name", "Sal Minella"], ["email", "royal_christiansen@oconner.com"], ["created_at", "2019-09-02 05:19:49.606836"], ["updated_at", "2019-09-02 05:19:49.606836"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:19:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"royal_christiansen@oconner.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "royal_christiansen@oconner.com"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "krista@rathziemann.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "krista@rathziemann.info"], ["encrypted_password", "$2a$04$KURuauXFQ0dz2Yjwx69uge7QAD7bcR.ZdKaAfFx49nJNLJQQ0nlzS"], ["confirmation_token", "8iVqV6JQqfZAAVSK54xM"], ["confirmation_sent_at", "2019-09-02 05:19:49.616315"], ["name", "I. Pullem"], ["email", "krista@rathziemann.info"], ["created_at", "2019-09-02 05:19:49.616228"], ["updated_at", "2019-09-02 05:19:49.616228"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:19:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"krista@rathziemann.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "krista@rathziemann.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bradly@schowalterzulauf.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bradly@schowalterzulauf.co"], ["encrypted_password", "$2a$04$LIeA.4M8EdnO5FSXt.ip9uwbJkaVSHdF118hi3NVhY0htvmkxIZEe"], ["confirmed_at", "2019-09-02 05:19:49.622439"], ["locked_at", "2019-09-02 05:19:49.622449"], ["name", "Pat Pending"], ["email", "bradly@schowalterzulauf.co"], ["created_at", "2019-09-02 05:19:49.623127"], ["updated_at", "2019-09-02 05:19:49.623127"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:19:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"bradly@schowalterzulauf.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bradly@schowalterzulauf.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dean@mcglynn.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dean@mcglynn.org"], ["encrypted_password", "$2a$04$fgwh2NhVelabOcB9mkzuYOqsmSUAR3r8umk6gT46ChYB06tTYbV3C"], ["confirmed_at", "2019-09-02 05:19:49.629363"], ["name", "Art Major"], ["email", "dean@mcglynn.org"], ["created_at", "2019-09-02 05:19:49.630093"], ["updated_at", "2019-09-02 05:19:49.630093"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:19:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dean@mcglynn.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dean@mcglynn.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ambrose_hodkiewicz@schummokeefe.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ambrose_hodkiewicz@schummokeefe.com"], ["encrypted_password", "$2a$04$I66sPTaiqrm4.g6sBB5ute2YorC376C0EbRnA1bJGN6n5WavMb0WG"], ["confirmed_at", "2019-09-02 05:19:49.639027"], ["name", "Ty Knotts"], ["email", "ambrose_hodkiewicz@schummokeefe.com"], ["created_at", "2019-09-02 05:19:49.640046"], ["updated_at", "2019-09-02 05:19:49.640046"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"zs21Oj1fO6RDXCnTewnroA\":{\"token\":\"$2a$10$nnqVsF/QG.sxx2jlpEv3QO2LoMa.NsmzwM81M6vgTA/G/li29bhH6\",\"expiry\":1568611189,\"updated_at\":\"2019-09-02 05:19:49 UTC\"}}"], ["updated_at", "2019-09-02 05:19:49.696617"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:19:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ambrose_hodkiewicz@schummokeefe.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 05:19:49.744253"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:19:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carey@stehr.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "carey@stehr.net"], ["encrypted_password", "$2a$04$cnHI0utTkC6vk5H99qTlqeqqJx7Lp1kURbLM7r19zS/hA0TnW3Ep2"], ["confirmed_at", "2019-09-02 05:19:49.750696"], ["name", "Justin Case"], ["email", "carey@stehr.net"], ["created_at", "2019-09-02 05:19:49.751527"], ["updated_at", "2019-09-02 05:19:49.751527"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "margherita@carterjerde.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "margherita@carterjerde.net"], ["encrypted_password", "$2a$04$V47bnuQpmnfc6.6oZtPqr.KLMgFnKjv4CeD2M1WWTfGv5CfATqjua"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:19:49.756338"], ["name", "Ilene Left"], ["email", "margherita@carterjerde.net"], ["created_at", "2019-09-02 05:19:49.757697"], ["updated_at", "2019-09-02 05:19:49.757697"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Gvw-IdPJnFGeLJyrkYlTiw\":{\"token\":\"$2a$10$xg9XI0M47r1aBdEj4DuLCubHQhGVT/gnEy452LngfGg3A9CLvYmPe\",\"expiry\":1568611189,\"updated_at\":\"2019-09-02 05:19:49 UTC\"}}"], ["updated_at", "2019-09-02 05:19:49.812599"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:19:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "margherita@carterjerde.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$3uL6bQ2S5WKleTlCw79VueKVDFcjStTSkeLSaHalQRPo2xgljGqrK"], ["updated_at", "2019-09-02 05:19:49.864174"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:19:49.865879"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "florance@koch.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "florance@koch.co"], ["encrypted_password", "$2a$04$69zETcfs3LQlS0i8QXNCKeSVqI00x2seW.7PxygShbgEeOpZhvJ2q"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:19:49.871562"], ["name", "C. Worthy"], ["email", "florance@koch.co"], ["created_at", "2019-09-02 05:19:49.872486"], ["updated_at", "2019-09-02 05:19:49.872486"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3aJL5Pmr5coEGP1ptVFHNg\":{\"token\":\"$2a$10$8ptSWna8Jq914qrQRIIFdOEVyfHolA7F8tDNu7o7raComRaiYutOq\",\"expiry\":1568611189,\"updated_at\":\"2019-09-02 05:19:49 UTC\"}}"], ["updated_at", "2019-09-02 05:19:49.921141"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:19:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "florance@koch.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$KIt3Mizeq5zwL/P6nA0anuxXRBnSaPgLZw1jcOabkRSnprTIvSU8G"], ["updated_at", "2019-09-02 05:19:49.970153"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:19:49.971079"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eugenio@cummerata.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "eugenio@cummerata.io"], ["encrypted_password", "$2a$04$5JqbkRh98IFP8413h9p8M.SyAh4v6h2G4diJAnx7J5UE0jQBaagkK"], ["confirmed_at", "2019-09-02 05:19:49.975678"], ["name", "Ulee Daway"], ["email", "eugenio@cummerata.io"], ["created_at", "2019-09-02 05:19:49.976323"], ["updated_at", "2019-09-02 05:19:49.976323"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"klEY-NqjSA0vE9s1KVloqA\":{\"token\":\"$2a$10$n93SUyjrkU8GvFXn3zqxNe9eN1tYfSRPGwiE74SdXovJ2wbIobrCS\",\"expiry\":1568611190,\"updated_at\":\"2019-09-02 05:19:49 UTC\"}}"], ["updated_at", "2019-09-02 05:19:50.023586"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:19:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "eugenio@cummerata.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "adina@mueller.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "adina@mueller.info"], ["encrypted_password", "$2a$04$Mu7DHwuYtk2JQxtVu9Ifber3.WwueOc7zjZjAvPJQKzTjoROPBhru"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:19:50.079170"], ["name", "Ilene Dover"], ["email", "adina@mueller.info"], ["created_at", "2019-09-02 05:19:50.080019"], ["updated_at", "2019-09-02 05:19:50.080019"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-q0DGD2CtZ3DCQj3oA25CQ\":{\"token\":\"$2a$10$MZCkDT.kSJCXxUOMQKHfUOKOBTyxr3Of1FjYSZP77U4RCTbg639Ty\",\"expiry\":1568611190,\"updated_at\":\"2019-09-02 05:19:50 UTC\"}}"], ["updated_at", "2019-09-02 05:19:50.131032"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:19:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "adina@mueller.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$ojxg2tsqega3neDRblERL.Gq/IRU8zilEo7GLqRev6j0xnteqzzry"], ["updated_at", "2019-09-02 05:19:50.180657"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:19:50.181564"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "laveta@mcdermott.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "laveta@mcdermott.org"], ["encrypted_password", "$2a$04$wp2Z9sBnBLdPb4EGC0hYzuzs0FFXpU.hGTttqMCQ.UNjJ81SW11cW"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:19:50.186333"], ["name", "Rich Feller"], ["email", "laveta@mcdermott.org"], ["created_at", "2019-09-02 05:19:50.187138"], ["updated_at", "2019-09-02 05:19:50.187138"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"MXgtxGmIN-sMpW4Ly2a5ZA\":{\"token\":\"$2a$10$azWJaQOX55WzVVXT6YGjuOluutdfYtDERnkuOs9Tqyp1rbeGH3tem\",\"expiry\":1568611190,\"updated_at\":\"2019-09-02 05:19:50 UTC\"}}"], ["updated_at", "2019-09-02 05:19:50.236052"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:19:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "laveta@mcdermott.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$x3/sPV.lFLl9m.0BDHdqk.FNSnayj.kdfakZDu8hz7fjz9RwaUDnq"], ["updated_at", "2019-09-02 05:19:50.285048"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:19:50.285927"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shenna.shields@weinatromaguera.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shenna.shields@weinatromaguera.co"], ["encrypted_password", "$2a$04$aPxUM7.bQHRMuJEeX9I6j.X1ZuT/zsCoCuUNxNOCzaJSTuY7y/7f."], ["confirmed_at", "2019-09-02 05:19:50.290801"], ["name", "Curt Zee"], ["email", "shenna.shields@weinatromaguera.co"], ["created_at", "2019-09-02 05:19:50.291583"], ["updated_at", "2019-09-02 05:19:50.291583"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ceCmoZCwYg5nNEwrrVnx0w\":{\"token\":\"$2a$10$rqt6lnHh9rTN4rfNfIPztuUyl5x7/YVfGES5dMbTLWkR5R6TUscw6\",\"expiry\":1568611190,\"updated_at\":\"2019-09-02 05:19:50 UTC\"}}"], ["updated_at", "2019-09-02 05:19:50.340490"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:19:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "shenna.shields@weinatromaguera.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$eFOAuqNv0vE8ONqTfh1P4unIFSnUnu92Cwt0qlgIAz4eNkmMSC6Y2"], ["updated_at", "2019-09-02 05:19:50.390563"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 64ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "les@witting.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "les@witting.com"], ["encrypted_password", "$2a$04$HE7C9tS1Srg24VxePI/fyelMlu1N9bY/AiK.xUQS6yUK3uJlOyug2"], ["confirmed_at", "2019-09-02 05:19:50.409864"], ["name", "Juan Fortharoad"], ["email", "les@witting.com"], ["created_at", "2019-09-02 05:19:50.410670"], ["updated_at", "2019-09-02 05:19:50.410670"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:19:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arminda@langosh.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "arminda@langosh.co"], ["encrypted_password", "$2a$04$yIR0iXEIuruDL/Yfo63olOCQZLBfCmaYgnUfeGAYkf0rbr.cn9XxW"], ["confirmed_at", "2019-09-02 05:27:41.261985"], ["name", "Rick Shaw"], ["email", "arminda@langosh.co"], ["tokens", "{}"], ["created_at", "2019-09-02 05:27:41.264471"], ["updated_at", "2019-09-02 05:27:41.264471"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:27:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"arminda@langosh.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "arminda@langosh.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DU-4CUvoPO6CLjQ4A3jbLg\":{\"token\":\"$2a$12$RekFtkWnoz.Cafu5O.4Nh.fQBaOx24Ovm3NutQODwZhJHVP3d8SwK\",\"expiry\":1568611661,\"last_token\":null,\"updated_at\":\"2019-09-02T00:27:41.293-05:00\"}}"], ["updated_at", "2019-09-02 05:27:41.482069"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 05:27:41.485630"], ["last_sign_in_at", "2019-09-02 05:27:41.485630"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 05:27:41.485957"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 204ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "drusilla@kihn.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "drusilla@kihn.co"], ["encrypted_password", "$2a$04$mFTQFN9LTBT/yilZ51IIF.QGeqwzE10r56/0SMa69XpRv17J2bwKG"], ["confirmed_at", "2019-09-02 05:27:41.494261"], ["name", "Artie Choke"], ["email", "drusilla@kihn.co"], ["tokens", "{}"], ["created_at", "2019-09-02 05:27:41.495119"], ["updated_at", "2019-09-02 05:27:41.495119"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:27:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"drusilla@kihn.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "drusilla@kihn.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-09-02 05:27:41.499745"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lesli@schiller.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lesli@schiller.name"], ["encrypted_password", "$2a$04$uof2zU0TXxt6PVNyhGnBWujIghgkMH.PECK60HvNA5gTCfqmdPlEK"], ["confirmation_token", "9JfzN-ZYyXyYt-DfxibW"], ["confirmation_sent_at", "2019-09-02 05:27:41.504596"], ["name", "Minnie Skurt"], ["email", "lesli@schiller.name"], ["tokens", "{}"], ["created_at", "2019-09-02 05:27:41.504501"], ["updated_at", "2019-09-02 05:27:41.504501"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:27:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lesli@schiller.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lesli@schiller.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eddie@wintheiser.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "eddie@wintheiser.net"], ["encrypted_password", "$2a$04$bOimxbyezRLP.GRUJkfvK.Hzu5Adf3jm7qYwaQm7rp5uZ0EUfjL4y"], ["confirmed_at", "2019-09-02 05:27:41.511589"], ["locked_at", "2019-09-02 05:27:41.511620"], ["name", "Mary Thonn"], ["email", "eddie@wintheiser.net"], ["tokens", "{}"], ["created_at", "2019-09-02 05:27:41.513860"], ["updated_at", "2019-09-02 05:27:41.513860"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:27:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"eddie@wintheiser.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "eddie@wintheiser.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "robert_boyer@christiansenschoen.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "robert_boyer@christiansenschoen.biz"], ["encrypted_password", "$2a$04$JwQtyymYJ.zf6pLeb.ncVeuyZQ7yiEkmY7spWt6Vbxu9SXLdpEkXe"], ["confirmed_at", "2019-09-02 05:27:41.523965"], ["name", "Thor Luther"], ["email", "robert_boyer@christiansenschoen.biz"], ["tokens", "{}"], ["created_at", "2019-09-02 05:27:41.525189"], ["updated_at", "2019-09-02 05:27:41.525189"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:27:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"robert_boyer@christiansenschoen.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "robert_boyer@christiansenschoen.biz"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dori.strosin@barton.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dori.strosin@barton.co"], ["encrypted_password", "$2a$04$AbodxJu6nlTXcrtp1g7JPOcQKxY2gm6Rn1/f5y2AhjDdqNsrkVAky"], ["confirmed_at", "2019-09-02 05:27:41.535883"], ["name", "Lina Ginster"], ["email", "dori.strosin@barton.co"], ["tokens", "{}"], ["created_at", "2019-09-02 05:27:41.537237"], ["updated_at", "2019-09-02 05:27:41.537237"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"XkG10auvbyVWY8ZWoPNncQ\":{\"token\":\"$2a$12$r540G.MJnBw1OIhYxf.2Qu8JTgBf.Orrj9TMzrbyePBZ8J2c7Kp5e\",\"expiry\":1568611661,\"last_token\":null,\"updated_at\":\"2019-09-02T00:27:41.538-05:00\"}}"], ["updated_at", "2019-09-02 05:27:41.730443"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:27:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dori.strosin@barton.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-09-02 05:27:41.908859"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:27:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "edgardo@schultz.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "edgardo@schultz.co"], ["encrypted_password", "$2a$04$Jn/CD1fFRh93beWS8TIHkuheYVrVprA9JsDfe6cYUDnqu2I5/Pnjm"], ["confirmed_at", "2019-09-02 05:27:41.915796"], ["name", "Joanna Hand"], ["email", "edgardo@schultz.co"], ["tokens", "{}"], ["created_at", "2019-09-02 05:27:41.916528"], ["updated_at", "2019-09-02 05:27:41.916528"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "veronique.keebler@dicki.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "veronique.keebler@dicki.org"], ["encrypted_password", "$2a$04$2eF5qe2nRBeITUBB6.xzB.jpQkoS69yNZivv5DRnMJ4DjEZOEnXOy"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:27:41.920234"], ["name", "Theresa Green"], ["email", "veronique.keebler@dicki.org"], ["tokens", "{}"], ["created_at", "2019-09-02 05:27:41.920920"], ["updated_at", "2019-09-02 05:27:41.920920"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0YA7i7qn84RayGgBjZcXmA\":{\"token\":\"$2a$12$dZYwQ5GYUZXzPvTmWgGHaO5XMyQDWj3a3.PM2P/ZGrXH2uxAabaDG\",\"expiry\":1568611661,\"last_token\":null,\"updated_at\":\"2019-09-02T00:27:41.923-05:00\"}}"], ["updated_at", "2019-09-02 05:27:42.106373"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:27:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "veronique.keebler@dicki.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$vf7tCU1j2o367CiC0iEsou7om96z7NvTyehpEHYMAda7T.wJYUdP."], ["updated_at", "2019-09-02 05:27:42.304263"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:27:42.305343"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 199ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lakisha_dickinson@prohaskaschultz.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lakisha_dickinson@prohaskaschultz.net"], ["encrypted_password", "$2a$04$Nn2R.12eWMJu0HhG7H../OJVYWUoQiO1b7/Z7SIbCCJzVdAkPscqu"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:27:42.310496"], ["name", "Rowan Boatman"], ["email", "lakisha_dickinson@prohaskaschultz.net"], ["tokens", "{}"], ["created_at", "2019-09-02 05:27:42.311166"], ["updated_at", "2019-09-02 05:27:42.311166"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7ABG8kNLBBjyJnl3bMwVJw\":{\"token\":\"$2a$12$9D2u1Ymz2yXTcqrLFGIHP.//eXjuFpTdSfexeURMahfa7clWpfWB2\",\"expiry\":1568611662,\"last_token\":null,\"updated_at\":\"2019-09-02T00:27:42.312-05:00\"}}"], ["updated_at", "2019-09-02 05:27:42.496328"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:27:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lakisha_dickinson@prohaskaschultz.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$feDfF1xK7BcQsC8LFYgCXeFkkW.JFw0XGtHgFiMtEQ1k4EIUa/4MG"], ["updated_at", "2019-09-02 05:27:42.677514"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:27:42.680815"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 185ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hilton@ledner.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hilton@ledner.net"], ["encrypted_password", "$2a$04$2zSvgRKbikbXY8NiZySjV.B2hZAYziRH2c9gDasE0rqhK.gHMSjXi"], ["confirmed_at", "2019-09-02 05:27:42.689176"], ["name", "Ilene Wright"], ["email", "hilton@ledner.net"], ["tokens", "{}"], ["created_at", "2019-09-02 05:27:42.690593"], ["updated_at", "2019-09-02 05:27:42.690593"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mGo7hus2Y5QUjgUPD_ZERg\":{\"token\":\"$2a$12$c7.KZzNUra4oCKUcojRsBuMtQnsWGRgx4DWyzLMDOkhAX4/2ksPE2\",\"expiry\":1568611662,\"last_token\":null,\"updated_at\":\"2019-09-02T00:27:42.691-05:00\"}}"], ["updated_at", "2019-09-02 05:27:42.879505"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:27:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "hilton@ledner.net"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 186ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "loyd.shields@moen.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "loyd.shields@moen.org"], ["encrypted_password", "$2a$04$bezUFB5J4K3py2v5rCEHXO.1ED5d0GBgDxIvmkgR6N0ROBkdmQcxu"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:27:43.070589"], ["name", "Freida Convict"], ["email", "loyd.shields@moen.org"], ["tokens", "{}"], ["created_at", "2019-09-02 05:27:43.071327"], ["updated_at", "2019-09-02 05:27:43.071327"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"U6qhuvcY0xG5FTGP_TLYSg\":{\"token\":\"$2a$12$2n76w7cFuw7bp46Q.9i7s.Sn/AZkx9hQ0h8dirUACgHjptGF2wi36\",\"expiry\":1568611663,\"last_token\":null,\"updated_at\":\"2019-09-02T00:27:43.072-05:00\"}}"], ["updated_at", "2019-09-02 05:27:43.252315"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:27:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "loyd.shields@moen.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$xzt.IoHDefXC5qDOQr..6uWxf5PUCCb7WUmjLxehulULvRhOwkPLu"], ["updated_at", "2019-09-02 05:27:43.431524"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:27:43.432550"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 180ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "adriana_wilkinson@mitchell.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "adriana_wilkinson@mitchell.net"], ["encrypted_password", "$2a$04$Nt0bvSi/be7PoKqfr/az8eWjYVs5KwXLNMWqB8OzNrtmrmu.NPrTu"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:27:43.449048"], ["name", "Cody Pendant"], ["email", "adriana_wilkinson@mitchell.net"], ["tokens", "{}"], ["created_at", "2019-09-02 05:27:43.449968"], ["updated_at", "2019-09-02 05:27:43.449968"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OWZWb1GRS5I3nBr8sAWg_Q\":{\"token\":\"$2a$12$Z9DoKx0CWJdLO9wSzOiF/O.lFJ62ISahcV1GGf/w.XeYpAa5ASMxW\",\"expiry\":1568611663,\"last_token\":null,\"updated_at\":\"2019-09-02T00:27:43.451-05:00\"}}"], ["updated_at", "2019-09-02 05:27:43.640718"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:27:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "adriana_wilkinson@mitchell.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$2Dw0aZaqHsw7hru4m9IDh.zbL4.5xGOM18Q1CYOar1X/vV.bKVb12"], ["updated_at", "2019-09-02 05:27:43.819012"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:27:43.820341"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 179ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sigrid_douglas@gislason.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sigrid_douglas@gislason.info"], ["encrypted_password", "$2a$04$9ptCJI3uzuZ43G69vPXf/.2vCJlBLbPXOUYIN039LJQxrRo/zuMmq"], ["confirmed_at", "2019-09-02 05:27:43.826947"], ["name", "Godiva Headache"], ["email", "sigrid_douglas@gislason.info"], ["tokens", "{}"], ["created_at", "2019-09-02 05:27:43.828162"], ["updated_at", "2019-09-02 05:27:43.828162"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EyjxUU5QIm6FWysUni7C8Q\":{\"token\":\"$2a$12$Yyme9gs0T.ScKk20.rrj4uIny12ZXU/BLPRc51mEsnjC.iHAABjFm\",\"expiry\":1568611663,\"last_token\":null,\"updated_at\":\"2019-09-02T00:27:43.829-05:00\"}}"], ["updated_at", "2019-09-02 05:27:44.009242"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:27:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sigrid_douglas@gislason.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Ik/diz1sqq5OMdmzwD0Ane0vWMdPx6VCwk/80OWMTC7UeW/RrQa0K"], ["updated_at", "2019-09-02 05:27:44.187549"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 179ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "birgit.powlowski@zulauf.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "birgit.powlowski@zulauf.org"], ["encrypted_password", "$2a$04$PZH4ppIkfrtt6GkayAjsxO0HOTbQ1FgvSTr3yCE57dzO5etroJjW."], ["confirmed_at", "2019-09-02 05:27:44.193490"], ["name", "Rusty Blades"], ["email", "birgit.powlowski@zulauf.org"], ["tokens", "{}"], ["created_at", "2019-09-02 05:27:44.194153"], ["updated_at", "2019-09-02 05:27:44.194153"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:27:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "parthenia_hand@barton.biz"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "parthenia_hand@barton.biz"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "parthenia_hand@barton.biz"], ["encrypted_password", "$2a$04$lyzQuo81FR1UrYX7Hd0B0uV1g22YzqqsrqEMMSYXfkr9G3lDcRHbq"], ["confirmed_at", "2019-09-02 05:31:42.109392"], ["name", "Art Major"], ["email", "parthenia_hand@barton.biz"], ["tokens", "{}"], ["created_at", "2019-09-02 05:31:42.111623"], ["updated_at", "2019-09-02 05:31:42.111623"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:31:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"parthenia_hand@barton.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "parthenia_hand@barton.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"W_WPNgFiHxhCZbFqDoIvng\":{\"token\":\"$2a$12$08.qA7c2wKApk6.9hrHVYOqofh.tP5t9QS7LtGgUY4VYTwHSgZJS2\",\"expiry\":1568611902,\"last_token\":null,\"updated_at\":\"2019-09-02T00:31:42.311-05:00\"}}"], ["updated_at", "2019-09-02 05:31:42.311707"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 05:31:42.315441"], ["last_sign_in_at", "2019-09-02 05:31:42.315441"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 05:31:42.315763"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "claude@wiza.io"], ["LIMIT", 1]]  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "claude@wiza.io"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "claude@wiza.io"], ["encrypted_password", "$2a$04$NHyyd2Dczx1KMNHLsD.GNOfsksw23iR0Op1boUnMwCFAV6MBzGWdi"], ["confirmed_at", "2019-09-02 05:31:42.322703"], ["name", "Phil DeGrave"], ["email", "claude@wiza.io"], ["tokens", "{}"], ["created_at", "2019-09-02 05:31:42.323734"], ["updated_at", "2019-09-02 05:31:42.323734"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:31:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"claude@wiza.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "claude@wiza.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-09-02 05:31:42.327815"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sheba.lowe@lubowitz.net"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "sheba.lowe@lubowitz.net"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sheba.lowe@lubowitz.net"], ["encrypted_password", "$2a$04$ezTsr5pHO8RlDIh0CmX67ODk58DWkZex4Hi.Vr0HFV4lGIDGvlDqi"], ["confirmation_token", "X1PWcgPgDcVYRU1q3Jsh"], ["confirmation_sent_at", "2019-09-02 05:31:42.332406"], ["name", "Ty Knotts"], ["email", "sheba.lowe@lubowitz.net"], ["tokens", "{}"], ["created_at", "2019-09-02 05:31:42.332327"], ["updated_at", "2019-09-02 05:31:42.332327"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:31:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sheba.lowe@lubowitz.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sheba.lowe@lubowitz.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "perry.mcdermott@quigley.io"], ["LIMIT", 1]]  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "perry.mcdermott@quigley.io"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "perry.mcdermott@quigley.io"], ["encrypted_password", "$2a$04$cvy8Ks5KjYaSzyBu4R7nJOPooDdhc/h0r7wXzELksMuo3SERiTOYa"], ["confirmed_at", "2019-09-02 05:31:42.338653"], ["locked_at", "2019-09-02 05:31:42.338663"], ["name", "Corey Ander"], ["email", "perry.mcdermott@quigley.io"], ["tokens", "{}"], ["created_at", "2019-09-02 05:31:42.339670"], ["updated_at", "2019-09-02 05:31:42.339670"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:31:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"perry.mcdermott@quigley.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "perry.mcdermott@quigley.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "waltraud_kihn@jacobson.name"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "waltraud_kihn@jacobson.name"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "waltraud_kihn@jacobson.name"], ["encrypted_password", "$2a$04$QSLomOlDUYXrAmwJoZW9VOJS4ZlzkV4ZwApK3qS3Opx8X/Dy81CKC"], ["confirmed_at", "2019-09-02 05:31:42.348877"], ["name", "Rip Torn"], ["email", "waltraud_kihn@jacobson.name"], ["tokens", "{}"], ["created_at", "2019-09-02 05:31:42.350493"], ["updated_at", "2019-09-02 05:31:42.350493"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:31:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"waltraud_kihn@jacobson.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "waltraud_kihn@jacobson.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "les@bartolettigorczany.co"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "les@bartolettigorczany.co"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "les@bartolettigorczany.co"], ["encrypted_password", "$2a$04$ODxNf5hbgTaOQdBuXSjag.z0fTPtdIFvLpQK/7cAP0U722pd.Q1JK"], ["confirmed_at", "2019-09-02 05:31:42.359844"], ["name", "Joe King"], ["email", "les@bartolettigorczany.co"], ["tokens", "{}"], ["created_at", "2019-09-02 05:31:42.361188"], ["updated_at", "2019-09-02 05:31:42.361188"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3tnJ4olCL4fkbIGo6_KSrQ\":{\"token\":\"$2a$12$2v1RLj504EueOxzNOYBqv.RnwHRe4JjAqT5316m.8fT7qdeg/AvRy\",\"expiry\":1568611902,\"last_token\":null,\"updated_at\":\"2019-09-02T00:31:42.546-05:00\"}}"], ["updated_at", "2019-09-02 05:31:42.547446"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:31:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "les@bartolettigorczany.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-09-02 05:31:42.718793"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 171ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:31:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dario_rowe@kling.name"], ["LIMIT", 1]]  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "dario_rowe@kling.name"]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dario_rowe@kling.name"], ["encrypted_password", "$2a$04$hbiEATaGjdw5kDFraJgvvOBlU9v.rjowwg5Pkfa5zNTyfBuO1oW5O"], ["confirmed_at", "2019-09-02 05:31:42.727192"], ["name", "Jim Laucher"], ["email", "dario_rowe@kling.name"], ["tokens", "{}"], ["created_at", "2019-09-02 05:31:42.728233"], ["updated_at", "2019-09-02 05:31:42.728233"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "zenobia.kuhic@schinner.co"], ["LIMIT", 1]]  (0.0ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "zenobia.kuhic@schinner.co"]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "zenobia.kuhic@schinner.co"], ["encrypted_password", "$2a$04$aQLgw35mk1N1yb8Jx3AqguMpjIqYtz3wILhkulwiLbpRtHTmJA73m"], ["confirmed_at", "2019-09-02 05:31:42.731790"], ["name", "Lily Pond"], ["email", "zenobia.kuhic@schinner.co"], ["tokens", "{}"], ["created_at", "2019-09-02 05:31:42.732825"], ["updated_at", "2019-09-02 05:31:42.732825"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"zaldwbU_s9F27hnbGH1X6A\":{\"token\":\"$2a$12$UMyKmoJBgjTutQsgmJ9BCOKgNHw8g7OewqNaIQntjpIfy7V.KusX2\",\"expiry\":1568611902,\"last_token\":null,\"updated_at\":\"2019-09-02T00:31:42.914-05:00\"}}"], ["updated_at", "2019-09-02 05:31:42.915174"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:31:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "zenobia.kuhic@schinner.co"], ["LIMIT", 1]] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47603ms (Views: 0.3ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "allan@schmidt.net"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "allan@schmidt.net"]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "allan@schmidt.net"], ["encrypted_password", "$2a$04$ZbiJyEPQnjZ3WLjMHUk64udNTxXm3Es79VfbcBQdvS/InL5j9Ywa."], ["confirmed_at", "2019-09-02 05:32:30.533865"], ["name", "Rocky Mountain"], ["email", "allan@schmidt.net"], ["tokens", "{}"], ["created_at", "2019-09-02 05:32:30.535749"], ["updated_at", "2019-09-02 05:32:30.535749"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yDsWkZcuVHgzHUu0lH5m-Q\":{\"token\":\"$2a$12$GTEEMKT8DaUuDIjImozZsuWi1ycXoGZeJZlPF2BH7F2X8dq4JTBdW\",\"expiry\":1568611950,\"last_token\":null,\"updated_at\":\"2019-09-02T00:32:30.724-05:00\"}}"], ["updated_at", "2019-09-02 05:32:30.725083"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:32:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "allan@schmidt.net"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5039ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "johnathon@beckerlowe.io"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "johnathon@beckerlowe.io"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "johnathon@beckerlowe.io"], ["encrypted_password", "$2a$04$uuddnVRJfyh6EQSouQ1hwefTkMsdTHTzQe/MfET3tKV5PWFzgWdkS"], ["confirmed_at", "2019-09-02 05:32:35.770245"], ["name", "Ali Katt"], ["email", "johnathon@beckerlowe.io"], ["tokens", "{}"], ["created_at", "2019-09-02 05:32:35.771439"], ["updated_at", "2019-09-02 05:32:35.771439"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YhI04rSh0tgNHtH4_Iu8_Q\":{\"token\":\"$2a$12$wdynThFjWVrF/PqlD9deceNOgWnJuqjsiHkAGJSzygHzWdvwiQKwm\",\"expiry\":1568611955,\"last_token\":null,\"updated_at\":\"2019-09-02T00:32:35.961-05:00\"}}"], ["updated_at", "2019-09-02 05:32:35.961650"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:32:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "johnathon@beckerlowe.io"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 6218ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "darin_wilkinson@hamillschumm.org"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "darin_wilkinson@hamillschumm.org"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "darin_wilkinson@hamillschumm.org"], ["encrypted_password", "$2a$04$G8Ql3rSqVrTz7uEFyA/T8.aMcELFqhUBNFAJjvdJ61IGG8hS0f8.O"], ["confirmed_at", "2019-09-02 05:32:42.186010"], ["name", "Estelle Hertz"], ["email", "darin_wilkinson@hamillschumm.org"], ["tokens", "{}"], ["created_at", "2019-09-02 05:32:42.187240"], ["updated_at", "2019-09-02 05:32:42.187240"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"IKVZrqOSeDwn6w03qEwEuA\":{\"token\":\"$2a$12$3TZxwe.PCOt8EQOdYkLpWuORMgT0HvYsmXSlS3fMimEH0Cd9XZC7a\",\"expiry\":1568611962,\"last_token\":null,\"updated_at\":\"2019-09-02T00:32:42.374-05:00\"}}"], ["updated_at", "2019-09-02 05:32:42.375278"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:32:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "darin_wilkinson@hamillschumm.org"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$BElPQhVPTKXFORzz.qfn.ud7IvjJ9ZT1AA1h1n/GyK6.Ic1KgwtjK"], ["updated_at", "2019-09-02 05:33:08.487357"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 26115ms (Views: 0.1ms | ActiveRecord: 0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "erin@casper.co"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "erin@casper.co"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "erin@casper.co"], ["encrypted_password", "$2a$04$kdu8kWZy./4JN2Jo0h546ut0wFVcDAl2ulWK5KpkfQT4z0XFHgtaS"], ["confirmed_at", "2019-09-02 05:33:08.495500"], ["name", "Rusty Irons"], ["email", "erin@casper.co"], ["tokens", "{}"], ["created_at", "2019-09-02 05:33:08.496771"], ["updated_at", "2019-09-02 05:33:08.496771"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bjLmPRh5EFXKfEaudSE0Lg\":{\"token\":\"$2a$12$fpkItDSppS8y/oIvWGE5yuB9Umv9BtsffUYIURWxnSDsnXPeGOLdi\",\"expiry\":1568611988,\"last_token\":null,\"updated_at\":\"2019-09-02T00:33:08.683-05:00\"}}"], ["updated_at", "2019-09-02 05:33:08.684242"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:33:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "erin@casper.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$iMdjh/0RlMX1z6voCU9jv.SWmFDiERBLaOIKJ.fs0y79GO6fSdg1G"], ["updated_at", "2019-09-02 05:33:12.520136"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3838ms (Views: 0.1ms | ActiveRecord: 0.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "loretta.zemlak@hilpertfeil.info"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "loretta.zemlak@hilpertfeil.info"]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "loretta.zemlak@hilpertfeil.info"], ["encrypted_password", "$2a$04$GSlpzukSWQhxZQXMjlzauuz7ec44piYuHk2xupX7VvWCXkN434pi."], ["confirmed_at", "2019-09-02 05:33:12.528355"], ["name", "Winnie Bago"], ["email", "loretta.zemlak@hilpertfeil.info"], ["tokens", "{}"], ["created_at", "2019-09-02 05:33:12.529750"], ["updated_at", "2019-09-02 05:33:12.529750"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"cQ1ZhAOu4xxPWUp2kER_rA\":{\"token\":\"$2a$12$skUYup4aouQiky4U9J6T1ubHiuRPYacEfA9uWA4YPLFgbIrLLMHHq\",\"expiry\":1568611992,\"last_token\":null,\"updated_at\":\"2019-09-02T00:33:12.718-05:00\"}}"], ["updated_at", "2019-09-02 05:33:12.718906"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:33:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "loretta.zemlak@hilpertfeil.info"], ["LIMIT", 1]] Completed 500 Internal Server Error in 2682ms (ActiveRecord: 0.0ms)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "roslyn@mccullough.io"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "roslyn@mccullough.io"]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "roslyn@mccullough.io"], ["encrypted_password", "$2a$04$Nxd3p05yekiQRiY7oSzcneGyhJbzMx.SJT5rwC0dAncaO2wvmPAFm"], ["confirmed_at", "2019-09-02 05:33:52.168138"], ["name", "Sandy Spring"], ["email", "roslyn@mccullough.io"], ["tokens", "{}"], ["created_at", "2019-09-02 05:33:52.170332"], ["updated_at", "2019-09-02 05:33:52.170332"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Plw5u4Iem-gOLGrVVJv7vg\":{\"token\":\"$2a$12$wpB8yNmHRAjN4mIZ4mytWeCWzw7vhCT255AyubQdtH6z46baM8IT6\",\"expiry\":1568612032,\"last_token\":null,\"updated_at\":\"2019-09-02T00:33:52.339-05:00\"}}"], ["updated_at", "2019-09-02 05:33:52.339867"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:33:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "roslyn@mccullough.io"], ["LIMIT", 1]] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 53000ms (Views: 0.4ms | ActiveRecord: 0.5ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'tran@reichel.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Ima Hogg"], ["email", "tran@reichel.biz"], ["encrypted_password", "$2a$04$ncu1PX0ZZ/7lgmMsZO2WeeEnfogEzexWa1AugDczrGm9uZzk5jlk6"], ["confirmed_at", "2019-09-02 05:36:31.992026"], ["uid", "tran@reichel.biz"], ["created_at", "2019-09-02 05:36:32.000873"], ["updated_at", "2019-09-02 05:36:32.000873"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tran@reichel.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "tran@reichel.biz"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Pizk6TnMT6NBjULef5ls9A\":{\"token\":\"$2a$10$fqwqMOynJlbE8Q40F1rLKOLDouZCwwnV4.ejeEENYREqBQ4K3h0Qm\",\"expiry\":1568612192,\"updated_at\":\"2019-09-02 05:36:32 UTC\"}}"], ["updated_at", "2019-09-02 05:36:32.084294"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-09-02 05:36:32.090826"], ["current_sign_in_at", "2019-09-02 05:36:32.090826"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 05:36:32.091546"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 70ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'irving.kovacek@hudson.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Phil DeGrave"], ["email", "irving.kovacek@hudson.co"], ["encrypted_password", "$2a$04$dmeqkJONa9C9SSQEnopYsOWwChTZkx783Fs2ybfs/d1HXDROkb5pG"], ["confirmed_at", "2019-09-02 05:36:32.098714"], ["uid", "irving.kovacek@hudson.co"], ["created_at", "2019-09-02 05:36:32.099570"], ["updated_at", "2019-09-02 05:36:32.099570"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"irving.kovacek@hudson.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "irving.kovacek@hudson.co"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'alfonso_beier@creminmoen.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Sid Down"], ["email", "alfonso_beier@creminmoen.co"], ["encrypted_password", "$2a$04$ENY6McnpILKwiueJScCLq.n2uDktU/2qOWDW3gt6cYxAFbypyYcKy"], ["uid", "alfonso_beier@creminmoen.co"], ["created_at", "2019-09-02 05:36:32.111643"], ["updated_at", "2019-09-02 05:36:32.111643"], ["confirmation_token", "F5agK1p5DV77u7vjxN4C"], ["confirmation_sent_at", "2019-09-02 05:36:32.111801"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"alfonso_beier@creminmoen.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "alfonso_beier@creminmoen.co"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'genaro@schoen.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Aaron Thetires"], ["email", "genaro@schoen.io"], ["encrypted_password", "$2a$04$e9qmIEXJfR7dS1PDhzcT/e2I0F6H/4KFd7bYd6/fQRRmvIbjpIN/e"], ["confirmed_at", "2019-09-02 05:36:32.121373"], ["locked_at", "2019-09-02 05:36:32.121472"], ["uid", "genaro@schoen.io"], ["created_at", "2019-09-02 05:36:32.122672"], ["updated_at", "2019-09-02 05:36:32.122672"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"genaro@schoen.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "genaro@schoen.io"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'lacy@rodriguez.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Jim Sox"], ["email", "lacy@rodriguez.org"], ["encrypted_password", "$2a$04$obTFHMLECvgMnjG60SL7E.pWpk1kNijnlDq3BgsW6GPdJkqsA4nNe"], ["confirmed_at", "2019-09-02 05:36:32.133714"], ["auth_available", "f"], ["uid", "lacy@rodriguez.org"], ["created_at", "2019-09-02 05:36:32.134856"], ["updated_at", "2019-09-02 05:36:32.134856"]]  (14.5ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lacy@rodriguez.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "lacy@rodriguez.org"]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'xavier_donnelly@mosciskicummerata.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Trina Corder"], ["email", "xavier_donnelly@mosciskicummerata.name"], ["encrypted_password", "$2a$04$shIniTBY9/SdnRmIx36pReMT8MvoyG3l9YxxyS8Rb8CL1kcu/BDFi"], ["confirmed_at", "2019-09-02 05:36:32.163502"], ["uid", "xavier_donnelly@mosciskicummerata.name"], ["created_at", "2019-09-02 05:36:32.164958"], ["updated_at", "2019-09-02 05:36:32.164958"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"AuBLf6qAqoXSFIiC76Xc-A\":{\"token\":\"$2a$10$BUCoeYxfi8g72KjaT7I..uDidBE1ML.HNj.rI7cIcu4Fe1BwX/HuG\",\"expiry\":1568612192,\"updated_at\":\"2019-09-02 05:36:32 UTC\"}}"], ["updated_at", "2019-09-02 05:36:32.225176"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "xavier_donnelly@mosciskicummerata.name"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 05:36:32.279208"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'rhett_hegmann@heller.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Marj Oram"], ["email", "rhett_hegmann@heller.net"], ["encrypted_password", "$2a$04$Eq5WijGDdRnHgVAg8M4yfOySEYTs.ze/30IVxG4m50iE86XTNo9OW"], ["confirmed_at", "2019-09-02 05:36:32.288430"], ["uid", "rhett_hegmann@heller.net"], ["created_at", "2019-09-02 05:36:32.289272"], ["updated_at", "2019-09-02 05:36:32.289272"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'candelaria_nikolaus@danielboehm.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Michelle Lynn"], ["email", "candelaria_nikolaus@danielboehm.io"], ["encrypted_password", "$2a$04$UmbL5of.3qjjgajLnek5KOlXfvGm1OXySClmYmv05Aj9t/mG.Uf6e"], ["confirmed_at", "2019-09-02 05:36:32.293515"], ["allow_password_change", "t"], ["uid", "candelaria_nikolaus@danielboehm.io"], ["created_at", "2019-09-02 05:36:32.294310"], ["updated_at", "2019-09-02 05:36:32.294310"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mmeGTNeeUFMMjFBOsa2IhA\":{\"token\":\"$2a$10$.NjfURT3GYkpavktV1qZgeKT2SknpPRp7JFl3uQ9qIrH10SkuEoiG\",\"expiry\":1568612192,\"updated_at\":\"2019-09-02 05:36:32 UTC\"}}"], ["updated_at", "2019-09-02 05:36:32.347883"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "candelaria_nikolaus@danielboehm.io"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$la2uVqbdRzDXERCdCOwF3uMpgoeCN4a0WdWtMOprPgCA42hBfsmmO"], ["updated_at", "2019-09-02 05:36:32.404143"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:32.405124"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'maranda@fay.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Art Sellers"], ["email", "maranda@fay.net"], ["encrypted_password", "$2a$04$36DA4C8y0.m6A6LkZCzkxeTbEICUON2HogecPFnygpFpaTVrkwtHy"], ["confirmed_at", "2019-09-02 05:36:32.410749"], ["allow_password_change", "t"], ["uid", "maranda@fay.net"], ["created_at", "2019-09-02 05:36:32.411651"], ["updated_at", "2019-09-02 05:36:32.411651"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YomknJN_zHaZj7onYERSdA\":{\"token\":\"$2a$10$FVC9kSYZLDhl.qvOYDLizeTjg8XzAuxJ3XYGSwaBhFvHTF4ujuR4u\",\"expiry\":1568612192,\"updated_at\":\"2019-09-02 05:36:32 UTC\"}}"], ["updated_at", "2019-09-02 05:36:32.460479"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "maranda@fay.net"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$IaRjZKy2X6HJ4mZuzk8RAOw/qOWx4yJ.G25XboU/K.aVh4QQgQp.m"], ["updated_at", "2019-09-02 05:36:32.516309"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:32.517264"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'dirk@goodwin.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Polly Ester"], ["email", "dirk@goodwin.info"], ["encrypted_password", "$2a$04$hn.qw6OrJwbe98LrLwVZb.ML6cogOLDnq9WB0w0FZjR5vlvCZyAAu"], ["confirmed_at", "2019-09-02 05:36:32.523018"], ["uid", "dirk@goodwin.info"], ["created_at", "2019-09-02 05:36:32.524205"], ["updated_at", "2019-09-02 05:36:32.524205"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"UOQArP7EXyhCnaMnb9mspw\":{\"token\":\"$2a$10$.We/JlXtpTqCpjDxPyXSBerQi2FxT3ZAAN4Ea08bDVBn7A5r1XKwS\",\"expiry\":1568612192,\"updated_at\":\"2019-09-02 05:36:32 UTC\"}}"], ["updated_at", "2019-09-02 05:36:32.576920"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "dirk@goodwin.info"]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'grisel@wintheiser.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Jade Stone"], ["email", "grisel@wintheiser.biz"], ["encrypted_password", "$2a$04$Uqu4Pp.fRKCRP6oO7ezXjuWIXeHDaQdD/HMSa.F6nFp8GAxX8.1ti"], ["confirmed_at", "2019-09-02 05:36:32.634427"], ["allow_password_change", "t"], ["uid", "grisel@wintheiser.biz"], ["created_at", "2019-09-02 05:36:32.635230"], ["updated_at", "2019-09-02 05:36:32.635230"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"QoIwfnz6K3MgbovrjRxGuQ\":{\"token\":\"$2a$10$1JxWygphd8hFUGnhZT/cg.n4rbKjw0af5UzDigU2AMcSSFrqE7wKS\",\"expiry\":1568612192,\"updated_at\":\"2019-09-02 05:36:32 UTC\"}}"], ["updated_at", "2019-09-02 05:36:32.682527"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "grisel@wintheiser.biz"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$tLazLydTxD7aofr4.2Ol0uI6PsZtwphQ/X4p8u5ai287WfqXXa5qy"], ["updated_at", "2019-09-02 05:36:32.735052"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:32.735963"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'willis.ernser@bechtelarlangosh.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Ryan Carnation"], ["email", "willis.ernser@bechtelarlangosh.io"], ["encrypted_password", "$2a$04$DhpyNvxQbz3jdr7eYGcoIOnVKmOpqozQQHUc8j2mcD1vn9EO5Gk02"], ["confirmed_at", "2019-09-02 05:36:32.740272"], ["allow_password_change", "t"], ["uid", "willis.ernser@bechtelarlangosh.io"], ["created_at", "2019-09-02 05:36:32.741055"], ["updated_at", "2019-09-02 05:36:32.741055"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"rjmidNRI3LZpFx9MX1FaFw\":{\"token\":\"$2a$10$z18309gFjboa1QZ/Yo6yUuIufyCD5ZNFi8SGGfmGSGjtmLwWj7aYS\",\"expiry\":1568612192,\"updated_at\":\"2019-09-02 05:36:32 UTC\"}}"], ["updated_at", "2019-09-02 05:36:32.788362"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "willis.ernser@bechtelarlangosh.io"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$XoDO3FtfY1Z1LOqzDjmQ9eDCXI1waiLPXYuRWcl69JuJraiBXvrz2"], ["updated_at", "2019-09-02 05:36:32.840448"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:32.841330"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'daniele@grady.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Cam Payne"], ["email", "daniele@grady.net"], ["encrypted_password", "$2a$04$xJyBCobKcE0zy1CiU95JXOPr8K4K8H.jIMGpOmIXqKaqYn7qsMSZS"], ["confirmed_at", "2019-09-02 05:36:32.845823"], ["uid", "daniele@grady.net"], ["created_at", "2019-09-02 05:36:32.846605"], ["updated_at", "2019-09-02 05:36:32.846605"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BSz9YszYzbKYYoMJWJbE3w\":{\"token\":\"$2a$10$UV5MBhKMIjyvG5OaXmUzhe.nL/mmjI15op6XX.QoOovDqCnjHAumK\",\"expiry\":1568612192,\"updated_at\":\"2019-09-02 05:36:32 UTC\"}}"], ["updated_at", "2019-09-02 05:36:32.894812"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "daniele@grady.net"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$P4USeuQKSXI/98LSuHRIhucc0UYRq7Zx7XP0UdWNquiBmrb6KWXNa"], ["updated_at", "2019-09-02 05:36:32.948854"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'heath.howell@powlowskigislason.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Sue Permann"], ["email", "heath.howell@powlowskigislason.org"], ["encrypted_password", "$2a$04$XC2m1sx8Uh9uON8XZMhp7.jhXBwGogSUOuDy0b7IF59uP3YEqnZsu"], ["confirmed_at", "2019-09-02 05:36:32.953831"], ["uid", "heath.howell@powlowskigislason.org"], ["created_at", "2019-09-02 05:36:32.954500"], ["updated_at", "2019-09-02 05:36:32.954500"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "muoi_boyle@haag.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "muoi_boyle@haag.info"], ["encrypted_password", "$2a$04$ypbu3JdmVanbdkYqEE2kvenHE2jsmhxe4YMQT43CFmKl/bRMQEHRu"], ["confirmed_at", "2019-09-02 05:36:36.331578"], ["name", "Jasmine Flowers"], ["email", "muoi_boyle@haag.info"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:36.337839"], ["updated_at", "2019-09-02 05:36:36.337839"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"muoi_boyle@haag.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "muoi_boyle@haag.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"c29bL7tyw3qazhCBLHxBLg\":{\"token\":\"$2a$12$BVwKQoXDXIgehZ86hP/jAuh3eHaKl17AuQFdU.1qFBXrvGqE4EDaS\",\"expiry\":1568612196,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:36.365-05:00\"}}"], ["updated_at", "2019-09-02 05:36:36.543600"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 05:36:36.549258"], ["last_sign_in_at", "2019-09-02 05:36:36.549258"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 05:36:36.549896"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 197ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bobby_skiles@okunevajones.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bobby_skiles@okunevajones.com"], ["encrypted_password", "$2a$04$3/HSa9jz09xDwh0zduNbfeNf6SlMrgCdBDuQcEHbhj7J3yVYLqtvK"], ["confirmed_at", "2019-09-02 05:36:36.556951"], ["name", "Lois Price"], ["email", "bobby_skiles@okunevajones.com"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:36.557605"], ["updated_at", "2019-09-02 05:36:36.557605"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"bobby_skiles@okunevajones.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bobby_skiles@okunevajones.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-09-02 05:36:36.561687"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "whitney_tillman@oconner.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "whitney_tillman@oconner.name"], ["encrypted_password", "$2a$04$8e0unTaB3xRwcLHO7MF/HO05BkZkZObwTB1zEU4thAKj9DGiNc.iS"], ["confirmation_token", "9kSbHtMzb58gxovjBRay"], ["confirmation_sent_at", "2019-09-02 05:36:36.565773"], ["name", "Ginger Vitis"], ["email", "whitney_tillman@oconner.name"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:36.565707"], ["updated_at", "2019-09-02 05:36:36.565707"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"whitney_tillman@oconner.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "whitney_tillman@oconner.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rodger.hauck@halvorson.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rodger.hauck@halvorson.com"], ["encrypted_password", "$2a$04$weNtYLjhKUeF14BEerAscOZO0nzT4o0um4MIBssC52foIOUu0fA1a"], ["confirmed_at", "2019-09-02 05:36:36.571387"], ["locked_at", "2019-09-02 05:36:36.571395"], ["name", "Freida Convict"], ["email", "rodger.hauck@halvorson.com"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:36.572018"], ["updated_at", "2019-09-02 05:36:36.572018"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rodger.hauck@halvorson.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rodger.hauck@halvorson.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ludie@parisianwatsica.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ludie@parisianwatsica.info"], ["encrypted_password", "$2a$04$MfzNgfmuwc3WUtzrVHffr.8D5XM.P7HkP58ih8JmqpS8xhbbp/Pcy"], ["confirmed_at", "2019-09-02 05:36:36.580378"], ["name", "Theresa Brown"], ["email", "ludie@parisianwatsica.info"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:36.581336"], ["updated_at", "2019-09-02 05:36:36.581336"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ludie@parisianwatsica.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ludie@parisianwatsica.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mark_macejkovic@bartolettiraynor.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mark_macejkovic@bartolettiraynor.biz"], ["encrypted_password", "$2a$04$XUWGsPETPvMLuOVsRHWMNuZFRDUG5WWUfCcWJ30AVQvSliYfOkSOe"], ["confirmed_at", "2019-09-02 05:36:36.590710"], ["name", "Will Wynn"], ["email", "mark_macejkovic@bartolettiraynor.biz"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:36.592015"], ["updated_at", "2019-09-02 05:36:36.592015"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"4jSGNqz7pY7vtQIMhZG0gQ\":{\"token\":\"$2a$12$yaDKT0hTXYs3ZxfD4U/hKunEK6O4r6MX4PlHpYNcsNgfH1CPmrXCK\",\"expiry\":1568612196,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:36.593-05:00\"}}"], ["updated_at", "2019-09-02 05:36:36.779496"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "mark_macejkovic@bartolettiraynor.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-09-02 05:36:36.950575"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 170ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "theron@bashirian.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "theron@bashirian.info"], ["encrypted_password", "$2a$04$YkBXA3cqFAcYtdIdqf4KaOLdJPFVE0Rk/8Bm5CL4UnrnFm3gH6HEG"], ["confirmed_at", "2019-09-02 05:36:36.959034"], ["name", "Justin Credible"], ["email", "theron@bashirian.info"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:36.959759"], ["updated_at", "2019-09-02 05:36:36.959759"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "olin_bergstrom@rowe.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "olin_bergstrom@rowe.info"], ["encrypted_password", "$2a$04$nXZa5kJ2uD4TgUM9LUGZduXAlXyOoS/KUb4lamN2B.cxbQWmcK.rq"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:36.963254"], ["name", "Ilene Wright"], ["email", "olin_bergstrom@rowe.info"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:36.963921"], ["updated_at", "2019-09-02 05:36:36.963921"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EgqIWWQgl9rYZVoMYCN0eQ\":{\"token\":\"$2a$12$HO8sgZj29E/iW5nLAkCSX.ir47.rwn6kx8irR/Pcr5ee75LAclmQ6\",\"expiry\":1568612196,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:36.965-05:00\"}}"], ["updated_at", "2019-09-02 05:36:37.152609"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "olin_bergstrom@rowe.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$zeY55ALu0pqIT0I0dzQPKOGyliDmdrf1VmtoNHgETJ5LFg3UsuMTW"], ["updated_at", "2019-09-02 05:36:37.329809"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:37.330825"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bernie@kilback.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bernie@kilback.io"], ["encrypted_password", "$2a$04$apqADUD.dgEsamZklqZsPu4S2PVNhq/OUgkXQo.89QfBfMpGKFpA2"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:37.335015"], ["name", "Beau Vine"], ["email", "bernie@kilback.io"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:37.335576"], ["updated_at", "2019-09-02 05:36:37.335576"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"VkJX3MkCND5lLgE-LFqdIA\":{\"token\":\"$2a$12$Mn9uj0ugppQxNExL7U2LLOUYJNDIQ1rO10Z7jwkDzusooq/h8lA6i\",\"expiry\":1568612197,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:37.336-05:00\"}}"], ["updated_at", "2019-09-02 05:36:37.517965"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "bernie@kilback.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$vnryt33.RJgx5ggyyrOx8OGiKoE5SZszCTilWLgZ7vdUz/DPP9CMG"], ["updated_at", "2019-09-02 05:36:37.711201"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:37.712323"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 194ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "courtney@oconnell.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "courtney@oconnell.net"], ["encrypted_password", "$2a$04$ocakVdn0GOqRhX9SOtMC/uM/vJnxg9mTsuX7SvTy6O.h7XHz0BlVi"], ["confirmed_at", "2019-09-02 05:36:37.720701"], ["name", "Clara Sabell"], ["email", "courtney@oconnell.net"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:37.721596"], ["updated_at", "2019-09-02 05:36:37.721596"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0LrvniGY0rzCZtfYQ-NsiQ\":{\"token\":\"$2a$12$7oerzLf6BhbBdFXlFVMXeeAK7QTognToLzR2XkwKcpXMfNV7dDZEe\",\"expiry\":1568612197,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:37.722-05:00\"}}"], ["updated_at", "2019-09-02 05:36:37.916676"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "courtney@oconnell.net"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 192ms (Views: 0.2ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "silas_koepp@jerde.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "silas_koepp@jerde.io"], ["encrypted_password", "$2a$04$mhylbTIsbaXYAPSeBdJWaO0ilLGeXp.ciGGYFwd.pb9hnBlhkrYZW"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:38.125323"], ["name", "Anna Conda"], ["email", "silas_koepp@jerde.io"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:38.126165"], ["updated_at", "2019-09-02 05:36:38.126165"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"c7Cbr0ZDP9gU94ygMYOxsg\":{\"token\":\"$2a$12$gQWMCiKnd8Po7YbCp9dVi.I40K8egkCX1G1Vwsjws2wtC2JtB64FW\",\"expiry\":1568612198,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:38.127-05:00\"}}"], ["updated_at", "2019-09-02 05:36:38.325214"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "silas_koepp@jerde.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$py2OKYjUhTlIXVp3AC.omOjg8TquAxedCLgtkwkM9KNvoYyGMM0Ee"], ["updated_at", "2019-09-02 05:36:38.511044"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:38.512200"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 186ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sanora@greenfelder.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sanora@greenfelder.net"], ["encrypted_password", "$2a$04$c.RhLIWrGiCkWvXKrICQP.mJDY7CM1LSe70mHy0sxpYth3nX0gUMC"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:38.516849"], ["name", "Dusty Rhodes"], ["email", "sanora@greenfelder.net"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:38.517524"], ["updated_at", "2019-09-02 05:36:38.517524"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ONpV0Mr7XtdexzjWTSXaVA\":{\"token\":\"$2a$12$NICs4ySaEcyudR6wprDDsOaggTIfUpBnIhHx5VBBcZ5cToe69EMFO\",\"expiry\":1568612198,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:38.518-05:00\"}}"], ["updated_at", "2019-09-02 05:36:38.699575"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sanora@greenfelder.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$XfLaLihTGFt0vEY4INGQC.r7Y26LVaHzLC8r2WWFBV.p2MW6nM14K"], ["updated_at", "2019-09-02 05:36:38.878653"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:38.879711"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 180ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ethan_williamson@dietrich.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ethan_williamson@dietrich.info"], ["encrypted_password", "$2a$04$nJVSVzmZSwueI2l8ZcrJa.55NnWMa9WJG/IG1Bj3z/Xrscr.DsxDS"], ["confirmed_at", "2019-09-02 05:36:38.885987"], ["name", "Ty Knotts"], ["email", "ethan_williamson@dietrich.info"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:38.886782"], ["updated_at", "2019-09-02 05:36:38.886782"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"pyVeuyGPVyrdMLanqMUqOA\":{\"token\":\"$2a$12$4ptGiI2Bno3LadsQdZ6Rc.4FZl8VIQPACPYZZ3B66MrTsyeijkDIy\",\"expiry\":1568612198,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:38.887-05:00\"}}"], ["updated_at", "2019-09-02 05:36:39.066587"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ethan_williamson@dietrich.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$HQ7zQQsY0Dm.UMxWMqNbY.4xbQzm3kWuBBfuNFY8z85IUOjjSuCsW"], ["updated_at", "2019-09-02 05:36:39.245874"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 180ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sammy_welch@rowe.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sammy_welch@rowe.com"], ["encrypted_password", "$2a$04$7gM/I8F.xyVK5J7LI1Ze7OtvsU.hdlE5duLjvqA6wH0Njuwz2Ki02"], ["confirmed_at", "2019-09-02 05:36:39.250839"], ["name", "Lucy Fer"], ["email", "sammy_welch@rowe.com"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:39.251424"], ["updated_at", "2019-09-02 05:36:39.251424"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sabine_mosciski@gleichnerhyatt.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sabine_mosciski@gleichnerhyatt.org"], ["encrypted_password", "$2a$04$6fp/6qzOtLmo7Ng.0W5qRew//L6MQeA.fS.DvU12f1BRDOX12aKTC"], ["confirmed_at", "2019-09-02 05:36:42.678072"], ["name", "Ilene West"], ["email", "sabine_mosciski@gleichnerhyatt.org"], ["created_at", "2019-09-02 05:36:42.682427"], ["updated_at", "2019-09-02 05:36:42.682427"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sabine_mosciski@gleichnerhyatt.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sabine_mosciski@gleichnerhyatt.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"u_zhcblDV9qqS72IKhp9EQ\":{\"token\":\"$2a$10$e7pT80B8tT.b5ANRKrIkF.KQS9vz29nzQYB8pgq.XXQZOAVBfsQly\",\"expiry\":1568612202,\"updated_at\":\"2019-09-02 05:36:42 UTC\"}}"], ["updated_at", "2019-09-02 05:36:42.750290"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 05:36:42.754852"], ["last_sign_in_at", "2019-09-02 05:36:42.754852"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 05:36:42.755258"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ariel@schinnerjacobson.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ariel@schinnerjacobson.org"], ["encrypted_password", "$2a$04$Cp92hX4nsNPw6mMf2bcfLOC0tECKIRIIDjZQHxITd04sgtmeYalS2"], ["confirmed_at", "2019-09-02 05:36:42.762597"], ["name", "Mel Loewe"], ["email", "ariel@schinnerjacobson.org"], ["created_at", "2019-09-02 05:36:42.763560"], ["updated_at", "2019-09-02 05:36:42.763560"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ariel@schinnerjacobson.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ariel@schinnerjacobson.org"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kamala.cummerata@gutmann.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kamala.cummerata@gutmann.io"], ["encrypted_password", "$2a$04$FZfxHDOQ13.5Uhy7QLP.E.9ieB0Ea1lWVKQycEIFWc6Wel9row1ba"], ["confirmation_token", "E5xxNWJEax2PsnNHTz9b"], ["confirmation_sent_at", "2019-09-02 05:36:42.773624"], ["name", "Sandy Spring"], ["email", "kamala.cummerata@gutmann.io"], ["created_at", "2019-09-02 05:36:42.773532"], ["updated_at", "2019-09-02 05:36:42.773532"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kamala.cummerata@gutmann.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kamala.cummerata@gutmann.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ricky@batzskiles.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ricky@batzskiles.com"], ["encrypted_password", "$2a$04$ouNm61bZEUNzaKrDSx/TsOpy/lT4AVEgSNYS2d0jHXqmGZbrMdXIe"], ["confirmed_at", "2019-09-02 05:36:42.780419"], ["locked_at", "2019-09-02 05:36:42.780432"], ["name", "Ali Gator"], ["email", "ricky@batzskiles.com"], ["created_at", "2019-09-02 05:36:42.781504"], ["updated_at", "2019-09-02 05:36:42.781504"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ricky@batzskiles.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ricky@batzskiles.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "angeles@klocko.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "angeles@klocko.name"], ["encrypted_password", "$2a$04$Gw9YptXdZcvTl7H8OtrDbe.QFWR6XKXtGBUwDLj0s..irjbpNrLBu"], ["confirmed_at", "2019-09-02 05:36:42.790210"], ["name", "Mike Stand"], ["email", "angeles@klocko.name"], ["created_at", "2019-09-02 05:36:42.791184"], ["updated_at", "2019-09-02 05:36:42.791184"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"angeles@klocko.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "angeles@klocko.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "herman@franeckidibbert.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "herman@franeckidibbert.io"], ["encrypted_password", "$2a$04$0Yrs36//xIbjsghUsOVzkOGuH1MQB55mxFtwt1VgoLXPdHbg9RHty"], ["confirmed_at", "2019-09-02 05:36:42.800665"], ["name", "Val Lay"], ["email", "herman@franeckidibbert.io"], ["created_at", "2019-09-02 05:36:42.801957"], ["updated_at", "2019-09-02 05:36:42.801957"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gn0kTWc66jQc9jsCBHUd8w\":{\"token\":\"$2a$10$gBHS3ruxyBjpoMaFP9tcvOUex4qITkhvCxnU9pPU4axzeQHFQKH.K\",\"expiry\":1568612202,\"updated_at\":\"2019-09-02 05:36:42 UTC\"}}"], ["updated_at", "2019-09-02 05:36:42.860408"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "herman@franeckidibbert.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 05:36:42.910443"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "harlan_mcdermott@pacocha.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "harlan_mcdermott@pacocha.org"], ["encrypted_password", "$2a$04$zKdnneOzcfpHBzCWKMRs0edQmhW0KWVTrT7EN8dZbtsc52VgPx5lu"], ["confirmed_at", "2019-09-02 05:36:42.916875"], ["name", "Ed Ible"], ["email", "harlan_mcdermott@pacocha.org"], ["created_at", "2019-09-02 05:36:42.917554"], ["updated_at", "2019-09-02 05:36:42.917554"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "season@oconner.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "season@oconner.org"], ["encrypted_password", "$2a$04$meSoZTuGtiGJTfKE3uuWu.HjIAdBwocpiDM45YMYbatTri4J1w3Qq"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:42.920956"], ["name", "Neve Adda"], ["email", "season@oconner.org"], ["created_at", "2019-09-02 05:36:42.921667"], ["updated_at", "2019-09-02 05:36:42.921667"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"r6xx2FPb96WSqn8Wp7tS0A\":{\"token\":\"$2a$10$me8ccP6C..XxgD2txsAGoOc9qGP00Jy0nilNsrtJ2wy6m.ZqSzaWG\",\"expiry\":1568612202,\"updated_at\":\"2019-09-02 05:36:42 UTC\"}}"], ["updated_at", "2019-09-02 05:36:42.973865"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "season@oconner.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$j/flF.HktKuPC3NdPaB/ueQL7PicwC0JmQa5t.qv8ZQZWndbBOy2S"], ["updated_at", "2019-09-02 05:36:43.022329"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:43.023316"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "noma@marksmitchell.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "noma@marksmitchell.info"], ["encrypted_password", "$2a$04$S7dwb/HR2rAJP1o05biJFeZvTJGnsX/6Nz8ZroL2004k8vxhTgZlG"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:43.031236"], ["name", "E. Ville"], ["email", "noma@marksmitchell.info"], ["created_at", "2019-09-02 05:36:43.032370"], ["updated_at", "2019-09-02 05:36:43.032370"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Mm5lleCREIoeOfZWSMcTvQ\":{\"token\":\"$2a$10$/bUrNvX.FtYpHiGkeJx/yudUkQm.ri24LZwEheOITgE4H4AToUIdK\",\"expiry\":1568612203,\"updated_at\":\"2019-09-02 05:36:43 UTC\"}}"], ["updated_at", "2019-09-02 05:36:43.081112"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "noma@marksmitchell.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$R93KqSi/wzFe3b/irFec0Os2tkHeInjDvSjPCMnth328dfmOErPYa"], ["updated_at", "2019-09-02 05:36:43.134488"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:43.135506"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leo.mertz@stantonsmith.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "leo.mertz@stantonsmith.net"], ["encrypted_password", "$2a$04$Bw.IizWb3fvuJlcL4Qsmd.yIl9D6BD9zvVMVw8c2N9R9k9Bt1cMR2"], ["confirmed_at", "2019-09-02 05:36:43.140458"], ["name", "Jay Bird"], ["email", "leo.mertz@stantonsmith.net"], ["created_at", "2019-09-02 05:36:43.141381"], ["updated_at", "2019-09-02 05:36:43.141381"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"R68sLkFheRNOXyfdv_u5xw\":{\"token\":\"$2a$10$KynxaJ95EjNdZjMPiaZRGuyfuSZVgexuMxhoIPVvGDDTm9/dXa43.\",\"expiry\":1568612203,\"updated_at\":\"2019-09-02 05:36:43 UTC\"}}"], ["updated_at", "2019-09-02 05:36:43.192700"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "leo.mertz@stantonsmith.net"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "zackary@dicki.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "zackary@dicki.co"], ["encrypted_password", "$2a$04$Jt3BGjU5QlDYvOiyTpSoY.f8.xPoh7VanTWCfbvWXfcOgPJoFULQ2"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:43.251140"], ["name", "Kenny Penny"], ["email", "zackary@dicki.co"], ["created_at", "2019-09-02 05:36:43.251885"], ["updated_at", "2019-09-02 05:36:43.251885"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3PfFYJ3WvbDwkEiyMSWvhg\":{\"token\":\"$2a$10$fEJ5s6RZs31PAgBPtLmUSebtN3bFGvDVr9Vq50.AnDIJWPl4wxX3m\",\"expiry\":1568612203,\"updated_at\":\"2019-09-02 05:36:43 UTC\"}}"], ["updated_at", "2019-09-02 05:36:43.300989"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "zackary@dicki.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$RnWqS27w7qQlI1dbDhYFOuhz7HO91cgkqmzkD78C4T7Y1QYtTYraq"], ["updated_at", "2019-09-02 05:36:43.352482"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:43.353457"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "david_hudson@keeblerklocko.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "david_hudson@keeblerklocko.net"], ["encrypted_password", "$2a$04$jppPGaAqUtM5NRQAalqizucv2QXW0/.TC5xxJ2t9G0ykIFrzG4Squ"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:43.358588"], ["name", "Tommy Gunn"], ["email", "david_hudson@keeblerklocko.net"], ["created_at", "2019-09-02 05:36:43.359612"], ["updated_at", "2019-09-02 05:36:43.359612"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0XF0SUa-7OIZMzBbJXG8wQ\":{\"token\":\"$2a$10$Q9Ev2.cCkPKo7gbV.ERavOEvgedaWFMikvaTRAFL0ohnyMCFvPtci\",\"expiry\":1568612203,\"updated_at\":\"2019-09-02 05:36:43 UTC\"}}"], ["updated_at", "2019-09-02 05:36:43.412932"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "david_hudson@keeblerklocko.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$7MVd8hW1.b/yZYFn1bjkGud1xiV.BKSsB3vbjrtuJeK7fJx.kom2."], ["updated_at", "2019-09-02 05:36:43.460241"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:43.461165"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dann.conn@koepp.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dann.conn@koepp.net"], ["encrypted_password", "$2a$04$XDuUSaNRhIIfkNGc8uBphuAPw9dpAjYS4voL2zS95ch0fhKYVG1uC"], ["confirmed_at", "2019-09-02 05:36:43.466413"], ["name", "Colin Allcars"], ["email", "dann.conn@koepp.net"], ["created_at", "2019-09-02 05:36:43.467209"], ["updated_at", "2019-09-02 05:36:43.467209"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Gp3Jj-zvsxCIlx3JUVQ01w\":{\"token\":\"$2a$10$y.Mzz7/rWfS8z6KpyVRhbu0AQthS9CJ/SFhucRAMUgv/0IrTmUk2q\",\"expiry\":1568612203,\"updated_at\":\"2019-09-02 05:36:43 UTC\"}}"], ["updated_at", "2019-09-02 05:36:43.517765"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dann.conn@koepp.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$m3RM//EIIhS5/jqRepH9GuYKAnoQfoiApEO6Op1QrU3l3wiBuXwye"], ["updated_at", "2019-09-02 05:36:43.580919"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "michale@smitham.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "michale@smitham.org"], ["encrypted_password", "$2a$04$zEjM3mPhuKmVHhI1V9VbH.FbJWPbddkh2B2ic9v2f3qNiKAuwwRGa"], ["confirmed_at", "2019-09-02 05:36:43.586248"], ["name", "Sally Forth"], ["email", "michale@smitham.org"], ["created_at", "2019-09-02 05:36:43.586986"], ["updated_at", "2019-09-02 05:36:43.586986"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "johnson_fritsch@dietrichkunde.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "johnson_fritsch@dietrichkunde.com"], ["encrypted_password", "$2a$04$4ujXWnc3ZGsvV1AqPCcrcunzhCmVqMltms6AP4ojf5mj1VvpXB8fW"], ["confirmed_at", "2019-09-02 05:36:47.006485"], ["name", "Rick Shaw"], ["email", "johnson_fritsch@dietrichkunde.com"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:47.008737"], ["updated_at", "2019-09-02 05:36:47.008737"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"johnson_fritsch@dietrichkunde.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "johnson_fritsch@dietrichkunde.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"eDF4uYV0B7r91aGmAhS1Xw\":{\"token\":\"$2a$12$GyU1vfSplKA7Tb4AB3c./ul/bgkqdjmZOj4c4.NTLNcBDAD.N799W\",\"expiry\":1568612207,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:47.035-05:00\"}}"], ["updated_at", "2019-09-02 05:36:47.217566"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 05:36:47.221078"], ["last_sign_in_at", "2019-09-02 05:36:47.221078"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 05:36:47.221381"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 198ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cameron@kerlukehartmann.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cameron@kerlukehartmann.net"], ["encrypted_password", "$2a$04$PRNZ3S1qTDYjEkrlzIov8um7fb0mW86hxHGgrOoMt9L6yRmqRcIMS"], ["confirmed_at", "2019-09-02 05:36:47.228229"], ["name", "Polly Dent"], ["email", "cameron@kerlukehartmann.net"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:47.228902"], ["updated_at", "2019-09-02 05:36:47.228902"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"cameron@kerlukehartmann.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cameron@kerlukehartmann.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-09-02 05:36:47.232945"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ina@mills.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ina@mills.com"], ["encrypted_password", "$2a$04$rxSiLBu1d8CJdQZ3ryvTzuX6UC5z7l6c8eKvyIKvBHplCuMx9ICCu"], ["confirmation_token", "zwzPxc3rxEFfN2Ru43D_"], ["confirmation_sent_at", "2019-09-02 05:36:47.238843"], ["name", "Al Kaholic"], ["email", "ina@mills.com"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:47.238751"], ["updated_at", "2019-09-02 05:36:47.238751"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ina@mills.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ina@mills.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elliott.cain@raumurazik.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elliott.cain@raumurazik.info"], ["encrypted_password", "$2a$04$U3txm/yG/NiapepCB2spoujkraZ2Jy4rZE/mjcAODHevRm7AFid0C"], ["confirmed_at", "2019-09-02 05:36:47.245185"], ["locked_at", "2019-09-02 05:36:47.245217"], ["name", "Morey Bund"], ["email", "elliott.cain@raumurazik.info"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:47.247213"], ["updated_at", "2019-09-02 05:36:47.247213"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"elliott.cain@raumurazik.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elliott.cain@raumurazik.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "billie@marvin.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "billie@marvin.io"], ["encrypted_password", "$2a$04$f8QuJ9KEWL0QpKxmlUFaqevufwpf2ackqUjQSBf1n5j.UzSHkh66W"], ["confirmed_at", "2019-09-02 05:36:47.256228"], ["name", "Sue Shi"], ["email", "billie@marvin.io"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:47.257569"], ["updated_at", "2019-09-02 05:36:47.257569"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"billie@marvin.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "billie@marvin.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vincent.lindgren@waelchi.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "vincent.lindgren@waelchi.name"], ["encrypted_password", "$2a$04$Mast0pveWwGx6kkzgvBlZ.It2kZuyyYd/Gs/yWrTsxNWNGqsoSLfq"], ["confirmed_at", "2019-09-02 05:36:47.267470"], ["name", "Penny Whistler"], ["email", "vincent.lindgren@waelchi.name"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:47.269063"], ["updated_at", "2019-09-02 05:36:47.269063"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"vN605Yt-uS2vBMw7p_0DYg\":{\"token\":\"$2a$12$t/6LuDQFF0M7P5k5epEtTeF8jCfQkIBUHKzmfPnG4mHSxYkCxh7ua\",\"expiry\":1568612207,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:47.270-05:00\"}}"], ["updated_at", "2019-09-02 05:36:47.470486"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "vincent.lindgren@waelchi.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-09-02 05:36:47.655218"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 184ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "velia.casper@frami.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "velia.casper@frami.com"], ["encrypted_password", "$2a$04$77Xkvb1Db7gTQAwQvZ/wSeztdRnQlMW3XZsEvxhDXikLnbwAoerBa"], ["confirmed_at", "2019-09-02 05:36:47.662571"], ["name", "Braxton Hicks"], ["email", "velia.casper@frami.com"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:47.663415"], ["updated_at", "2019-09-02 05:36:47.663415"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "noble.gleason@tromp.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "noble.gleason@tromp.io"], ["encrypted_password", "$2a$04$ENPLduz3FkJwm4YWhbwx9OMXW8GqutPH2PULhmj7bh1I/37hBHYs6"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:47.667631"], ["name", "Rufus Leaking"], ["email", "noble.gleason@tromp.io"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:47.668331"], ["updated_at", "2019-09-02 05:36:47.668331"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dFYWnXwP0DgdrsMnjlQ3GA\":{\"token\":\"$2a$12$kibsWsgsxVwhxipeCgn8l.7bIHhWDvQUzwn9NpUrWfPtQcEC5cYn2\",\"expiry\":1568612207,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:47.670-05:00\"}}"], ["updated_at", "2019-09-02 05:36:47.861898"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "noble.gleason@tromp.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$cXLLU.uLGTC2JOUc6PfhOeH1b.aq9jArOm8Xq2tMRjufCiC47M0ry"], ["updated_at", "2019-09-02 05:36:48.071915"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:48.072952"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 210ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sang@fay.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sang@fay.biz"], ["encrypted_password", "$2a$04$ofexjvzt9HtuzQcvFCWa6.nzkREydeDalId1NxMl6M8tm7tFlb/oG"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:48.077870"], ["name", "Joy Kil"], ["email", "sang@fay.biz"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:48.078655"], ["updated_at", "2019-09-02 05:36:48.078655"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"UzcwgZlf5CMw3U7WlrcCEw\":{\"token\":\"$2a$12$GmblA3O0zLwqqhjIZKqM8eZ/FoiazxxAkHYFAFvyV0fEt5M/oVhV2\",\"expiry\":1568612208,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:48.079-05:00\"}}"], ["updated_at", "2019-09-02 05:36:48.255468"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sang@fay.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$jitpOKCExong07HNAeo9iu.z9gnt.kpwZZMKSnQED.DzqTwSL95ki"], ["updated_at", "2019-09-02 05:36:48.425255"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:48.426231"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 170ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tynisha.towne@jerde.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tynisha.towne@jerde.io"], ["encrypted_password", "$2a$04$4MaAzCtr1dtLDjCo3WFnrOlR6TfIue1QuXqj.LwS9j03NzkgDETTi"], ["confirmed_at", "2019-09-02 05:36:48.432362"], ["name", "Kristie Hannity"], ["email", "tynisha.towne@jerde.io"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:48.433071"], ["updated_at", "2019-09-02 05:36:48.433071"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"8w5Pyx2MprAkuEE-669WCQ\":{\"token\":\"$2a$12$KY9RNhZ.I2KX5BaOiER7DOeq1w.6yM7.F3zPajTP9BIZZ4TAH7qdi\",\"expiry\":1568612208,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:48.433-05:00\"}}"], ["updated_at", "2019-09-02 05:36:48.626648"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tynisha.towne@jerde.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 184ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "damon.kuphal@schinner.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "damon.kuphal@schinner.io"], ["encrypted_password", "$2a$04$.wCfG0l2gJpNOEdAv45i9OFENnaKEEu6CTHmlHa1DrMSxQTDXNAy2"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:48.817047"], ["name", "Marsha Dimes"], ["email", "damon.kuphal@schinner.io"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:48.817921"], ["updated_at", "2019-09-02 05:36:48.817921"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"sMvXDyeNPwcCYwJLlJdwHw\":{\"token\":\"$2a$12$jpOOqaNr6YBEhrRRFOMMCOcLzV.ZjL1ExFPY.zF9AfoD5x1XG05a2\",\"expiry\":1568612208,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:48.818-05:00\"}}"], ["updated_at", "2019-09-02 05:36:48.999915"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "damon.kuphal@schinner.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$NBlup/ssurFU7acgTN3Jnus5QIG9UnskTPwXgGKs2PCl6Njq1R2E6"], ["updated_at", "2019-09-02 05:36:49.172618"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:49.173607"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 173ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "warren@rohan.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "warren@rohan.co"], ["encrypted_password", "$2a$04$3qh6rhhbVOtp/dCBwGYd0.rbmrbVfdkUbJ8f/d2nPOBRMlLycBhC."], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:49.178575"], ["name", "Anita Job"], ["email", "warren@rohan.co"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:49.179342"], ["updated_at", "2019-09-02 05:36:49.179342"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jVWgxmAeRsi1HYLsSKatWQ\":{\"token\":\"$2a$12$jbtkh66rR0fk1bXDllrRuevSo9uCzU2AvRb4Z3NvVMLWvrE0fwJqC\",\"expiry\":1568612209,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:49.180-05:00\"}}"], ["updated_at", "2019-09-02 05:36:49.358059"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "warren@rohan.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$7h5spDIDAMJA0AXtcLFsHeizY0GW5FxWaCUXCgevxaMZW0CXWuSSm"], ["updated_at", "2019-09-02 05:36:49.544783"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:49.546035"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 188ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mohammed_brown@jaskolski.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mohammed_brown@jaskolski.name"], ["encrypted_password", "$2a$04$AfV7.5x.LKzZVH.mL1kB1uGlosGrI/n6sJibJLJ/UWHgnvhZrOltS"], ["confirmed_at", "2019-09-02 05:36:49.551919"], ["name", "Elmer Sklue"], ["email", "mohammed_brown@jaskolski.name"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:49.552790"], ["updated_at", "2019-09-02 05:36:49.552790"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"o2igsGAp3_N4xJHRztxSag\":{\"token\":\"$2a$12$pMNI8PJ2xSvep3JWL0arAOkjfL2x20goeXZ5zd29KNxjWHDCmo9nO\",\"expiry\":1568612209,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:49.554-05:00\"}}"], ["updated_at", "2019-09-02 05:36:49.734561"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "mohammed_brown@jaskolski.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$UIGm0cfqRI9Op9fCUs1Tjug5MLl4lKjq1U3rI8E9KLHfQLAO/fsEi"], ["updated_at", "2019-09-02 05:36:49.909261"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 175ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deshawn@sauer.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "deshawn@sauer.co"], ["encrypted_password", "$2a$04$0qPnBeMXLO6xuUUsKgW.YuPjvH1rrLyyz4LEtlY9OaFNRwcDWuxiO"], ["confirmed_at", "2019-09-02 05:36:49.915068"], ["name", "Lily Pond"], ["email", "deshawn@sauer.co"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:49.915872"], ["updated_at", "2019-09-02 05:36:49.915872"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "quiana@marks.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "quiana@marks.io"], ["encrypted_password", "$2a$04$vzbQ4cN8/.NhdUTdv/tkWOnc.8Q0CFEEXGDc2W6/7UfY8bvO2JvRm"], ["confirmed_at", "2019-09-02 05:36:52.952359"], ["name", "Hare Brain"], ["email", "quiana@marks.io"], ["created_at", "2019-09-02 05:36:52.954203"], ["updated_at", "2019-09-02 05:36:52.954203"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"quiana@marks.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "quiana@marks.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"xcDKe6Ekor2fw9RT06Sx4g\":{\"token\":\"$2a$10$gdtohM2Eot0eJPVdXz04Eup5mMZqlZ9nH6H65yIrkHUb9GH/i4oTK\",\"expiry\":1568612213,\"updated_at\":\"2019-09-02 05:36:52 UTC\"}}"], ["updated_at", "2019-09-02 05:36:53.023631"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 05:36:53.027455"], ["last_sign_in_at", "2019-09-02 05:36:53.027455"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 05:36:53.027797"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 62ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arlie_gislason@weimann.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "arlie_gislason@weimann.net"], ["encrypted_password", "$2a$04$.8QyFJXALeqks5j1kuvnVuI2vrTYxdpsbr3H/a2/68dsnLw0lyDYa"], ["confirmed_at", "2019-09-02 05:36:53.035377"], ["name", "Jimmy DeLocke"], ["email", "arlie_gislason@weimann.net"], ["created_at", "2019-09-02 05:36:53.036245"], ["updated_at", "2019-09-02 05:36:53.036245"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"arlie_gislason@weimann.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "arlie_gislason@weimann.net"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kory@prosacco.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kory@prosacco.biz"], ["encrypted_password", "$2a$04$HwLUGBTQSGxH5lBrCJjXaOyZ4gPlvtgL3DPzmUX/8bZqcPz3gQq3q"], ["confirmation_token", "sdkFoCcZqeBSBGXxxxQe"], ["confirmation_sent_at", "2019-09-02 05:36:53.046253"], ["name", "Otto Carr"], ["email", "kory@prosacco.biz"], ["created_at", "2019-09-02 05:36:53.046158"], ["updated_at", "2019-09-02 05:36:53.046158"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kory@prosacco.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kory@prosacco.biz"], ["LIMIT", 1]] Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clay@labadiebosco.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "clay@labadiebosco.com"], ["encrypted_password", "$2a$04$WsI0dszVenYbBLnI6f/XC.IKRw5l.5mY3isxcm2O09I0ONa8IQDGe"], ["confirmed_at", "2019-09-02 05:36:53.066566"], ["locked_at", "2019-09-02 05:36:53.066590"], ["name", "Cole Durkee"], ["email", "clay@labadiebosco.com"], ["created_at", "2019-09-02 05:36:53.067867"], ["updated_at", "2019-09-02 05:36:53.067867"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"clay@labadiebosco.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "clay@labadiebosco.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sammy_schuster@gleichner.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sammy_schuster@gleichner.com"], ["encrypted_password", "$2a$04$7DyrbObBam6RRb6pc9JXPeqagMIS4vxImTVm.AlqtyCxlSy1NgV/O"], ["confirmed_at", "2019-09-02 05:36:53.076331"], ["name", "Hy Ball"], ["email", "sammy_schuster@gleichner.com"], ["created_at", "2019-09-02 05:36:53.077266"], ["updated_at", "2019-09-02 05:36:53.077266"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sammy_schuster@gleichner.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sammy_schuster@gleichner.com"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alphonso_ohara@beahan.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alphonso_ohara@beahan.co"], ["encrypted_password", "$2a$04$NxqFjZSyk89pf6P1skC/gOGLpBu42iQ8U..cUP3qiVddwaThDsaBq"], ["confirmed_at", "2019-09-02 05:36:53.087487"], ["name", "Walt Smedley"], ["email", "alphonso_ohara@beahan.co"], ["created_at", "2019-09-02 05:36:53.089256"], ["updated_at", "2019-09-02 05:36:53.089256"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ux-U8xBCilksS5SytXdQ-g\":{\"token\":\"$2a$10$OwyuUrQ540rPnFDtY9qskeVrfrDAJnnv7B/mlYE6WWnE9U9MDJkH.\",\"expiry\":1568612213,\"updated_at\":\"2019-09-02 05:36:53 UTC\"}}"], ["updated_at", "2019-09-02 05:36:53.147358"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "alphonso_ohara@beahan.co"], ["LIMIT", 1]]  (0.2ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 05:36:53.196983"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elisha@aufderhar.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "elisha@aufderhar.net"], ["encrypted_password", "$2a$04$.Ua5wa/JUePt1tMG2SBXmeorY32N4pWtKhOljH5jrBgkjH/NqiUnO"], ["confirmed_at", "2019-09-02 05:36:53.204171"], ["name", "Rhea Pollster"], ["email", "elisha@aufderhar.net"], ["created_at", "2019-09-02 05:36:53.204961"], ["updated_at", "2019-09-02 05:36:53.204961"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "socorro_zemlak@hettinger.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "socorro_zemlak@hettinger.co"], ["encrypted_password", "$2a$04$8glEElo7KjM.rt06x5vt5ecQCV/wcbC3xFIBhnRcqFBwygItkIAdu"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:53.209026"], ["name", "Sue Yu"], ["email", "socorro_zemlak@hettinger.co"], ["created_at", "2019-09-02 05:36:53.209720"], ["updated_at", "2019-09-02 05:36:53.209720"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2NUsePnKr9pXifOavmOILw\":{\"token\":\"$2a$10$14fsS7PtRgy.To7i4tFYouGcYu36CZEPpFIB0Tx3nXemb/r2bZvVC\",\"expiry\":1568612213,\"updated_at\":\"2019-09-02 05:36:53 UTC\"}}"], ["updated_at", "2019-09-02 05:36:53.261245"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "socorro_zemlak@hettinger.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$9REQTwSf8fvhceiA3y4JiuyZoESzgEb6FRBPnjDKxhuE4FnKjQx1u"], ["updated_at", "2019-09-02 05:36:53.313209"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:53.314215"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hosea.macejkovic@hettingerturcotte.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hosea.macejkovic@hettingerturcotte.org"], ["encrypted_password", "$2a$04$sj8D0TAfoZ6LWC9zSuGtaeYE/7NrlzOd3iYYzV1qFOs7pnc7zQhGi"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:53.319825"], ["name", "Tish Hughes"], ["email", "hosea.macejkovic@hettingerturcotte.org"], ["created_at", "2019-09-02 05:36:53.320637"], ["updated_at", "2019-09-02 05:36:53.320637"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"8sQqRkMJOxgoMAGEAcfyZA\":{\"token\":\"$2a$10$BrSRBjKvstBn6/bij6OkduwT0Xr5TKcLe0qKcJ9ixFf7kKhFPJRhq\",\"expiry\":1568612213,\"updated_at\":\"2019-09-02 05:36:53 UTC\"}}"], ["updated_at", "2019-09-02 05:36:53.367030"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "hosea.macejkovic@hettingerturcotte.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$MZqxmpnPJj/ilOsEYVOhAuA4C0qsu.NQVJ7.JstfzH/VJrQsVKBam"], ["updated_at", "2019-09-02 05:36:53.416903"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:53.417873"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shelby.ruecker@hermiston.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shelby.ruecker@hermiston.com"], ["encrypted_password", "$2a$04$jf9LD5L3nGO8gDdah7TnIO14LomiPpQ7HafMY0HqgmlXuLRZTqS9G"], ["confirmed_at", "2019-09-02 05:36:53.422690"], ["name", "Tommy Gunn"], ["email", "shelby.ruecker@hermiston.com"], ["created_at", "2019-09-02 05:36:53.423442"], ["updated_at", "2019-09-02 05:36:53.423442"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BjnM5j8E5Da3QuIVPNwXLw\":{\"token\":\"$2a$10$.l3110TZ30B/hkroJRCx.eqaTLqOVKZrbIbgP90W5aXHQWNqSX0FW\",\"expiry\":1568612213,\"updated_at\":\"2019-09-02 05:36:53 UTC\"}}"], ["updated_at", "2019-09-02 05:36:53.470342"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "shelby.ruecker@hermiston.com"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brittany@townewiza.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "brittany@townewiza.co"], ["encrypted_password", "$2a$04$KQHlptHYePjFmvndDBMBGeDD/RvLx.eDNNHDZHmHGPzPteMa2qcAe"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:53.526482"], ["name", "Jacques Strap"], ["email", "brittany@townewiza.co"], ["created_at", "2019-09-02 05:36:53.527180"], ["updated_at", "2019-09-02 05:36:53.527180"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OfsprsoTkUMKMR-G8l5BrQ\":{\"token\":\"$2a$10$RYW1X5vVIpb1bb6jGAdsa.i1IXFi/0BXfgvI3XB6nGkr7r0oFboA.\",\"expiry\":1568612213,\"updated_at\":\"2019-09-02 05:36:53 UTC\"}}"], ["updated_at", "2019-09-02 05:36:53.574065"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "brittany@townewiza.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$DFxpvsk.UMrQHA4vP.En1eLJe1/nYGvQ9KsuPPbJENQsOkdl2C/AK"], ["updated_at", "2019-09-02 05:36:53.623986"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:53.624990"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "charley_kovacek@bernhard.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "charley_kovacek@bernhard.io"], ["encrypted_password", "$2a$04$CdE1bpBicTB5ZWikSiezYeawiCkmNRAEMDDaQXuok2vuIj/coLVUG"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-02 05:36:53.629498"], ["name", "Dee Major"], ["email", "charley_kovacek@bernhard.io"], ["created_at", "2019-09-02 05:36:53.630332"], ["updated_at", "2019-09-02 05:36:53.630332"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Y8-BK8_s8IiG90rdoELn0g\":{\"token\":\"$2a$10$tnHn/PKmoSGhJPfCZOlJtONDBf1.eIdFkZM5ilCrOdUg27V.MCpTC\",\"expiry\":1568612213,\"updated_at\":\"2019-09-02 05:36:53 UTC\"}}"], ["updated_at", "2019-09-02 05:36:53.680349"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "charley_kovacek@bernhard.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$3Zo16zvTS1tvB1vm/0lD0Ofc7bcN2xCbLgyF0WvzV7vL2hSK7XeJ6"], ["updated_at", "2019-09-02 05:36:53.729475"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-02 05:36:53.730443"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gaylord_stroman@okeefe.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gaylord_stroman@okeefe.biz"], ["encrypted_password", "$2a$04$Wnh7Il/AVRlVQFNKabJZEORHI/desl8SPzJlVBf.izeKy02XPkZo2"], ["confirmed_at", "2019-09-02 05:36:53.735382"], ["name", "Annie Matter"], ["email", "gaylord_stroman@okeefe.biz"], ["created_at", "2019-09-02 05:36:53.736159"], ["updated_at", "2019-09-02 05:36:53.736159"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"AMxqtKHNM_U_0A0SrpnzaQ\":{\"token\":\"$2a$10$xlaVcYN4HTX.mdOIv0gJrez1K1sAA6KMJlw4eixkxBv7STTZvUUQe\",\"expiry\":1568612213,\"updated_at\":\"2019-09-02 05:36:53 UTC\"}}"], ["updated_at", "2019-09-02 05:36:53.785415"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gaylord_stroman@okeefe.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$tPxOQmZImN3FVxCSqC5XpudMyYDb9mHdTpZZTFVRd5LbKP2B.CSCW"], ["updated_at", "2019-09-02 05:36:53.835439"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "francisco_graham@brakus.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "francisco_graham@brakus.net"], ["encrypted_password", "$2a$04$e6jnmIs5g3xJm92akNXJ2e4IXM4PdRKG9dzFEpeNBdOM1DURaCkYO"], ["confirmed_at", "2019-09-02 05:36:53.841038"], ["name", "Ilene Dover"], ["email", "francisco_graham@brakus.net"], ["created_at", "2019-09-02 05:36:53.841801"], ["updated_at", "2019-09-02 05:36:53.841801"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vanetta@wuckertpowlowski.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "vanetta@wuckertpowlowski.io"], ["encrypted_password", "$2a$04$zd70r/8VBk2oaQ2WbGZSZejIokPyt8bWaXEmwl8V36YjY5Bny9/3G"], ["confirmed_at", "2019-09-02 05:36:57.319928"], ["name", "Lance Lyde"], ["email", "vanetta@wuckertpowlowski.io"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:57.322786"], ["updated_at", "2019-09-02 05:36:57.322786"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"vanetta@wuckertpowlowski.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "vanetta@wuckertpowlowski.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CPqHg4PdXKrit_zUem_81Q\":{\"token\":\"$2a$12$MwczPZ0KvyJaxg4m3/l3d.PCuFHdpNgkkJcKEpNgxKdq4tbXtorUW\",\"expiry\":1568612217,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:57.348-05:00\"}}"], ["updated_at", "2019-09-02 05:36:57.527368"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 05:36:57.530471"], ["last_sign_in_at", "2019-09-02 05:36:57.530471"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 05:36:57.530723"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 193ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "maegan@stamm.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "maegan@stamm.info"], ["encrypted_password", "$2a$04$DckQ.hr3E7.H42/J/.yCluCHVyxzSSQpnPRQramx8GxlyPCG566YK"], ["confirmed_at", "2019-09-02 05:36:57.537682"], ["name", "Rich Mann"], ["email", "maegan@stamm.info"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:57.538404"], ["updated_at", "2019-09-02 05:36:57.538404"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"maegan@stamm.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "maegan@stamm.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-09-02 05:36:57.542738"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "aisha.glover@fayboyle.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "aisha.glover@fayboyle.com"], ["encrypted_password", "$2a$04$XKToOmSfvrS/xm6Bqb.XreTboudjv2DOTroPeFrfd3j1nGe5M8/HC"], ["confirmation_token", "aTJyxNcGbzWQEPsafaPi"], ["confirmation_sent_at", "2019-09-02 05:36:57.547044"], ["name", "Daisy Chain"], ["email", "aisha.glover@fayboyle.com"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:57.546967"], ["updated_at", "2019-09-02 05:36:57.546967"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"aisha.glover@fayboyle.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "aisha.glover@fayboyle.com"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gil.sauer@osinski.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gil.sauer@osinski.info"], ["encrypted_password", "$2a$04$2fIcrpjp6RkfNGVPMrMEJuAGzrFBk3GXqyKtSRKWCKtNfGKmM7xvC"], ["confirmed_at", "2019-09-02 05:36:57.553843"], ["locked_at", "2019-09-02 05:36:57.553854"], ["name", "Andy Friese"], ["email", "gil.sauer@osinski.info"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:57.554628"], ["updated_at", "2019-09-02 05:36:57.554628"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"gil.sauer@osinski.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gil.sauer@osinski.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeana@runolfon.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jeana@runolfon.name"], ["encrypted_password", "$2a$04$GxYy9DKy2xE/9fZbgb/bHuWddbFGNJI34HWuOFWBVfJ483.EtmbRW"], ["confirmed_at", "2019-09-02 05:36:57.561747"], ["name", "Lucy Fer"], ["email", "jeana@runolfon.name"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:57.562885"], ["updated_at", "2019-09-02 05:36:57.562885"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jeana@runolfon.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jeana@runolfon.name"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leon.lynch@ryan.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "leon.lynch@ryan.io"], ["encrypted_password", "$2a$04$rbFM0pt9ePYXFN1/GIuV3.L4ixjY7ePRXB8NjuWYFM3ZJIiP2ZhI2"], ["confirmed_at", "2019-09-02 05:36:57.574428"], ["name", "Les Payne"], ["email", "leon.lynch@ryan.io"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:57.575915"], ["updated_at", "2019-09-02 05:36:57.575915"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"arm75jjYDFtDPhF9jFPjQw\":{\"token\":\"$2a$12$f7Zqz/14AKFo.aqm0P6aAOEajsBN0G/o6moUXZmpxZkCjPpSE1Phm\",\"expiry\":1568612217,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:57.577-05:00\"}}"], ["updated_at", "2019-09-02 05:36:57.765111"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "leon.lynch@ryan.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-09-02 05:36:57.941971"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 176ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.1ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wesley@little.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "wesley@little.net"], ["encrypted_password", "$2a$04$JHNNmxK7tS4JWnDdTU0ypeWAlnUeFFmGEFlR3rFCA3miO6zEIsvku"], ["confirmed_at", "2019-09-02 05:36:57.949239"], ["name", "Doug Witherspoon"], ["email", "wesley@little.net"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:57.949979"], ["updated_at", "2019-09-02 05:36:57.949979"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "edelmira_stamm@schuster.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "edelmira_stamm@schuster.com"], ["encrypted_password", "$2a$04$AEX9jkT7F205AadPH7JQV.AuJu8fGM7W.FrARbxGrA42X/zzWNEei"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:36:57.953312"], ["name", "Eve Ning"], ["email", "edelmira_stamm@schuster.com"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:57.953871"], ["updated_at", "2019-09-02 05:36:57.953871"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lTxCVuvTwfnwruZrBjcqQQ\":{\"token\":\"$2a$12$LBh/Am1tkjFs6LCH5X81neiEsUQAZUMzHR33Mopqiy0RCkF82h92K\",\"expiry\":1568612217,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:57.955-05:00\"}}"], ["updated_at", "2019-09-02 05:36:58.135804"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "edelmira_stamm@schuster.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$yNOGV3boXmn/nt7LzlcajOuBBT/IYShhM28Xv4kjVeu2HT5caGisS"], ["updated_at", "2019-09-02 05:36:58.308995"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:36:58.309941"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 174ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alejandro_braun@schuppeberge.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alejandro_braun@schuppeberge.info"], ["encrypted_password", "$2a$04$8Grs3nMW8qESTYbhoAwQ3Ox/PRultyGp2k6rJ4PzX7.Up.vfmozRK"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:36:58.316613"], ["name", "Molly Kuehl"], ["email", "alejandro_braun@schuppeberge.info"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:58.317706"], ["updated_at", "2019-09-02 05:36:58.317706"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CNxtgx_1w4vxTMhH-gvMjA\":{\"token\":\"$2a$12$I9lCe9npQqG6HImr7MTpOOUob8vMp9mpRIrJRn9.NVd4J4T4Qm.4O\",\"expiry\":1568612218,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:58.319-05:00\"}}"], ["updated_at", "2019-09-02 05:36:58.499213"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "alejandro_braun@schuppeberge.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$5sJFZA2ypsOWpFoIUf1UpuUYExv7k7zGwJpkuqPYH45P7rpFJuRg6"], ["updated_at", "2019-09-02 05:36:58.672409"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:36:58.673340"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 174ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tyler@sipes.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tyler@sipes.org"], ["encrypted_password", "$2a$04$W2YCEHr42JggCFfcOCVFwOlfE9rgc/ee7PY5bv6bbkbWYFSmMc1pC"], ["confirmed_at", "2019-09-02 05:36:58.679491"], ["name", "Rusty Dorr"], ["email", "tyler@sipes.org"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:58.680251"], ["updated_at", "2019-09-02 05:36:58.680251"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Por1k7Roajytk1OSN2fAXw\":{\"token\":\"$2a$12$9C55fhkxfAsLxh5u9RV1/ex4iMbNKO59Ca40JJ9ILx91Jiz4J6Bza\",\"expiry\":1568612218,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:58.681-05:00\"}}"], ["updated_at", "2019-09-02 05:36:58.856573"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tyler@sipes.org"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 171ms (Views: 0.2ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gregorio_wilderman@gloverreichert.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gregorio_wilderman@gloverreichert.name"], ["encrypted_password", "$2a$04$/nHyFFq3KILwc299z5/.8eQ6.TQXHe52s94FHeLXvRzlGMAesLUeG"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:36:59.032720"], ["name", "Rex Easley"], ["email", "gregorio_wilderman@gloverreichert.name"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:59.033438"], ["updated_at", "2019-09-02 05:36:59.033438"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"uUkjaF3yfcPbEhXv0eIiAQ\":{\"token\":\"$2a$12$RU2Gy5YshNR3YqmQ6EBBXutwoI0QlwFNtwRxp.ijE20xhjygrecPG\",\"expiry\":1568612219,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:59.034-05:00\"}}"], ["updated_at", "2019-09-02 05:36:59.214303"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gregorio_wilderman@gloverreichert.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Y2ckEJ45alVMxo46Mt7oYOVSTsYknFPuOhSskQCK/9HgHa3FmMZTa"], ["updated_at", "2019-09-02 05:36:59.387713"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:36:59.388671"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 174ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stacia@kertzmannauer.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "stacia@kertzmannauer.name"], ["encrypted_password", "$2a$04$j5oZJv.JtDsEEGx9PuOdLuLQgptNulLlCACDuvhzsXOzyedU5NKIq"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:36:59.405865"], ["name", "Marshall Law"], ["email", "stacia@kertzmannauer.name"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:59.406790"], ["updated_at", "2019-09-02 05:36:59.406790"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"AHQW89OB88MjHQoU1i1Pog\":{\"token\":\"$2a$12$usZkRXUQO3.UeuRTlWbrWONXSAyBL1Kt0FNHBfgZjKBywFYcO3m3K\",\"expiry\":1568612219,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:59.407-05:00\"}}"], ["updated_at", "2019-09-02 05:36:59.589803"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "stacia@kertzmannauer.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$87BX2RMObRf9eDYS.Mjb1OZezQL650TqCylhdty3VMpyvq4OF8MH2"], ["updated_at", "2019-09-02 05:36:59.764000"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:36:59.764928"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 175ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deandre_bartoletti@runte.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "deandre_bartoletti@runte.org"], ["encrypted_password", "$2a$04$FcQv/acKpWTl2.HUYr347eUTqAqlW/W1Dm7/bvcbS80RK66X1ln/2"], ["confirmed_at", "2019-09-02 05:36:59.771307"], ["name", "Owen Cash"], ["email", "deandre_bartoletti@runte.org"], ["tokens", "{}"], ["created_at", "2019-09-02 05:36:59.772110"], ["updated_at", "2019-09-02 05:36:59.772110"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fEWpj00n4tzyexEaYt9ERg\":{\"token\":\"$2a$12$8OjtrVfMm82xL65BuWd76.q1qmaFmKhdyePPiURZAITV1Su4Uk.Ay\",\"expiry\":1568612219,\"last_token\":null,\"updated_at\":\"2019-09-02T00:36:59.773-05:00\"}}"], ["updated_at", "2019-09-02 05:36:59.947895"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:36:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "deandre_bartoletti@runte.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$qiCieAVEoSQ9oxtxuaYvLey8Aats6so/868vJjTHlawUL601e3duy"], ["updated_at", "2019-09-02 05:37:00.121001"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 174ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "thersa@conn.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "thersa@conn.co"], ["encrypted_password", "$2a$04$0zvrOI3.vwtTGBGM.6v5uu9HjUae98p6c4eYsjz8W7xx3t0/GoYia"], ["confirmed_at", "2019-09-02 05:37:00.126766"], ["name", "Rita Booke"], ["email", "thersa@conn.co"], ["tokens", "{}"], ["created_at", "2019-09-02 05:37:00.127506"], ["updated_at", "2019-09-02 05:37:00.127506"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stacy@morar.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "stacy@morar.net"], ["encrypted_password", "$2a$04$B.lipag.TPz0blVqMYsHe.HZefA.5h0NO1TnfqBllh9DuXQA4hGdS"], ["confirmed_at", "2019-09-02 05:37:03.206281"], ["name", "Xavier Breath"], ["email", "stacy@morar.net"], ["created_at", "2019-09-02 05:37:03.208283"], ["updated_at", "2019-09-02 05:37:03.208283"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"stacy@morar.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stacy@morar.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0SAJ8M1AFxPJF3JQVbfiUQ\":{\"token\":\"$2a$10$mZWHodJIZX36vPaSBXJmPuznB1gL7sfqnRQbhsDo27h1Iy/qxPG.G\",\"expiry\":1568612223,\"updated_at\":\"2019-09-02 05:37:03 UTC\"}}"], ["updated_at", "2019-09-02 05:37:03.291292"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 05:37:03.294466"], ["last_sign_in_at", "2019-09-02 05:37:03.294466"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 05:37:03.294792"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 74ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marvella@keelingwalter.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marvella@keelingwalter.info"], ["encrypted_password", "$2a$04$yAnQ95VPUzTH7r63u0gSR.HiCdryiZM2SIsqFkDZUIAF4skV7/Tae"], ["confirmed_at", "2019-09-02 05:37:03.303004"], ["name", "Ayma Moron"], ["email", "marvella@keelingwalter.info"], ["created_at", "2019-09-02 05:37:03.303902"], ["updated_at", "2019-09-02 05:37:03.303902"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"marvella@keelingwalter.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marvella@keelingwalter.info"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ocie@wyman.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ocie@wyman.com"], ["encrypted_password", "$2a$04$zgRUxVAkRUgP7RuIt/0MAuuU3f3YeWkj0s4PHlNvcwsg9CVpicpcm"], ["confirmation_token", "m2yyJufGxD6X8p3NGC7u"], ["confirmation_sent_at", "2019-09-02 05:37:03.313483"], ["name", "Darryl Likt"], ["email", "ocie@wyman.com"], ["created_at", "2019-09-02 05:37:03.313394"], ["updated_at", "2019-09-02 05:37:03.313394"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ocie@wyman.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ocie@wyman.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alec.roberts@armstrong.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alec.roberts@armstrong.org"], ["encrypted_password", "$2a$04$QeukmzfRDD40Yrk8h3Ohb.h/O2Q7AmnBPTt2w9FVvp3Cg2PRV0ewO"], ["confirmed_at", "2019-09-02 05:37:03.319819"], ["locked_at", "2019-09-02 05:37:03.319829"], ["name", "Myra Maines"], ["email", "alec.roberts@armstrong.org"], ["created_at", "2019-09-02 05:37:03.320508"], ["updated_at", "2019-09-02 05:37:03.320508"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"alec.roberts@armstrong.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alec.roberts@armstrong.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kelley@schowalter.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kelley@schowalter.co"], ["encrypted_password", "$2a$04$65IT.fl6g9a1HK8Oam6dj.ohbd464eWTqgMv2NKCJCpzDUEicCDPi"], ["confirmed_at", "2019-09-02 05:37:03.326647"], ["name", "Skip Dover"], ["email", "kelley@schowalter.co"], ["created_at", "2019-09-02 05:37:03.327354"], ["updated_at", "2019-09-02 05:37:03.327354"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kelley@schowalter.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kelley@schowalter.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "denver@towne.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "denver@towne.co"], ["encrypted_password", "$2a$04$Q3Yq5ylFof6FEKXKZdQcdu0U/jTg52dWE47hU9bbQaPFC6P9XZrYS"], ["confirmed_at", "2019-09-02 05:37:03.335412"], ["name", "Bill Ng"], ["email", "denver@towne.co"], ["created_at", "2019-09-02 05:37:03.336612"], ["updated_at", "2019-09-02 05:37:03.336612"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BsqS_TV7CcRWuZYfXUPWeA\":{\"token\":\"$2a$10$LmH4wLflC39bhJAyOYpYu.uqIEATvpIGrzfMUY.oIACBBytDrQbyG\",\"expiry\":1568612223,\"updated_at\":\"2019-09-02 05:37:03 UTC\"}}"], ["updated_at", "2019-09-02 05:37:03.391619"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "denver@towne.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 05:37:03.439376"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "thu@heaney.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "thu@heaney.biz"], ["encrypted_password", "$2a$04$XPlM/xL13PArJmlI0eSSPuALfwo.IAdEe1r7I24h5G8HDQl4K/5Yy"], ["confirmed_at", "2019-09-02 05:37:03.445216"], ["name", "Lou Briccant"], ["email", "thu@heaney.biz"], ["created_at", "2019-09-02 05:37:03.445895"], ["updated_at", "2019-09-02 05:37:03.445895"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "man@okeefe.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "man@okeefe.info"], ["encrypted_password", "$2a$04$tpU4RWlp4NLh8/.zJiyGu.Dhh0R9P9eo0ibtFJjUisWGkTv.D7Rw."], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:37:03.449594"], ["name", "Walt Smedley"], ["email", "man@okeefe.info"], ["created_at", "2019-09-02 05:37:03.450787"], ["updated_at", "2019-09-02 05:37:03.450787"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"GoUslsGglLdrp7DVQW4pyg\":{\"token\":\"$2a$10$AbfTpSJZAnB8OG6TvOKzhuA06QaS5fJI.JdoKGl62j16cuo1O6Iki\",\"expiry\":1568612223,\"updated_at\":\"2019-09-02 05:37:03 UTC\"}}"], ["updated_at", "2019-09-02 05:37:03.505015"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "man@okeefe.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$AwD9NXo885IkccahiFN8n.qkqvN2b.5lbQETeFAgTNcIOmTYhsIVS"], ["updated_at", "2019-09-02 05:37:03.553870"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:37:03.554731"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "evie_white@krajcik.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "evie_white@krajcik.co"], ["encrypted_password", "$2a$04$AywOB1Vvj5c/Rl5NQoQgtuEcZfTxtjCxujQu/FyrsBj837O8fwGVy"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:37:03.560958"], ["name", "Stan Dup"], ["email", "evie_white@krajcik.co"], ["created_at", "2019-09-02 05:37:03.561699"], ["updated_at", "2019-09-02 05:37:03.561699"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"e43RSVBgQg9qnakiljJmPg\":{\"token\":\"$2a$10$INQb/Al/aq57EohcO4u5kO0Cxa9f1J.2OJWQsgH/eTEwcBjyRgYPK\",\"expiry\":1568612223,\"updated_at\":\"2019-09-02 05:37:03 UTC\"}}"], ["updated_at", "2019-09-02 05:37:03.609307"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "evie_white@krajcik.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$MHlTValmH2YUx1pb2L9lJuVKxqoJvysCQXsXUoERL9Us968wTvd.S"], ["updated_at", "2019-09-02 05:37:03.658938"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:37:03.659827"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fatimah.ko@smith.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "fatimah.ko@smith.org"], ["encrypted_password", "$2a$04$8P8Ot26s8RO.BlNyLEZku.IJtl821m0o2v2c6Q9nHBMm0iez88yPW"], ["confirmed_at", "2019-09-02 05:37:03.664921"], ["name", "Sy Burnette"], ["email", "fatimah.ko@smith.org"], ["created_at", "2019-09-02 05:37:03.665548"], ["updated_at", "2019-09-02 05:37:03.665548"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CqoenuSNbGd2ArV-UsNdhw\":{\"token\":\"$2a$10$ZV/dN2GwLWPom.n9TIERnePVDULw9Fg89VhomJR3vmMNRGWjHisiq\",\"expiry\":1568612223,\"updated_at\":\"2019-09-02 05:37:03 UTC\"}}"], ["updated_at", "2019-09-02 05:37:03.711414"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "fatimah.ko@smith.org"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gail@mcclurehahn.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gail@mcclurehahn.info"], ["encrypted_password", "$2a$04$OEX1t36MT4d9a7LZSatMWORomCS2WQwLG7SUKD6.Of.q0/vzwpype"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:37:03.765942"], ["name", "Don Thatt"], ["email", "gail@mcclurehahn.info"], ["created_at", "2019-09-02 05:37:03.766721"], ["updated_at", "2019-09-02 05:37:03.766721"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"HoaG4GdXjVZANFOJ9AyKtQ\":{\"token\":\"$2a$10$nbA/GB4Wy9CTmjXffSCNn.8FK.lyHkJuwHVxmEofNTQ041CaiqyxK\",\"expiry\":1568612223,\"updated_at\":\"2019-09-02 05:37:03 UTC\"}}"], ["updated_at", "2019-09-02 05:37:03.813421"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gail@mcclurehahn.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$/EL5Kqtnl2/BpDA5VJbdxOtw89NhcgGZcQ/jeRsiRu9JQSd.MyG1G"], ["updated_at", "2019-09-02 05:37:03.863079"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:37:03.863983"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "merrill_heidenreich@funkgorczany.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "merrill_heidenreich@funkgorczany.co"], ["encrypted_password", "$2a$04$kA9UuopY2l/Rso.cgPQTT.uys1OsXGTHVnJK5ZCuTf1poWRLzpvDm"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:37:03.868563"], ["name", "Helena Hanbaskett"], ["email", "merrill_heidenreich@funkgorczany.co"], ["created_at", "2019-09-02 05:37:03.869318"], ["updated_at", "2019-09-02 05:37:03.869318"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BlL_CVu32OCdNN29pIcGLg\":{\"token\":\"$2a$10$OCmoJD65k4sS1oLJjqvu8.ejdAB6v5pUmOvZr5944.jo8vnmPEPpG\",\"expiry\":1568612223,\"updated_at\":\"2019-09-02 05:37:03 UTC\"}}"], ["updated_at", "2019-09-02 05:37:03.915633"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "merrill_heidenreich@funkgorczany.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$vDKj94MJBmsUTCd/uZ51EOynDdk6XvV5GZrNlcaqPmZ72k7aata2G"], ["updated_at", "2019-09-02 05:37:03.966679"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:37:03.967569"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chet.rice@swaniawski.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "chet.rice@swaniawski.name"], ["encrypted_password", "$2a$04$jnxB1TtqIpg7EMt3xWB5beLz2vZC9lj9UOsmZ/ebyB5pJEpLDxTUq"], ["confirmed_at", "2019-09-02 05:37:03.972414"], ["name", "Jay Walker"], ["email", "chet.rice@swaniawski.name"], ["created_at", "2019-09-02 05:37:03.973290"], ["updated_at", "2019-09-02 05:37:03.973290"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"pOIDOmQyys1NWg4Naphtbg\":{\"token\":\"$2a$10$PCescicxsGYdVHCqqkKXqeq9JlL0YecFWesgnaMy4hO3M3V1euOu2\",\"expiry\":1568612224,\"updated_at\":\"2019-09-02 05:37:03 UTC\"}}"], ["updated_at", "2019-09-02 05:37:04.022150"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "chet.rice@swaniawski.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$d1G/PttC2K504yOzVaY0oOs7sg/CcnrUVE3n/fESB5PFV5dKym8ty"], ["updated_at", "2019-09-02 05:37:04.073468"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "america_casper@koepp.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "america_casper@koepp.co"], ["encrypted_password", "$2a$04$7/XXPH1pLJ/pHT2H3FAwHuV6AfJrnqtOzA1r.sJwl7.eL/mKykTIK"], ["confirmed_at", "2019-09-02 05:37:04.078523"], ["name", "Kat Toy"], ["email", "america_casper@koepp.co"], ["created_at", "2019-09-02 05:37:04.079145"], ["updated_at", "2019-09-02 05:37:04.079145"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (2.0ms) SELECT sqlite_version(*)  (1.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "colton_bogan@treutel.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "colton_bogan@treutel.com"], ["encrypted_password", "$2a$04$rRpUUrBjZ1LB.Vxm6gu2L.Tc5gVuLnB4MrFI/GrSlg7yHbtlBIFPC"], ["confirmed_at", "2019-09-02 05:37:07.834888"], ["name", "Freida Convict"], ["email", "colton_bogan@treutel.com"], ["created_at", "2019-09-02 05:37:07.836972"], ["updated_at", "2019-09-02 05:37:07.836972"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"colton_bogan@treutel.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "colton_bogan@treutel.com"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZgOvtUwHAL6brlZLA6JySg\":{\"token\":\"$2a$10$dyZyM1wXN.v7SDuY5Aje8e0s0RLgYmqgNnzxkYEx3SCBKrc1tjnzq\",\"expiry\":1568612227,\"updated_at\":\"2019-09-02 05:37:07 UTC\"}}"], ["updated_at", "2019-09-02 05:37:07.919349"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 05:37:07.923054"], ["last_sign_in_at", "2019-09-02 05:37:07.923054"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 05:37:07.923281"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 65ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 12327) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "faustino@rogahnheaney.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "faustino@rogahnheaney.biz"], ["encrypted_password", "$2a$04$nTLCq1xBdVMv8jhtZ6NtO.A35iALis790PWDplOeCJBVHi97r3j9y"], ["confirmed_at", "2019-09-02 05:37:07.931378"], ["name", "Tommy Gunn"], ["email", "faustino@rogahnheaney.biz"], ["created_at", "2019-09-02 05:37:07.932333"], ["updated_at", "2019-09-02 05:37:07.932333"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"faustino@rogahnheaney.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "faustino@rogahnheaney.biz"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1989) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "halina.vonrueden@rosenbaum.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "halina.vonrueden@rosenbaum.com"], ["encrypted_password", "$2a$04$ZZ7jIWiEvD5006gBNIPWdenGWCnFcARWN2zmYyBaob422FonJc/6m"], ["confirmation_token", "aKHWCosBwJyeovCcZ1LD"], ["confirmation_sent_at", "2019-09-02 05:37:07.942394"], ["name", "Buddy System"], ["email", "halina.vonrueden@rosenbaum.com"], ["created_at", "2019-09-02 05:37:07.942314"], ["updated_at", "2019-09-02 05:37:07.942314"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"halina.vonrueden@rosenbaum.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "halina.vonrueden@rosenbaum.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1343) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deshawn.jacobi@kerluke.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "deshawn.jacobi@kerluke.org"], ["encrypted_password", "$2a$04$T16E4FcJwNLIjxJUtYvmhefaP/sKMMsOB5oxQcTDUqWb71QHmBtDC"], ["confirmed_at", "2019-09-02 05:37:07.949327"], ["locked_at", "2019-09-02 05:37:07.949354"], ["name", "Jasmine Rice"], ["email", "deshawn.jacobi@kerluke.org"], ["created_at", "2019-09-02 05:37:07.951138"], ["updated_at", "2019-09-02 05:37:07.951138"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"deshawn.jacobi@kerluke.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "deshawn.jacobi@kerluke.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1361) TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "halley@bergnaum.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "halley@bergnaum.info"], ["encrypted_password", "$2a$04$/eOgRtF8Nrxo6ur8LXV04OWEEWbL.z6KKMKJJN2Bk.KvVTt.Hi3my"], ["confirmed_at", "2019-09-02 05:37:07.960654"], ["name", "Eli Ondefloor"], ["email", "halley@bergnaum.info"], ["created_at", "2019-09-02 05:37:07.961871"], ["updated_at", "2019-09-02 05:37:07.961871"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"halley@bergnaum.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "halley@bergnaum.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1340) TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "roderick@cummeratagerhold.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "roderick@cummeratagerhold.com"], ["encrypted_password", "$2a$04$iG35tGuxkpKxzTTDZMhAtOOfY.WAdo10sgfnC4UHB85wbo8PjIMCe"], ["confirmed_at", "2019-09-02 05:37:07.972640"], ["name", "Jasmine Flowers"], ["email", "roderick@cummeratagerhold.com"], ["created_at", "2019-09-02 05:37:07.973849"], ["updated_at", "2019-09-02 05:37:07.973849"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yN2C_PE9ZFsFJkMunIKzCA\":{\"token\":\"$2a$10$GQ30Q6KpmHdzhxu6O2dDselOq6Kp6JEs3FTP2iw8C./z734wdEoq6\",\"expiry\":1568612228,\"updated_at\":\"2019-09-02 05:37:07 UTC\"}}"], ["updated_at", "2019-09-02 05:37:08.033283"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "roderick@cummeratagerhold.com"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 05:37:08.081883"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 1815) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 940) TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dane@harberwiza.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dane@harberwiza.net"], ["encrypted_password", "$2a$04$nYCTkc3IfxDEK2kxzLr8DOttvzmBzkG9JXIeI9VSE5Zdt8HLqZHQ2"], ["confirmed_at", "2019-09-02 05:37:08.088773"], ["name", "Daisy Picking"], ["email", "dane@harberwiza.net"], ["created_at", "2019-09-02 05:37:08.089522"], ["updated_at", "2019-09-02 05:37:08.089522"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cleo_greenfelder@walterhermann.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cleo_greenfelder@walterhermann.info"], ["encrypted_password", "$2a$04$kvn7VVn1ybrJC3vid51Rm.p./tgvWyaRujDqZpOHBfij6InV7pZ32"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:37:08.093401"], ["name", "Ophelia Payne"], ["email", "cleo_greenfelder@walterhermann.info"], ["created_at", "2019-09-02 05:37:08.094052"], ["updated_at", "2019-09-02 05:37:08.094052"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2dzkpSeGm55zgheQInlqnw\":{\"token\":\"$2a$10$hTOpFzbcURqUj0elOqFniep06CsoHfwVaJ6HUDHq3TUyFGDS4qq9K\",\"expiry\":1568612228,\"updated_at\":\"2019-09-02 05:37:08 UTC\"}}"], ["updated_at", "2019-09-02 05:37:08.147882"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "cleo_greenfelder@walterhermann.info"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$55LGAmIuWo9D70uxb4Xe7.zv9ZPbVeZZ0SREienSZbWGerLYYQ5NO"], ["updated_at", "2019-09-02 05:37:08.197758"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:37:08.198757"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2744) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leopoldo@frami.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "leopoldo@frami.co"], ["encrypted_password", "$2a$04$9PPGaSbePU49MT2LfrCsTekm0033C8bYO9Ttxmlf2BSa/h3Sk9Qju"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:37:08.204092"], ["name", "Adam Meway"], ["email", "leopoldo@frami.co"], ["created_at", "2019-09-02 05:37:08.204773"], ["updated_at", "2019-09-02 05:37:08.204773"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YX_tCwcO9JY1mhpvYFtNZw\":{\"token\":\"$2a$10$PgnTQ/.jauf3cXv4yeCEcucP7pCdOTCagIsWBR9KpTnNZFDQgkKTy\",\"expiry\":1568612228,\"updated_at\":\"2019-09-02 05:37:08 UTC\"}}"], ["updated_at", "2019-09-02 05:37:08.256099"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "leopoldo@frami.co"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$w.JNW4hpBxaayMaCA6TiAeOtceFmfYApld7eGPvzdzu514sFDHA2e"], ["updated_at", "2019-09-02 05:37:08.304144"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:37:08.305091"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2723) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stephenie@spinkamoen.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "stephenie@spinkamoen.co"], ["encrypted_password", "$2a$04$qoh0elD0XS8/5tfwHs5PSON0gS.9EdNtX52TB87aIgZaozYJ9jkVO"], ["confirmed_at", "2019-09-02 05:37:08.310117"], ["name", "Macon Paine"], ["email", "stephenie@spinkamoen.co"], ["created_at", "2019-09-02 05:37:08.310841"], ["updated_at", "2019-09-02 05:37:08.310841"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"h7qWdLiDssf5-EuUrXicWg\":{\"token\":\"$2a$10$kpizJ.7ynwrN45zaDBHv0eGheHlTAUGajTo3hZc8KXDBWT/aJ.flK\",\"expiry\":1568612228,\"updated_at\":\"2019-09-02 05:37:08 UTC\"}}"], ["updated_at", "2019-09-02 05:37:08.362312"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "stephenie@spinkamoen.co"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2417) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cedric@bartolettibode.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cedric@bartolettibode.net"], ["encrypted_password", "$2a$04$bBxEsvL0NIUt4XLRXCajIuf0K65Hd/6gMfvOv38HEKlbWRqX7ei6i"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:37:08.415269"], ["name", "Ginger Vitis"], ["email", "cedric@bartolettibode.net"], ["created_at", "2019-09-02 05:37:08.417624"], ["updated_at", "2019-09-02 05:37:08.417624"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"29cvlCIzXvpeLIrBxueAiw\":{\"token\":\"$2a$10$HJZiNhfcM3p15bko2VAc3OMj6dGcywrliDm6X3F8bTEQ1.hdjtpFm\",\"expiry\":1568612228,\"updated_at\":\"2019-09-02 05:37:08 UTC\"}}"], ["updated_at", "2019-09-02 05:37:08.469046"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "cedric@bartolettibode.net"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$N6348N/T/FaUogeAFaEqDew2W9WNNiW2xH/qLvuKvKRmAUNlUzX76"], ["updated_at", "2019-09-02 05:37:08.517465"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:37:08.518505"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2728) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "del.walker@gerlach.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "del.walker@gerlach.info"], ["encrypted_password", "$2a$04$oLgWqM4703pjKJZ2BiNSVu/Er44gMzex9peMPQ6kb3gV8xgi.v20m"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 05:37:08.523420"], ["name", "Ginger Snapp"], ["email", "del.walker@gerlach.info"], ["created_at", "2019-09-02 05:37:08.524197"], ["updated_at", "2019-09-02 05:37:08.524197"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"GpSmyZUZlIKAEAnhGOOAOQ\":{\"token\":\"$2a$10$omWe.rBfCj.SU/OMwM6eIuGdo9q.y4cgQmDrwGNlcTVBaIo7WH9Mm\",\"expiry\":1568612228,\"updated_at\":\"2019-09-02 05:37:08 UTC\"}}"], ["updated_at", "2019-09-02 05:37:08.571954"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "del.walker@gerlach.info"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$8ikZ8ye/kMKRxO16EcFgvO9HIj3hkb6YuX7md.h60oIZXyzkErKZO"], ["updated_at", "2019-09-02 05:37:08.620904"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 05:37:08.621923"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2723) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "napoleon_medhurst@braun.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "napoleon_medhurst@braun.net"], ["encrypted_password", "$2a$04$OYEowb9y8I8UTnI0i8sFbeq0A5wqvIwkc7criBFyP82RoCkEW30Bu"], ["confirmed_at", "2019-09-02 05:37:08.627192"], ["name", "Bill Overdew"], ["email", "napoleon_medhurst@braun.net"], ["created_at", "2019-09-02 05:37:08.628038"], ["updated_at", "2019-09-02 05:37:08.628038"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"f4W6L9MD9FMbC4FeJ53L7A\":{\"token\":\"$2a$10$/emNyDz2801pqOz5SyyWauOmDpZK7C.bB1HEJM5n1fD7v1fVWyzlG\",\"expiry\":1568612228,\"updated_at\":\"2019-09-02 05:37:08 UTC\"}}"], ["updated_at", "2019-09-02 05:37:08.678176"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "napoleon_medhurst@braun.net"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$ziH7v8hukgIyK7qENmrBSOAMKs7KH.gRlBm5OTTGX/GMkNcnAmza2"], ["updated_at", "2019-09-02 05:37:08.727789"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2527) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kamala@muller.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kamala@muller.io"], ["encrypted_password", "$2a$04$GxzwJtdRq8c./LarKldrTuXGH8tesWxZdr9.SA.8Ij4ANSLyXxUgC"], ["confirmed_at", "2019-09-02 05:37:08.733660"], ["name", "Dwayne Pipe"], ["email", "kamala@muller.io"], ["created_at", "2019-09-02 05:37:08.734320"], ["updated_at", "2019-09-02 05:37:08.734320"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 00:37:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1146) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.2ms) rollback transaction  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "josiah@johns.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (2.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "josiah@johns.biz"], ["encrypted_password", "$2a$04$yPmjHSXzxsRYRPpCyAsDgO55Hex79sOi5AHm5yKwcR7GK8Aiu7jUe"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 15:00:51.500551"], ["name", "Joaquin DeFlores"], ["email", "josiah@johns.biz"], ["created_at", "2019-09-02 15:00:51.503533"], ["updated_at", "2019-09-02 15:00:51.503533"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LRBQ-DrVaWxnaWuKRR7Mfw\":{\"token\":\"$2a$10$mzlrasv0LoN8sPKTEm30rObP1u4j9u.YWuMtFKEjk31uNTRzbdYay\",\"expiry\":1568646051,\"updated_at\":\"2019-09-02 15:00:51 UTC\"}}"], ["updated_at", "2019-09-02 15:00:51.552463"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:00:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "josiah@johns.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$CJJ3McAdjasmwDOBAd9Yo.Va6FQPR10oEV4xUQxrbPiPbRuRl7jc."], ["updated_at", "2019-09-02 15:00:51.639054"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 15:00:51.640194"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 66ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "reed.renner@douglas.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "reed.renner@douglas.io"], ["encrypted_password", "$2a$04$5ZUP7Spfy9Ea0uSgNyw1LOn2N2ffM7L.LGlKfnp0uR//1VFoy34T6"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 15:00:51.646626"], ["name", "Lisa Neucar"], ["email", "reed.renner@douglas.io"], ["created_at", "2019-09-02 15:00:51.647359"], ["updated_at", "2019-09-02 15:00:51.647359"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kNUSiAZzhS5Zy081lRtz-w\":{\"token\":\"$2a$10$xbbnM5YARK/NhNIU33qb5.tKUL2.sgG8.Eqe6/p2M8gjITCvG8zS6\",\"expiry\":1568646051,\"updated_at\":\"2019-09-02 15:00:51 UTC\"}}"], ["updated_at", "2019-09-02 15:00:51.697968"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:00:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "reed.renner@douglas.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$5VEJMD2iyxovn02YNx8IN.rVivsWAz.N5Fp5P2LTATI2EfiT9u1DW"], ["updated_at", "2019-09-02 15:00:51.745719"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 15:00:51.746551"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "roderick.zboncak@williamsonmoore.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "roderick.zboncak@williamsonmoore.io"], ["encrypted_password", "$2a$04$Xs4QWvgsyHpt0sjpBBuxcOSd2iK9SYmA3jE5A1ibjqtgxLZ.1CJom"], ["confirmed_at", "2019-09-02 15:00:51.753813"], ["name", "Kristie Hannity"], ["email", "roderick.zboncak@williamsonmoore.io"], ["created_at", "2019-09-02 15:00:51.754662"], ["updated_at", "2019-09-02 15:00:51.754662"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3Qxg04-zImLiyJunCFpaxQ\":{\"token\":\"$2a$10$/Z52yyfUp5ksgj0BhsM44efnuLDM07vlC3u4xBHMkQo8zB7IhiUby\",\"expiry\":1568646051,\"updated_at\":\"2019-09-02 15:00:51 UTC\"}}"], ["updated_at", "2019-09-02 15:00:51.801764"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:00:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "roderick.zboncak@williamsonmoore.io"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nick@pfannerstill.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nick@pfannerstill.com"], ["encrypted_password", "$2a$04$p0OyRW2A2PVSx4MEFAotPOS3bw9XeXQLQjOKIhHL6XnySavAf0W0."], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 15:00:51.854567"], ["name", "Rusty Steele"], ["email", "nick@pfannerstill.com"], ["created_at", "2019-09-02 15:00:51.855318"], ["updated_at", "2019-09-02 15:00:51.855318"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"r7TG9m8OFY5NT9lcJmsAKw\":{\"token\":\"$2a$10$xKZWooSjB5lZBxeE0bxAkOle/53IFSvvfxT1PIrN2BzpSUXxVRD.S\",\"expiry\":1568646051,\"updated_at\":\"2019-09-02 15:00:51 UTC\"}}"], ["updated_at", "2019-09-02 15:00:51.903724"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:00:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "nick@pfannerstill.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$mrpaBOmNf8NesLwYANSaoOyT.KvSeZemvPUTq3b7h1r569KMF0f1K"], ["updated_at", "2019-09-02 15:00:51.950420"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 15:00:51.951230"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "johnsie.pfannerstill@greenfelder.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "johnsie.pfannerstill@greenfelder.io"], ["encrypted_password", "$2a$04$HkBjE2QMiYz1LItAhnrj3ed1jTei2fRptpjyTTTj0zNZdEMQrgLDm"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 15:00:51.958135"], ["name", "Allen Rench"], ["email", "johnsie.pfannerstill@greenfelder.io"], ["created_at", "2019-09-02 15:00:51.959315"], ["updated_at", "2019-09-02 15:00:51.959315"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"E_L06eWY9wX21FQuqTRBKQ\":{\"token\":\"$2a$10$6V1YHvK1o/oh6r7AybT/7OkTsOh22EnS22fnUR/u1agWg45yZnPES\",\"expiry\":1568646052,\"updated_at\":\"2019-09-02 15:00:51 UTC\"}}"], ["updated_at", "2019-09-02 15:00:52.010527"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:00:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "johnsie.pfannerstill@greenfelder.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$i1.u68.jUmhUwvGRacXqxuq5qINd8k4iXE1KlMM464mDTPsuQcgTy"], ["updated_at", "2019-09-02 15:00:52.057646"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 15:00:52.058507"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "colby.hammes@blickritchie.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "colby.hammes@blickritchie.info"], ["encrypted_password", "$2a$04$S26pvGS0MTW71t2WQEkNjOCTU6CAxX1kSFddJK99sRylSRZgFhzqi"], ["confirmed_at", "2019-09-02 15:00:52.064380"], ["name", "Crystal Glass"], ["email", "colby.hammes@blickritchie.info"], ["created_at", "2019-09-02 15:00:52.065165"], ["updated_at", "2019-09-02 15:00:52.065165"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TFDfXclfHDAYXz_opKHFiA\":{\"token\":\"$2a$10$sF3AtGGeaBGpNcdgCmPISeCXjK0.oZXdWQe7Agbe0UKfKIZtIMirK\",\"expiry\":1568646052,\"updated_at\":\"2019-09-02 15:00:52 UTC\"}}"], ["updated_at", "2019-09-02 15:00:52.110611"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:00:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "colby.hammes@blickritchie.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$sb2YMXC6DuzTJY9tTztho.eyRXf8LDnzwcyv0nrqt.WvdjaRul.1i"], ["updated_at", "2019-09-02 15:00:52.162892"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "al@mann.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "al@mann.org"], ["encrypted_password", "$2a$04$XU.0sb7riEy8v3pUpo2QK.eeLbntBKMznv0JUu1tAFW/QoYkxuCb2"], ["confirmed_at", "2019-09-02 15:00:52.169580"], ["name", "Bud Weiser"], ["email", "al@mann.org"], ["created_at", "2019-09-02 15:00:52.170262"], ["updated_at", "2019-09-02 15:00:52.170262"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:00:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "randolph@gulgowski.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "randolph@gulgowski.info"], ["encrypted_password", "$2a$04$0aBDLDhiKWK3GSoTkvRdSe9QAsr294RtIoua1hKBSlYsLrkocwHFa"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 15:01:05.960067"], ["name", "Warren Piece"], ["email", "randolph@gulgowski.info"], ["created_at", "2019-09-02 15:01:05.962002"], ["updated_at", "2019-09-02 15:01:05.962002"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"GuErdfF5aub7NFzWLdUQNQ\":{\"token\":\"$2a$10$vbDltJo4abWXGyElz7Lbbe5WlvXUyBoX4U51yC22mFWj8x5ZlGUAW\",\"expiry\":1568646066,\"updated_at\":\"2019-09-02 15:01:05 UTC\"}}"], ["updated_at", "2019-09-02 15:01:06.006786"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:01:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "randolph@gulgowski.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$k7nF3.zNXzO9huE6HYNS/uZsbKVLpuWrH.qQ5DqjO39jhM7YAHEf2"], ["updated_at", "2019-09-02 15:01:06.076965"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 15:01:06.077955"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jamal_corwin@terryschinner.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jamal_corwin@terryschinner.co"], ["encrypted_password", "$2a$04$yV/7EsrFrUpVz/2vahv2zeTsO5Ebr/2f5VbWHSULE96O4H300Uve6"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 15:01:06.084002"], ["name", "Ford Parker"], ["email", "jamal_corwin@terryschinner.co"], ["created_at", "2019-09-02 15:01:06.084846"], ["updated_at", "2019-09-02 15:01:06.084846"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2l4f7_IRkH1nKmAfn1O8ug\":{\"token\":\"$2a$10$wm3ev2eEzD.oPNkmf7DEE.SsqjGEASebJ7ttRGJPjjaNVMmbBmDhi\",\"expiry\":1568646066,\"updated_at\":\"2019-09-02 15:01:06 UTC\"}}"], ["updated_at", "2019-09-02 15:01:06.131659"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:01:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jamal_corwin@terryschinner.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$ZZOn3zRDyFtitRui0neHT.Vwqt3YZ9MTmesQfJ/VIg.e1w8Y3Nnx2"], ["updated_at", "2019-09-02 15:01:06.180771"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 15:01:06.181680"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "latrina@wittinggoodwin.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "latrina@wittinggoodwin.io"], ["encrypted_password", "$2a$04$EXM7VHRKGWODQjHRH6kgheZmKKhXMY73iT.qj6Uq1FCaNtd5FHy1K"], ["confirmed_at", "2019-09-02 15:01:06.198450"], ["name", "Milly Meter"], ["email", "latrina@wittinggoodwin.io"], ["created_at", "2019-09-02 15:01:06.199235"], ["updated_at", "2019-09-02 15:01:06.199235"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DXLw8atzA58CuMMyFkwOGg\":{\"token\":\"$2a$10$RKgL8UiY2sCXsyJLNkj.Ne6athLqKSy0hUeqrYwpDcSBYtbO58dK.\",\"expiry\":1568646066,\"updated_at\":\"2019-09-02 15:01:06 UTC\"}}"], ["updated_at", "2019-09-02 15:01:06.248222"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:01:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "latrina@wittinggoodwin.io"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "warren_quigley@nienowko.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "warren_quigley@nienowko.name"], ["encrypted_password", "$2a$04$e2YzcIyEnHcM/DNQaTu7dekiW/liteZXXy8TqBYL0babOv5oazPv."], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 15:01:06.302244"], ["name", "Seymour Legg"], ["email", "warren_quigley@nienowko.name"], ["created_at", "2019-09-02 15:01:06.302893"], ["updated_at", "2019-09-02 15:01:06.302893"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"I_c6adyeY_Yn-WWtqZab5w\":{\"token\":\"$2a$10$GqWnV1Q0IywaiU1jSKQW9uQSw8SWrt/qZrBMedyVW7ckLI4eIZiim\",\"expiry\":1568646066,\"updated_at\":\"2019-09-02 15:01:06 UTC\"}}"], ["updated_at", "2019-09-02 15:01:06.350296"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:01:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "warren_quigley@nienowko.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$g3.7BWGe9zE0OOFBE2n27eTZwpjeC0v67EvA.pAuRpERDj5EVFjo2"], ["updated_at", "2019-09-02 15:01:06.398022"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 15:01:06.398863"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sheryl@leuschkebruen.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sheryl@leuschkebruen.com"], ["encrypted_password", "$2a$04$0x2ZcqpLnGAgltlxZCKfiuc6ZR5wZ09.Tb9kXX8en21arjwHXEYq2"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 15:01:06.403575"], ["name", "Lisa Neucar"], ["email", "sheryl@leuschkebruen.com"], ["created_at", "2019-09-02 15:01:06.404379"], ["updated_at", "2019-09-02 15:01:06.404379"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Fg5y8JO70FXkafkLVEWv8A\":{\"token\":\"$2a$10$nJzQO9uYjWnoBHgt.u16/OROOdv65W/9OIMD8gU5GQVoHKYHBnXG2\",\"expiry\":1568646066,\"updated_at\":\"2019-09-02 15:01:06 UTC\"}}"], ["updated_at", "2019-09-02 15:01:06.451722"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:01:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sheryl@leuschkebruen.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$FUU5v1CogDTQMTSLQJpbe.iHnBJdr2eN6X/CW8TrVsxK8pYshOdbe"], ["updated_at", "2019-09-02 15:01:06.499240"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 15:01:06.500081"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vannea@christiansen.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "vannea@christiansen.com"], ["encrypted_password", "$2a$04$ZruLnqdvrd/CqWLHdCyxg.7/aPw5gbk/cRx1xbdZ3BW5eWmuzOyOW"], ["confirmed_at", "2019-09-02 15:01:06.505850"], ["name", "Shanda Lear"], ["email", "vannea@christiansen.com"], ["created_at", "2019-09-02 15:01:06.506545"], ["updated_at", "2019-09-02 15:01:06.506545"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jsvm_icvqsnOVs3J6HeCrQ\":{\"token\":\"$2a$10$JVwvEIkYi1NpW8Z2XNV1TOvv/w6.nRo3xKCErh3uI/w6dEcUoNxPq\",\"expiry\":1568646066,\"updated_at\":\"2019-09-02 15:01:06 UTC\"}}"], ["updated_at", "2019-09-02 15:01:06.553922"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:01:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "vannea@christiansen.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Lr8MUq5z0PH0LU9UsHZYkuCIP/3kTNfdt4OCeuaD8B3wGOmgK58cu"], ["updated_at", "2019-09-02 15:01:06.601927"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vincenzo.nitzsche@wizahamill.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "vincenzo.nitzsche@wizahamill.org"], ["encrypted_password", "$2a$04$Uoq6d.2wUeRq6QUDX1k6J.FSbJPl20h6Wyp9JXJiuquNAPhFFvwYa"], ["confirmed_at", "2019-09-02 15:01:06.608311"], ["name", "Raynor Schein"], ["email", "vincenzo.nitzsche@wizahamill.org"], ["created_at", "2019-09-02 15:01:06.609129"], ["updated_at", "2019-09-02 15:01:06.609129"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:01:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lenita@kaulkequitzon.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lenita@kaulkequitzon.org"], ["encrypted_password", "$2a$04$8yh5949YNpKw3DLW5ByNKuQ7dJtxlkRuP/h01BtlY0d0tZhikWAnK"], ["confirmed_at", "2019-09-02 15:06:57.157305"], ["name", "Stu Pitt"], ["email", "lenita@kaulkequitzon.org"], ["created_at", "2019-09-02 15:06:57.159205"], ["updated_at", "2019-09-02 15:06:57.159205"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lenita@kaulkequitzon.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lenita@kaulkequitzon.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"1dwdXzfLhnLTHeVWV_iAKg\":{\"token\":\"$2a$10$eakKOcJRgIOdbn/0IyS.LeWM.f8.wg1WYjOcgCgt1w28FL7bSK.6i\",\"expiry\":1568646417,\"updated_at\":\"2019-09-02 15:06:57 UTC\"}}"], ["updated_at", "2019-09-02 15:06:57.242493"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-02 15:06:57.245206"], ["last_sign_in_at", "2019-09-02 15:06:57.245206"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-02 15:06:57.245485"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 63ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "martin@williamson.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "martin@williamson.co"], ["encrypted_password", "$2a$04$jgzyT.G0tVgZ4twgM6nc9OlMzA7LNSn6qSVAO3AzYKPlx9R8c9vCS"], ["confirmed_at", "2019-09-02 15:06:57.253542"], ["name", "Chrystal Glass"], ["email", "martin@williamson.co"], ["created_at", "2019-09-02 15:06:57.254341"], ["updated_at", "2019-09-02 15:06:57.254341"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"martin@williamson.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "martin@williamson.co"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dick_leannon@mills.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dick_leannon@mills.org"], ["encrypted_password", "$2a$04$eTZLnm0INejN5BcwuoCoPOJgPI/bvNm.i2qdoo677YJ9Dpuv6dW2G"], ["confirmation_token", "WidbmDbCanXzXSuMgfu7"], ["confirmation_sent_at", "2019-09-02 15:06:57.263557"], ["name", "Nick Ovtime"], ["email", "dick_leannon@mills.org"], ["created_at", "2019-09-02 15:06:57.263469"], ["updated_at", "2019-09-02 15:06:57.263469"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dick_leannon@mills.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dick_leannon@mills.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carson_mckenzie@gutkowski.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "carson_mckenzie@gutkowski.com"], ["encrypted_password", "$2a$04$4ExS.DrHeQvwrnpbjNsn3eK9y3Bslnsxpna.TDgl.sjokiY1T1XO."], ["confirmed_at", "2019-09-02 15:06:57.269620"], ["locked_at", "2019-09-02 15:06:57.269630"], ["name", "Gus Tofwin"], ["email", "carson_mckenzie@gutkowski.com"], ["created_at", "2019-09-02 15:06:57.270338"], ["updated_at", "2019-09-02 15:06:57.270338"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"carson_mckenzie@gutkowski.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "carson_mckenzie@gutkowski.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "margarette@robel.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "margarette@robel.com"], ["encrypted_password", "$2a$04$SQEgZDH.zzq1AoiYpuBCAeAHCyZDAHXt1YMC73u8d0GrWsz8Ahn/u"], ["confirmed_at", "2019-09-02 15:06:57.277581"], ["name", "Royal Payne"], ["email", "margarette@robel.com"], ["created_at", "2019-09-02 15:06:57.278735"], ["updated_at", "2019-09-02 15:06:57.278735"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"margarette@robel.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "margarette@robel.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "emery_rodriguez@ruel.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "emery_rodriguez@ruel.io"], ["encrypted_password", "$2a$04$RSR84g3/IcNWoaliryZhG.YXxul5iU62FLUBZtFGuNQC1JNYtb726"], ["confirmed_at", "2019-09-02 15:06:57.287645"], ["name", "Morey Bund"], ["email", "emery_rodriguez@ruel.io"], ["created_at", "2019-09-02 15:06:57.288549"], ["updated_at", "2019-09-02 15:06:57.288549"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"SlFH__JdDKxOAv_E1_x2RQ\":{\"token\":\"$2a$10$WrUk0h2JPYjeziPjTJMiluvpGZJsHDGAprWGvDeRZKnzMNixz30vu\",\"expiry\":1568646417,\"updated_at\":\"2019-09-02 15:06:57 UTC\"}}"], ["updated_at", "2019-09-02 15:06:57.343267"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "emery_rodriguez@ruel.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-02 15:06:57.389161"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 45ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marquis.lind@weimann.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marquis.lind@weimann.org"], ["encrypted_password", "$2a$04$DT9WoSHvq2MseuUho28hDey6SIIr1CCe.6K96SiI2AyymFOyByzXq"], ["confirmed_at", "2019-09-02 15:06:57.395550"], ["name", "Sid Down"], ["email", "marquis.lind@weimann.org"], ["created_at", "2019-09-02 15:06:57.396247"], ["updated_at", "2019-09-02 15:06:57.396247"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lee.ullrich@yundt.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lee.ullrich@yundt.biz"], ["encrypted_password", "$2a$04$NOmZn6mxUW95IORoXzSzW.BK1JfRQ3Rf8qIs74TgjeEL6gT5rnBiS"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 15:06:57.399704"], ["name", "Perry Mecium"], ["email", "lee.ullrich@yundt.biz"], ["created_at", "2019-09-02 15:06:57.400405"], ["updated_at", "2019-09-02 15:06:57.400405"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5vkXtUOVBDszqLWyL1KXBg\":{\"token\":\"$2a$10$qv4umz4Z0DC38P3Lduhy3u1EXm0vAMpmL7VyamoEWYfFRKzR8LqbO\",\"expiry\":1568646417,\"updated_at\":\"2019-09-02 15:06:57 UTC\"}}"], ["updated_at", "2019-09-02 15:06:57.450005"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lee.ullrich@yundt.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$9iDhoC2sCpq8P3pLB2KQfOYeP2hnuY4ZV7j1XgRuiMgvG5d2irvXS"], ["updated_at", "2019-09-02 15:06:57.498145"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 15:06:57.498983"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "january@kovacekbalistreri.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "january@kovacekbalistreri.biz"], ["encrypted_password", "$2a$04$XeCBnyzYZeJ3zQb1XG.ND.5m25B6aimDyKYsRjIBlhe7jqx1yCB/W"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 15:06:57.505163"], ["name", "Cy Kosis"], ["email", "january@kovacekbalistreri.biz"], ["created_at", "2019-09-02 15:06:57.506208"], ["updated_at", "2019-09-02 15:06:57.506208"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yJVMYAR2CGLx0o3i9W6c1w\":{\"token\":\"$2a$10$oMgkbixwltKLW9BHUmopv.A0XxXtWPO2mY1/OUaP5X7EHr5TLe7RO\",\"expiry\":1568646417,\"updated_at\":\"2019-09-02 15:06:57 UTC\"}}"], ["updated_at", "2019-09-02 15:06:57.553194"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "january@kovacekbalistreri.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$vVnNyXRZ5B8rTYECXuEYP.1wm7OMYv8sbaFqswIbC1ZX7zUYsZL8y"], ["updated_at", "2019-09-02 15:06:57.600369"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 15:06:57.601233"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gregg@dach.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gregg@dach.com"], ["encrypted_password", "$2a$04$wQaa5vbsrp7qaQGx6P6FBey9d70bPi2KBBGuHEulsbjjx8mGOf.2u"], ["confirmed_at", "2019-09-02 15:06:57.606603"], ["name", "Vlad Tire"], ["email", "gregg@dach.com"], ["created_at", "2019-09-02 15:06:57.607734"], ["updated_at", "2019-09-02 15:06:57.607734"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mqb4GlPBloyMfl_cqO-ODA\":{\"token\":\"$2a$10$aZBsBQY/hE.gElzKeIYf2uPqPZwPXMgUS53WPix/K2.ubWXYPgHwS\",\"expiry\":1568646417,\"updated_at\":\"2019-09-02 15:06:57 UTC\"}}"], ["updated_at", "2019-09-02 15:06:57.653777"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gregg@dach.com"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dani_baumbach@hellerparker.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dani_baumbach@hellerparker.org"], ["encrypted_password", "$2a$04$Kkhn6BsmV3EKWVa/feKHiuAsB4hPFjTAbfLXop1Ojqvh5x.alcJRW"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 15:06:57.707095"], ["name", "Ed Venture"], ["email", "dani_baumbach@hellerparker.org"], ["created_at", "2019-09-02 15:06:57.708284"], ["updated_at", "2019-09-02 15:06:57.708284"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"FUVdPMwe-Zw32BRurt8XLw\":{\"token\":\"$2a$10$dVU/QoE75vN6tGF7to6/NOxORSaf5E.MjlQCbrI/NXseeMqxlRjFm\",\"expiry\":1568646417,\"updated_at\":\"2019-09-02 15:06:57 UTC\"}}"], ["updated_at", "2019-09-02 15:06:57.754978"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dani_baumbach@hellerparker.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$ZDUiF4B7PtFocNRokVDyXub7SyZVYKbp1FHjaV3Ry.hPErpT42NEG"], ["updated_at", "2019-09-02 15:06:57.801999"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 15:06:57.802835"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sheron@wittingkihn.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sheron@wittingkihn.biz"], ["encrypted_password", "$2a$04$cAAv20HCKCx7RRHZ1fdtVemXkGER9.RxKCNhIwwO5dDxW12OI47/e"], ["allow_password_change", 1], ["confirmed_at", "2019-09-02 15:06:57.807303"], ["name", "Candy Barr"], ["email", "sheron@wittingkihn.biz"], ["created_at", "2019-09-02 15:06:57.808102"], ["updated_at", "2019-09-02 15:06:57.808102"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jSb9Fj5HTY6-UjKRXmIBoQ\":{\"token\":\"$2a$10$VME7yrXB6Pib3HGHjdTfD.m4nMKN2MuyqwfG697DfKIAZyFd1Iszi\",\"expiry\":1568646417,\"updated_at\":\"2019-09-02 15:06:57 UTC\"}}"], ["updated_at", "2019-09-02 15:06:57.855135"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sheron@wittingkihn.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$DYe4uUHKDi9ulOaMr3g0SeKxR6fOacFVQGpW4Kpv6QNxKBRY6CQQu"], ["updated_at", "2019-09-02 15:06:57.902326"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-02 15:06:57.903174"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mandie@kovacekhagenes.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mandie@kovacekhagenes.biz"], ["encrypted_password", "$2a$04$1rpTcwPEz/QgF2Ep7ze75OUxNEaF.YbEoAUNczwV..QGbd7vbumSa"], ["confirmed_at", "2019-09-02 15:06:57.908511"], ["name", "Alec Tricity"], ["email", "mandie@kovacekhagenes.biz"], ["created_at", "2019-09-02 15:06:57.909195"], ["updated_at", "2019-09-02 15:06:57.909195"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9yG_p67vCR7mASJm6LuYMQ\":{\"token\":\"$2a$10$2AwhQ4dJJ/DPPdedNvi4WO81YmUXGkyu6LlLJa/GJpQoWGndvyQam\",\"expiry\":1568646417,\"updated_at\":\"2019-09-02 15:06:57 UTC\"}}"], ["updated_at", "2019-09-02 15:06:57.958488"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "mandie@kovacekhagenes.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$KvCjcjMmNrKZ0Flsy92WDOkW0PaIksevBuaGR1v747IL6UBJMvSNq"], ["updated_at", "2019-09-02 15:06:58.007654"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hertha.strosin@mraz.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hertha.strosin@mraz.io"], ["encrypted_password", "$2a$04$AKD36a2EaT3ADcwD6ae1uelhBnAf6tZ8xkCce9CG0rMUsqV5BBPmq"], ["confirmed_at", "2019-09-02 15:06:58.013848"], ["name", "Andy Gravity"], ["email", "hertha.strosin@mraz.io"], ["created_at", "2019-09-02 15:06:58.014575"], ["updated_at", "2019-09-02 15:06:58.014575"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 10:06:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "graham_boyer@mclaughlin.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (3.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "graham_boyer@mclaughlin.biz"], ["encrypted_password", "$2a$04$7qQOfW2Uv5xfiqRjdYtzoemGiXBQ3Afm0a4DbNIkoVM2T61AkCfvq"], ["confirmed_at", "2019-09-03 04:37:40.087535"], ["name", "Kat Toy"], ["email", "graham_boyer@mclaughlin.biz"], ["created_at", "2019-09-03 04:37:40.091191"], ["updated_at", "2019-09-03 04:37:40.091191"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ron_barton@ward.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ron_barton@ward.org"], ["encrypted_password", "$2a$04$mDoIhDEi1WLCCf0QpKTyPOToUQotEIZM0SlsV5H1BMt75imDUpntW"], ["confirmed_at", "2019-09-03 04:38:06.632268"], ["name", "Owen Cash"], ["email", "ron_barton@ward.org"], ["created_at", "2019-09-03 04:38:06.634262"], ["updated_at", "2019-09-03 04:38:06.634262"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "db5fcca95173e1dd786016e896a2f37a20203264473a48a5c2019375d045b7fd"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "db5fcca95173e1dd786016e896a2f37a20203264473a48a5c2019375d045b7fd"], ["reset_password_sent_at", "2019-09-03 04:38:06.714954"], ["updated_at", "2019-09-03 04:38:06.715182"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:38:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n reset_password_token: \"pFzrkbQ26tzFQsBhC7oR\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kelley_hirthe@crooks.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kelley_hirthe@crooks.com"], ["encrypted_password", "$2a$04$qy9ZZ1ABeV.6viBSkY4KfOiqCULRV2if6T/v/Ek9RT4AAVHb5Px1S"], ["confirmed_at", "2019-09-03 04:38:31.022795"], ["name", "Jerry Atrics"], ["email", "kelley_hirthe@crooks.com"], ["created_at", "2019-09-03 04:38:31.024712"], ["updated_at", "2019-09-03 04:38:31.024712"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5ec149fa45a353a25b75bba82bdb843510131930937ca965e1bfef82ba5b5ff2"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "5ec149fa45a353a25b75bba82bdb843510131930937ca965e1bfef82ba5b5ff2"], ["reset_password_sent_at", "2019-09-03 04:38:31.106878"], ["updated_at", "2019-09-03 04:38:31.107111"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:38:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"8kxBcrAvb6W7bwz8A9Eg\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5ec149fa45a353a25b75bba82bdb843510131930937ca965e1bfef82ba5b5ff2"], ["LIMIT", 1]] Completed 500 Internal Server Error in 56ms (ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stephaine@bailey.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "stephaine@bailey.info"], ["encrypted_password", "$2a$04$pblzulJxpkaqDTOOA39zjegsmO/EmpMxZ.uHyA8fYEziUKIxmuahy"], ["confirmed_at", "2019-09-03 04:40:57.563299"], ["name", "Candace Spencer"], ["email", "stephaine@bailey.info"], ["created_at", "2019-09-03 04:40:57.565156"], ["updated_at", "2019-09-03 04:40:57.565156"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3056f4cad919037134fa31f0da887afb43b27f1b63aae172e03f6e053a573490"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "3056f4cad919037134fa31f0da887afb43b27f1b63aae172e03f6e053a573490"], ["reset_password_sent_at", "2019-09-03 04:40:57.640831"], ["updated_at", "2019-09-03 04:40:57.641052"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:40:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"i4mZyVZ48xtFh36n2Zga\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3056f4cad919037134fa31f0da887afb43b27f1b63aae172e03f6e053a573490"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"wnY_MQiO9eu3ypAwZVyDNQ\":{\"token\":\"$2a$10$tN9XuVDnG/linQB7FfBlT.fJN2ZC7RvtPFpwa1FJqIkRi63A4ITHq\",\"expiry\":1568695257}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 04:40:57.703383"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 500 Internal Server Error in 57ms (ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "benny@gerhold.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "benny@gerhold.info"], ["encrypted_password", "$2a$04$RmOmAFg7oeXZGFEG6QA3NOO62uSD8Jolr.3rJcA662Wfg5v6pRW.O"], ["confirmed_at", "2019-09-03 04:43:19.229354"], ["name", "Sy Burnette"], ["email", "benny@gerhold.info"], ["created_at", "2019-09-03 04:43:19.231236"], ["updated_at", "2019-09-03 04:43:19.231236"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c1903d4231d81829e1e7ec44c9039bfc747533aaaf2440fe191042c1aa6341cf"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "c1903d4231d81829e1e7ec44c9039bfc747533aaaf2440fe191042c1aa6341cf"], ["reset_password_sent_at", "2019-09-03 04:43:19.311793"], ["updated_at", "2019-09-03 04:43:19.312026"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:43:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"kXoF_eS5AneCE9S83aCc\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c1903d4231d81829e1e7ec44c9039bfc747533aaaf2440fe191042c1aa6341cf"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"RyVDEczUM9sgimBL0WERyA\":{\"token\":\"$2a$10$ScswvmVYh60nHqPASMpcguUN8AQU0gmgVM5wEyAwSjm5BMXzFSanq\",\"expiry\":1568695399}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 04:43:19.377679"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=CbeshxQ56tGa-eCEfCdhyw&client=RyVDEczUM9sgimBL0WERyA&client_id=RyVDEczUM9sgimBL0WERyA&config=&expiry=1568695399&reset_password=true&token=CbeshxQ56tGa-eCEfCdhyw&uid=benny%40gerhold.info Completed 500 Internal Server Error in 54ms (ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kanisha_boyer@wisozk.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kanisha_boyer@wisozk.io"], ["encrypted_password", "$2a$04$lnW934Le0RCxDHCHIeuV5OT.AKoNXUzsTLivdoaDMroUJvdCBcj9a"], ["confirmed_at", "2019-09-03 04:44:03.026673"], ["name", "Corey Ander"], ["email", "kanisha_boyer@wisozk.io"], ["created_at", "2019-09-03 04:44:03.028512"], ["updated_at", "2019-09-03 04:44:03.028512"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "64825213fd55c08d229260ffbaaa09a4c5fd65a0802df21b014facfbea47ab2a"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "64825213fd55c08d229260ffbaaa09a4c5fd65a0802df21b014facfbea47ab2a"], ["reset_password_sent_at", "2019-09-03 04:44:03.109196"], ["updated_at", "2019-09-03 04:44:03.109434"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:44:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"YQzKWWkH8QDXHsK_gaNw\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "64825213fd55c08d229260ffbaaa09a4c5fd65a0802df21b014facfbea47ab2a"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"E4mROX9Epay0j2VduTOvxg\":{\"token\":\"$2a$10$zSSz.BM3iFYuRPWu0KU5aujRK4.symTmkE.3/BhmCpYnl3Gc2pVaC\",\"expiry\":1568695443}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 04:44:03.182724"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=UweQeis6EzpbCqlw00Mpbw&client=E4mROX9Epay0j2VduTOvxg&client_id=E4mROX9Epay0j2VduTOvxg&config=&expiry=1568695443&reset_password=true&token=UweQeis6EzpbCqlw00Mpbw&uid=kanisha_boyer%40wisozk.io Completed 302 Found in 57ms (ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mee_rosenbaum@streich.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mee_rosenbaum@streich.org"], ["encrypted_password", "$2a$04$Yod9T9nIsm4JZFWD3hKoG.qD0r2IJIB0UJu2MGGQZuw/0cccPlIWq"], ["confirmed_at", "2019-09-03 04:45:47.171999"], ["name", "Myra Maines"], ["email", "mee_rosenbaum@streich.org"], ["created_at", "2019-09-03 04:45:47.173879"], ["updated_at", "2019-09-03 04:45:47.173879"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "559711112beebdd4fe4224e3a115b656b1fbe223def7d57d32eb243d576257ad"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "559711112beebdd4fe4224e3a115b656b1fbe223def7d57d32eb243d576257ad"], ["reset_password_sent_at", "2019-09-03 04:45:47.259444"], ["updated_at", "2019-09-03 04:45:47.259758"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:45:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"xUxL19kcoG9BD5u88ivk\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "559711112beebdd4fe4224e3a115b656b1fbe223def7d57d32eb243d576257ad"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ET30Xe3q4SVYRQ0fzUn28g\":{\"token\":\"$2a$10$./IoA6ohZzzv30zUoiZz1uGMTXgbeVfFQc1TZX8OS2mrKTVsugC8i\",\"expiry\":1568695547}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 04:45:47.328007"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=HMVyyqkQ9VUY6yiKJYJgwg&client=ET30Xe3q4SVYRQ0fzUn28g&client_id=ET30Xe3q4SVYRQ0fzUn28g&config=&expiry=1568695547&reset_password=true&token=HMVyyqkQ9VUY6yiKJYJgwg&uid=mee_rosenbaum%40streich.org Completed 302 Found in 54ms (ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bart@turcotte.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bart@turcotte.name"], ["encrypted_password", "$2a$04$LqqqkWeI5ATrqFuKobQDr.Bhuor4Zd8AVt2G6JSbSyIyAez04Pk1u"], ["confirmed_at", "2019-09-03 04:48:36.708964"], ["name", "Ken Oppenner"], ["email", "bart@turcotte.name"], ["created_at", "2019-09-03 04:48:36.710884"], ["updated_at", "2019-09-03 04:48:36.710884"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e2c8862b86968873d9ed3e6758e835cc237b4b169ef8982e06c7877a8732fdca"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "e2c8862b86968873d9ed3e6758e835cc237b4b169ef8982e06c7877a8732fdca"], ["reset_password_sent_at", "2019-09-03 04:48:36.792796"], ["updated_at", "2019-09-03 04:48:36.793043"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:48:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"gshYczDTKnjUjrxFZU2x\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e2c8862b86968873d9ed3e6758e835cc237b4b169ef8982e06c7877a8732fdca"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"xx5HszHQzrLbrgSFgRswXw\":{\"token\":\"$2a$10$E7w2an3Mi0NCw9TlGuBTKOLIc9ch2W0TTZS1onmdG9m0f1/huhmRO\",\"expiry\":1568695716}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 04:48:36.858212"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=nME9ahB0z-G3TYUdrZ8r5Q&client=xx5HszHQzrLbrgSFgRswXw&client_id=xx5HszHQzrLbrgSFgRswXw&config=&expiry=1568695716&reset_password=true&token=nME9ahB0z-G3TYUdrZ8r5Q&uid=bart%40turcotte.name Completed 302 Found in 52ms (ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tad_beatty@douglas.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tad_beatty@douglas.net"], ["encrypted_password", "$2a$04$CcHDOFFh7izqriBQWMYiOu3/b87mAR4IHzmx3cPPjgMVe..bqpA82"], ["confirmed_at", "2019-09-03 04:49:01.520551"], ["name", "Emerald Stone"], ["email", "tad_beatty@douglas.net"], ["created_at", "2019-09-03 04:49:01.522430"], ["updated_at", "2019-09-03 04:49:01.522430"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cbb0dd8bc8213df347b00c9d2aea93538279b5107f704df63b255413d088a133"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "cbb0dd8bc8213df347b00c9d2aea93538279b5107f704df63b255413d088a133"], ["reset_password_sent_at", "2019-09-03 04:49:01.603204"], ["updated_at", "2019-09-03 04:49:01.603441"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:49:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"1X5n8dGCi5ikyjabiH4n\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cbb0dd8bc8213df347b00c9d2aea93538279b5107f704df63b255413d088a133"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"PAuPSI19VY6skMbU3U8laA\":{\"token\":\"$2a$10$T1hNalxqh3i.I87l8soufeGQ2ecWFuMVo6D0d5adIhTWNX6StjjrC\",\"expiry\":1568695741}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 04:49:01.673378"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=0iKHTy0EoFGMUuy9KhTDgA&client=PAuPSI19VY6skMbU3U8laA&client_id=PAuPSI19VY6skMbU3U8laA&config=&expiry=1568695741&reset_password=true&token=0iKHTy0EoFGMUuy9KhTDgA&uid=tad_beatty%40douglas.net Completed 302 Found in 55ms (ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "adrian.collier@harber.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "adrian.collier@harber.com"], ["encrypted_password", "$2a$04$5hrKScc1YaA.G/bXT830C.uH/ys88yxQchGcBoTmMTRcs4iD4eYia"], ["confirmed_at", "2019-09-03 04:49:08.506686"], ["name", "Reed Toomey"], ["email", "adrian.collier@harber.com"], ["created_at", "2019-09-03 04:49:08.508940"], ["updated_at", "2019-09-03 04:49:08.508940"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "af7ed65bb334b2a546e42450e6717b4674d20fca9f9b57031b1c559aa899f4a5"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "af7ed65bb334b2a546e42450e6717b4674d20fca9f9b57031b1c559aa899f4a5"], ["reset_password_sent_at", "2019-09-03 04:49:08.589818"], ["updated_at", "2019-09-03 04:49:08.590209"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:49:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"fP5BXtNt33AFKFL8R7Vy\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "af7ed65bb334b2a546e42450e6717b4674d20fca9f9b57031b1c559aa899f4a5"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"PQgy4FogkDf7bzGqLcDmBw\":{\"token\":\"$2a$10$S.nvSnBLD3oCVkGF5SUZ/u2xtC9btlsvJtx8QCxR/9LtCmDnOBQIC\",\"expiry\":1568695748}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 04:49:08.660352"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=Rf2X-r_IvBJDEAw7ymJMtA&client=PQgy4FogkDf7bzGqLcDmBw&client_id=PQgy4FogkDf7bzGqLcDmBw&config=&expiry=1568695748&reset_password=true&token=Rf2X-r_IvBJDEAw7ymJMtA&uid=adrian.collier%40harber.com Completed 302 Found in 57ms (ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "barbie@luettgenbernier.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "barbie@luettgenbernier.biz"], ["encrypted_password", "$2a$04$vnd8jUe1.jkBfZXJpmIEkeHrlUwzQpsKYqXyVa8thzA6YnjPP9mTi"], ["confirmed_at", "2019-09-03 04:50:20.549651"], ["name", "C. Worthy"], ["email", "barbie@luettgenbernier.biz"], ["created_at", "2019-09-03 04:50:20.551580"], ["updated_at", "2019-09-03 04:50:20.551580"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "783825db935a6b4e9420c8c352030fae26a592525cd5a91359092ed3dde1053f"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "783825db935a6b4e9420c8c352030fae26a592525cd5a91359092ed3dde1053f"], ["reset_password_sent_at", "2019-09-03 04:50:20.636072"], ["updated_at", "2019-09-03 04:50:20.636299"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:50:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"kcAynbhpAeBkjS1Pff52\",\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "783825db935a6b4e9420c8c352030fae26a592525cd5a91359092ed3dde1053f"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YoCKUxZxBMtLZnZmz7MCrQ\":{\"token\":\"$2a$10$vFqXKrY6hHkHfks333.VCeAoHtWjq8RwE5Gmt2jge.6crYlyklvse\",\"expiry\":1568695820}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 04:50:20.700023"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YoCKUxZxBMtLZnZmz7MCrQ\":{\"token\":\"$2a$10$vFqXKrY6hHkHfks333.VCeAoHtWjq8RwE5Gmt2jge.6crYlyklvse\",\"expiry\":1568695820},\"UcwW-rqAHIS51-oK8lMPeA\":{\"token\":\"$2a$10$iSEwnfzqG3Nv44EJ0KDrR.jngHpsQx7TrkrVVjdWGQ/TpSqoV58w2\",\"expiry\":1568695820,\"updated_at\":\"2019-09-03 04:50:20 UTC\"}}"], ["updated_at", "2019-09-03 04:50:20.746839"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 98ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alonso@altenwerthkling.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alonso@altenwerthkling.com"], ["encrypted_password", "$2a$04$thQBXdRew87pcfBoV2cRVedURc1oxqpIaL3PVVioHkR9cHdNHaiRq"], ["confirmed_at", "2019-09-03 04:52:19.254931"], ["name", "Ali Gaither"], ["email", "alonso@altenwerthkling.com"], ["created_at", "2019-09-03 04:52:19.256800"], ["updated_at", "2019-09-03 04:52:19.256800"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f6f708397fa3b9adeec5f60f311e028529a6ec3274e0c0285f8ca3941f26d34e"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f6f708397fa3b9adeec5f60f311e028529a6ec3274e0c0285f8ca3941f26d34e"], ["reset_password_sent_at", "2019-09-03 04:52:19.336005"], ["updated_at", "2019-09-03 04:52:19.336250"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"JAAGHxQW_8nSwMprbzgy\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f6f708397fa3b9adeec5f60f311e028529a6ec3274e0c0285f8ca3941f26d34e"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"M-p9AdhPuCuW3h8tAkADxA\":{\"token\":\"$2a$10$.okPLt3C9sPHqGx19JqpvuMyvyO0Ep3oF1HTcZJXSv3sRlgTD29R6\",\"expiry\":1568695939}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 04:52:19.400476"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=x0WUazxvoG8itf4muWILOQ&client=M-p9AdhPuCuW3h8tAkADxA&client_id=M-p9AdhPuCuW3h8tAkADxA&config=&expiry=1568695939&reset_password=true&token=x0WUazxvoG8itf4muWILOQ&uid=alonso%40altenwerthkling.com Completed 302 Found in 52ms (ActiveRecord: 0.2ms)  (0.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'santiago.reinger@fisher.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Adam Zapel"], ["email", "santiago.reinger@fisher.com"], ["encrypted_password", "$2a$04$/1MhMPGGu/xrtgBnzcnLx.5HtjBvp5ffMOvhfG.eUiMfQYeokqC86"], ["confirmed_at", "2019-09-03 04:52:39.888687"], ["uid", "santiago.reinger@fisher.com"], ["created_at", "2019-09-03 04:52:39.897584"], ["updated_at", "2019-09-03 04:52:39.897584"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "6200d4de835b6264d7c81e01fc4b022bc91ba03b5757f0dcd63dce0e58bf876e"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "6200d4de835b6264d7c81e01fc4b022bc91ba03b5757f0dcd63dce0e58bf876e"], ["reset_password_sent_at", "2019-09-03 04:52:39.988219"], ["updated_at", "2019-09-03 04:52:39.988489"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"dx8hXvWcugMoBxBai4DQ\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "6200d4de835b6264d7c81e01fc4b022bc91ba03b5757f0dcd63dce0e58bf876e"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0X8NJ5yg2HAimLh2HEbQng\":{\"token\":\"$2a$10$G5PUlX8O6uc43vU/xgybNeVfhvS0YqTaWRogVigjPcN4WsC8sy5Vm\",\"expiry\":1568695960}}"], ["allow_password_change", "t"], ["updated_at", "2019-09-03 04:52:40.066510"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=n-WxNRdqcPj_Eup6ds_dKA&client=0X8NJ5yg2HAimLh2HEbQng&client_id=0X8NJ5yg2HAimLh2HEbQng&config=&expiry=&reset_password=true&token=n-WxNRdqcPj_Eup6ds_dKA&uid=santiago.reinger%40fisher.com Completed 302 Found in 58ms (ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'kaila@oreillywill.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Anna Septic"], ["email", "kaila@oreillywill.org"], ["encrypted_password", "$2a$04$t.83erEjotKN5m3NLqPcFuXYiKLaN0fBtGH7EqTrk8MyS47nbaJWe"], ["confirmed_at", "2019-09-03 04:52:40.071250"], ["uid", "kaila@oreillywill.org"], ["created_at", "2019-09-03 04:52:40.072141"], ["updated_at", "2019-09-03 04:52:40.072141"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kaila@oreillywill.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "kaila@oreillywill.org"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"1dFNlLOKwnegIbu0SY7v_A\":{\"token\":\"$2a$10$LFY9n7IPdtOT2Vx1AnHPSOGn6XqT4WbtqKNQpuZuG/eNDE9kVvx0i\",\"expiry\":1568695960,\"updated_at\":\"2019-09-03 04:52:40 UTC\"}}"], ["updated_at", "2019-09-03 04:52:40.135976"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-09-03 04:52:40.141964"], ["current_sign_in_at", "2019-09-03 04:52:40.141964"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 04:52:40.142626"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 67ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'herma@kling.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Dusty Carr"], ["email", "herma@kling.info"], ["encrypted_password", "$2a$04$M1r9fAcvPcF4LX/Sjs.VmuzvYimtH/w0j3EHx2O/wVFjdpRMPMyJe"], ["confirmed_at", "2019-09-03 04:52:40.150926"], ["uid", "herma@kling.info"], ["created_at", "2019-09-03 04:52:40.151909"], ["updated_at", "2019-09-03 04:52:40.151909"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"herma@kling.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "herma@kling.info"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'sarah_conroy@jenkins.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Rocky Mountain"], ["email", "sarah_conroy@jenkins.com"], ["encrypted_password", "$2a$04$lhPqkQyChMXad1spTwkm/eCc0UXuh59c8H6In8Kk1Hs01f0MgcBUm"], ["uid", "sarah_conroy@jenkins.com"], ["created_at", "2019-09-03 04:52:40.166741"], ["updated_at", "2019-09-03 04:52:40.166741"], ["confirmation_token", "qzbnrx8j8CVC6pGAQddz"], ["confirmation_sent_at", "2019-09-03 04:52:40.166942"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sarah_conroy@jenkins.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "sarah_conroy@jenkins.com"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'earle@lockman.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Brighton Early"], ["email", "earle@lockman.com"], ["encrypted_password", "$2a$04$kL/LcU8d30hIf0G0YXkr.uDT5e9xDIJF/ATExpvLcJvJshXF/5nr."], ["confirmed_at", "2019-09-03 04:52:40.177360"], ["locked_at", "2019-09-03 04:52:40.177416"], ["uid", "earle@lockman.com"], ["created_at", "2019-09-03 04:52:40.178352"], ["updated_at", "2019-09-03 04:52:40.178352"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"earle@lockman.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "earle@lockman.com"]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jee_ratke@wiegandschmitt.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Skip Dover"], ["email", "jee_ratke@wiegandschmitt.org"], ["encrypted_password", "$2a$04$/7fj5uOkMNJVTgsIPvD3weZu8qz3/lN.hq95/zvybx6Bb/qQ84CHe"], ["confirmed_at", "2019-09-03 04:52:40.190234"], ["auth_available", "f"], ["uid", "jee_ratke@wiegandschmitt.org"], ["created_at", "2019-09-03 04:52:40.191261"], ["updated_at", "2019-09-03 04:52:40.191261"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jee_ratke@wiegandschmitt.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "jee_ratke@wiegandschmitt.org"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'mable_kunze@pfannerstilljenkins.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Art Painter"], ["email", "mable_kunze@pfannerstilljenkins.com"], ["encrypted_password", "$2a$04$Ck424er2AexzGWvTh.nc8eRQ3yZS5BlVgQg143hwZ5Z8TfD52o5Ii"], ["confirmed_at", "2019-09-03 04:52:40.202171"], ["uid", "mable_kunze@pfannerstilljenkins.com"], ["created_at", "2019-09-03 04:52:40.203114"], ["updated_at", "2019-09-03 04:52:40.203114"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"H8jN0Xibb8wZx4bOyKSC9A\":{\"token\":\"$2a$10$o/m/mAJ6LZu5PJjsXe2.re2iTaPMbMafMe06tlBrTxKZ58RXO2A.6\",\"expiry\":1568695960,\"updated_at\":\"2019-09-03 04:52:40 UTC\"}}"], ["updated_at", "2019-09-03 04:52:40.262846"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "mable_kunze@pfannerstilljenkins.com"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-03 04:52:40.321384"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'granville@stracke.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Taylor Maid"], ["email", "granville@stracke.net"], ["encrypted_password", "$2a$04$sZNOebhqHDwipoKBjf2sG.W.yW2jM5DfioLkWDf9llO6X05lxI9ta"], ["confirmed_at", "2019-09-03 04:52:40.330186"], ["uid", "granville@stracke.net"], ["created_at", "2019-09-03 04:52:40.331016"], ["updated_at", "2019-09-03 04:52:40.331016"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jerrod@altenwerthkaulke.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Marj Oram"], ["email", "jerrod@altenwerthkaulke.co"], ["encrypted_password", "$2a$04$TcnZ39ajkdDqUqcGlXManeK3DFN.LHbc4XX5z3I1SCRxBaytp1SMm"], ["confirmed_at", "2019-09-03 04:52:40.335136"], ["allow_password_change", "t"], ["uid", "jerrod@altenwerthkaulke.co"], ["created_at", "2019-09-03 04:52:40.335974"], ["updated_at", "2019-09-03 04:52:40.335974"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"D40vQPnyLCegCsbVg5PA2Q\":{\"token\":\"$2a$10$QyrRa822vjOqNJnmkt6DduQb2v/wcBLztd2bnhV/yEgcWzspuH1D2\",\"expiry\":1568695960,\"updated_at\":\"2019-09-03 04:52:40 UTC\"}}"], ["updated_at", "2019-09-03 04:52:40.392907"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "jerrod@altenwerthkaulke.co"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Nd6EHa3CzPm3sNlWRREzxecLImEH0CcBVltt/qgVndzBF0O2ymMsG"], ["updated_at", "2019-09-03 04:52:40.451707"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 04:52:40.453111"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'eddy_gleichner@raukihn.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Allen Rench"], ["email", "eddy_gleichner@raukihn.name"], ["encrypted_password", "$2a$04$juPAWapwLnFFsD1Z4tqYyep/LVk.H0ZE8/iGkUylTf28eWhwQA2V2"], ["confirmed_at", "2019-09-03 04:52:40.458052"], ["allow_password_change", "t"], ["uid", "eddy_gleichner@raukihn.name"], ["created_at", "2019-09-03 04:52:40.459013"], ["updated_at", "2019-09-03 04:52:40.459013"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9VNRo3edaY1pJfJlIQcmgg\":{\"token\":\"$2a$10$iu5DpZMn2OMQXf6GfjoH.O6peA8k2S4qIOSwA1BoDF7dBxHrXoNF2\",\"expiry\":1568695960,\"updated_at\":\"2019-09-03 04:52:40 UTC\"}}"], ["updated_at", "2019-09-03 04:52:40.510181"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "eddy_gleichner@raukihn.name"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$r1HTUkM.yZCvb8evikcIMuP/0sONl5PAaNv/8aIKScYv9etW2ZyDS"], ["updated_at", "2019-09-03 04:52:40.567897"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 04:52:40.569022"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'estela@uptonreichel.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Stu Pitt"], ["email", "estela@uptonreichel.com"], ["encrypted_password", "$2a$04$5YbEDQ0kqftVB8NyTxk6yOpcJqytq6pRG1CrCqVQ6kJ7ik9nVw2Gu"], ["confirmed_at", "2019-09-03 04:52:40.575726"], ["uid", "estela@uptonreichel.com"], ["created_at", "2019-09-03 04:52:40.576669"], ["updated_at", "2019-09-03 04:52:40.576669"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3B2wZNDNtxrqr0SB0wFS6w\":{\"token\":\"$2a$10$Ue7I73in/tPHfNaNn.b4wuEXCXtKiNDUAGHptUZgBzgDThHioL7dK\",\"expiry\":1568695960,\"updated_at\":\"2019-09-03 04:52:40 UTC\"}}"], ["updated_at", "2019-09-03 04:52:40.625549"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "estela@uptonreichel.com"]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'chet.bartell@maggiovon.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Di O'Bolic"], ["email", "chet.bartell@maggiovon.info"], ["encrypted_password", "$2a$04$A8a2kfwDgTEvXQ9hW33qhOL/hGYybho8J88jNhn7fO.0YmDuXqghW"], ["confirmed_at", "2019-09-03 04:52:40.687913"], ["allow_password_change", "t"], ["uid", "chet.bartell@maggiovon.info"], ["created_at", "2019-09-03 04:52:40.688826"], ["updated_at", "2019-09-03 04:52:40.688826"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-6bY5k5zZrmtfbICLSaFgw\":{\"token\":\"$2a$10$MXfl7PYGDft0Q.sXBMqwmO.u4Jq6GOzX.gwG/jWw/jb7Zo5IaRHyi\",\"expiry\":1568695960,\"updated_at\":\"2019-09-03 04:52:40 UTC\"}}"], ["updated_at", "2019-09-03 04:52:40.739782"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "chet.bartell@maggiovon.info"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$vQPBksGMyadJiuwj5s.auuj6XI665n92I3QS6La1ZpkwdjxfE7inO"], ["updated_at", "2019-09-03 04:52:40.796214"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 04:52:40.797150"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truman.greenholt@haley.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Tom Katt"], ["email", "truman.greenholt@haley.biz"], ["encrypted_password", "$2a$04$4NEaZg1C03/zfFoSdwycoeVmO6tqpdo1nH3y99IHdw4SMZXQuHPAS"], ["confirmed_at", "2019-09-03 04:52:40.802338"], ["allow_password_change", "t"], ["uid", "truman.greenholt@haley.biz"], ["created_at", "2019-09-03 04:52:40.803670"], ["updated_at", "2019-09-03 04:52:40.803670"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TaAUw4FSTCmgBFCj4VYdRQ\":{\"token\":\"$2a$10$edPsgDrKniL1CMUs49daeOvefdPRFTjsPkOM8EgiGqLzJLNWNmrW2\",\"expiry\":1568695960,\"updated_at\":\"2019-09-03 04:52:40 UTC\"}}"], ["updated_at", "2019-09-03 04:52:40.851476"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "truman.greenholt@haley.biz"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$oSt5nluxhL2mz1loaqN8yOyRh57.hJ7b9B2Bili7MRf184M77Y8.a"], ["updated_at", "2019-09-03 04:52:40.906828"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 04:52:40.907771"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'austin@rohan.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Di O'Bolic"], ["email", "austin@rohan.net"], ["encrypted_password", "$2a$04$RdOoImoJNqclQ.ztbI9WsuP8vu2E.Ea72d2iGiuFqJm8S.48sWtMu"], ["confirmed_at", "2019-09-03 04:52:40.913028"], ["uid", "austin@rohan.net"], ["created_at", "2019-09-03 04:52:40.913757"], ["updated_at", "2019-09-03 04:52:40.913757"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"F1UrhvijRlmuihURDhhd1g\":{\"token\":\"$2a$10$xdcUjsg0.4U6g8Xllw8WCO083zxaOmErQ585wKTjDfo6kVxZh6XuO\",\"expiry\":1568695960,\"updated_at\":\"2019-09-03 04:52:40 UTC\"}}"], ["updated_at", "2019-09-03 04:52:40.961247"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "austin@rohan.net"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$kwo8sE7y81t8aJnuBmfz/edXb0pxHbjM8NNiY8E4gJGa9HLIqYbfu"], ["updated_at", "2019-09-03 04:52:41.016417"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'maribel@murphywilderman.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Bob Katz"], ["email", "maribel@murphywilderman.org"], ["encrypted_password", "$2a$04$OyIBXy3SMejZLT6vHbpWO.lUzP2c/9bG/scr71UbM6A1SjAJD38GO"], ["confirmed_at", "2019-09-03 04:52:41.023245"], ["uid", "maribel@murphywilderman.org"], ["created_at", "2019-09-03 04:52:41.024182"], ["updated_at", "2019-09-03 04:52:41.024182"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 13ms (Views: 11.4ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rudolf_rolfson@ullrichleuschke.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rudolf_rolfson@ullrichleuschke.org"], ["encrypted_password", "$2a$04$pqF.DAr1EpvbkUsVrIFbqemwC6ER2FRggH.96CK5HHnoFz/yHsER6"], ["confirmed_at", "2019-09-03 04:52:44.830811"], ["name", "Hy Price"], ["email", "rudolf_rolfson@ullrichleuschke.org"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:44.837193"], ["updated_at", "2019-09-03 04:52:44.837193"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a300fe196316241560c545131d8a607c993b79c088b3b8bd67e5b9157e3ea863"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "a300fe196316241560c545131d8a607c993b79c088b3b8bd67e5b9157e3ea863"], ["reset_password_sent_at", "2019-09-03 04:52:44.922498"], ["updated_at", "2019-09-03 04:52:44.922821"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"3wmN524wFavdsKD4itZa\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a300fe196316241560c545131d8a607c993b79c088b3b8bd67e5b9157e3ea863"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"SpPG0GEwLo0ACXh8ZpCwyg\":{\"token\":\"$2a$12$jDMcqMtm.Vko/27E4lQj9.NNY5S2dpWfP5Mr0I5ogqqDO9hkTbgf2\",\"expiry\":1568695964}}"], ["allow_password_change", "t"], ["updated_at", "2019-09-03 04:52:45.129546"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 500 Internal Server Error in 187ms (ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jerri@walker.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jerri@walker.info"], ["encrypted_password", "$2a$04$0PVUoBOqutWV9ozZnek2RuHRehakXYbfdDsFMQeAsX.xWa2dfCWuq"], ["confirmed_at", "2019-09-03 04:52:45.137019"], ["name", "Kitty Katz"], ["email", "jerri@walker.info"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:45.137806"], ["updated_at", "2019-09-03 04:52:45.137806"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jerri@walker.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jerri@walker.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZmsIoJRZ16QO39FzaH3bSg\":{\"token\":\"$2a$12$H6NIs/e3jm2o/ij6YxvwV.4SB29VhznxJdr3PwwLfOiUDOle8JhhK\",\"expiry\":1568695965,\"last_token\":null,\"updated_at\":\"2019-09-02T23:52:45.142-05:00\"}}"], ["updated_at", "2019-09-03 04:52:45.319779"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 04:52:45.325260"], ["last_sign_in_at", "2019-09-03 04:52:45.325260"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 04:52:45.325830"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 188ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "soraya.boyle@dickens.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "soraya.boyle@dickens.biz"], ["encrypted_password", "$2a$04$hixaiGgxPhQjEU5apaIzdeKSn84OJtx3XT8611iTZkhaF1GrlSdsC"], ["confirmed_at", "2019-09-03 04:52:45.332330"], ["name", "Rita Story"], ["email", "soraya.boyle@dickens.biz"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:45.332957"], ["updated_at", "2019-09-03 04:52:45.332957"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"soraya.boyle@dickens.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "soraya.boyle@dickens.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-09-03 04:52:45.336932"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "felix_kiehn@hackettdooley.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "felix_kiehn@hackettdooley.name"], ["encrypted_password", "$2a$04$XPCT/lC0mVue8I46Kk5Fhuei1fdL61/W91cV/qqUE5T1EKa17vbzC"], ["confirmation_token", "mLBfpaj5EzDiovAbHXBk"], ["confirmation_sent_at", "2019-09-03 04:52:45.341214"], ["name", "Sasha Klotz"], ["email", "felix_kiehn@hackettdooley.name"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:45.341138"], ["updated_at", "2019-09-03 04:52:45.341138"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"felix_kiehn@hackettdooley.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "felix_kiehn@hackettdooley.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elvera.bahringer@runte.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elvera.bahringer@runte.org"], ["encrypted_password", "$2a$04$pHqQmaIaWIBulRS0reVQLOCzHSvq3wu6NHPK.PNMcL/li1zQXvbIC"], ["confirmed_at", "2019-09-03 04:52:45.347418"], ["locked_at", "2019-09-03 04:52:45.347428"], ["name", "Charity Case"], ["email", "elvera.bahringer@runte.org"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:45.348131"], ["updated_at", "2019-09-03 04:52:45.348131"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"elvera.bahringer@runte.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elvera.bahringer@runte.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "myles.schiller@renner.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "myles.schiller@renner.org"], ["encrypted_password", "$2a$04$QFw7xVv/EuYNULHPVo2Qw.1mVyxKizRc0ctrQXYI/pggDNlRDl.h6"], ["confirmed_at", "2019-09-03 04:52:45.354518"], ["name", "Rusty Fender"], ["email", "myles.schiller@renner.org"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:45.355427"], ["updated_at", "2019-09-03 04:52:45.355427"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"myles.schiller@renner.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "myles.schiller@renner.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brett_larkin@mayertdietrich.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "brett_larkin@mayertdietrich.net"], ["encrypted_password", "$2a$04$mrDdPpH2Pk4PNHqImJg7ZeVVD0FtRYlxibGoiC4aV7z50KIpl1GHG"], ["confirmed_at", "2019-09-03 04:52:45.363956"], ["name", "Rowan Boatman"], ["email", "brett_larkin@mayertdietrich.net"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:45.364927"], ["updated_at", "2019-09-03 04:52:45.364927"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"aMZwRbNA29j4HpECZjCqAg\":{\"token\":\"$2a$12$L2/mg5xkbn.Wjzj5UcE7U.U29mz/CPV5fnkBYT3WRTPv2qy3aiKxq\",\"expiry\":1568695965,\"last_token\":null,\"updated_at\":\"2019-09-02T23:52:45.366-05:00\"}}"], ["updated_at", "2019-09-03 04:52:45.556341"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "brett_larkin@mayertdietrich.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-09-03 04:52:45.735268"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clayton@mraz.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "clayton@mraz.com"], ["encrypted_password", "$2a$04$xqVjPEDdkMo5OoIsw4fkb.8yFwXsHODZCV7aFg65aXttGxdJ5XIO2"], ["confirmed_at", "2019-09-03 04:52:45.743472"], ["name", "Paige Turner"], ["email", "clayton@mraz.com"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:45.744570"], ["updated_at", "2019-09-03 04:52:45.744570"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marion@wuckert.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "marion@wuckert.co"], ["encrypted_password", "$2a$04$SPAz1SR8VK5TYATCNc3xZ.OSol0EN64kmvBeBVA1WCjAmOTuUdWue"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 04:52:45.749212"], ["name", "Rob Banks"], ["email", "marion@wuckert.co"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:45.749976"], ["updated_at", "2019-09-03 04:52:45.749976"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"IcftevrA5BvFwSrWfBAunw\":{\"token\":\"$2a$12$FPsnAwmaxPR70LluCWmYqeqPO.NY6pr4CgmW9spjUTbGixo2/i2Wa\",\"expiry\":1568695965,\"last_token\":null,\"updated_at\":\"2019-09-02T23:52:45.752-05:00\"}}"], ["updated_at", "2019-09-03 04:52:45.934686"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "marion@wuckert.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$8FlAI0Ks6frRMFd0QalINe9rJxdpmzcvyp6.XnhBq/OjYWffzvCQi"], ["updated_at", "2019-09-03 04:52:46.112934"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 04:52:46.113977"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 180ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mariah@jerde.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mariah@jerde.co"], ["encrypted_password", "$2a$04$y0oWg3/q6tAWmARE.DOGsuBPJnT1DS3NGiBlV1vUMeNwwQ9NbGIX."], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 04:52:46.119658"], ["name", "Rusty Fossat"], ["email", "mariah@jerde.co"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:46.120279"], ["updated_at", "2019-09-03 04:52:46.120279"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"sMgQQUExHA2F6EhTGkJj6g\":{\"token\":\"$2a$12$tRb8nveIrSLyDyxH2E174.7keLBwfTbb4Fy8hANDnXhIA.m.IXyJS\",\"expiry\":1568695966,\"last_token\":null,\"updated_at\":\"2019-09-02T23:52:46.121-05:00\"}}"], ["updated_at", "2019-09-03 04:52:46.300926"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:46 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "mariah@jerde.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$6lbGmoyfq/dH97Re1.gZ8ur0L56dD4Sq1WpxWD2UETWf1A6D11b6i"], ["updated_at", "2019-09-03 04:52:46.490563"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 04:52:46.491632"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 180ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gerardo.flatley@hagenechowalter.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gerardo.flatley@hagenechowalter.net"], ["encrypted_password", "$2a$04$Bi/DjRpnVmJkJHQoM2GCluxTtq37vMu6jlSDamQQPpY0d.ZXzOQU."], ["confirmed_at", "2019-09-03 04:52:46.497051"], ["name", "Otto Carr"], ["email", "gerardo.flatley@hagenechowalter.net"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:46.497619"], ["updated_at", "2019-09-03 04:52:46.497619"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LedxUDl27HlhDtkNLDSdVQ\":{\"token\":\"$2a$12$O6yOX6IlCSckCqz.nWXYIeO/Tn6oeyB8VY3umt0bWBSF1pWgMsKYi\",\"expiry\":1568695966,\"last_token\":null,\"updated_at\":\"2019-09-02T23:52:46.498-05:00\"}}"], ["updated_at", "2019-09-03 04:52:46.680695"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:46 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gerardo.flatley@hagenechowalter.net"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 177ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lynn.reilly@schowalter.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lynn.reilly@schowalter.name"], ["encrypted_password", "$2a$04$0AozhpkQf.CxvcPJ0ww6ouR4ohDNwsoDXb34rv1DjhI4eANiOBbFK"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 04:52:46.863199"], ["name", "Marsha Dimes"], ["email", "lynn.reilly@schowalter.name"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:46.864044"], ["updated_at", "2019-09-03 04:52:46.864044"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"HpymKqcx3VNvUAGRWub_vw\":{\"token\":\"$2a$12$WrWKqgdFZw9p6lTtoxXoG..oUOohrmD/4.QNdJW6Y.D6ZktVIXx6e\",\"expiry\":1568695966,\"last_token\":null,\"updated_at\":\"2019-09-02T23:52:46.865-05:00\"}}"], ["updated_at", "2019-09-03 04:52:47.041975"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lynn.reilly@schowalter.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$KmOyjQs2WzEd1JDOYg4/o.9nsrD8XFD6mywewRPKxlzgS6B18/ebG"], ["updated_at", "2019-09-03 04:52:47.222563"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 04:52:47.223987"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 182ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arla@langosh.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "arla@langosh.co"], ["encrypted_password", "$2a$04$bhMIQnSMMYQuQtRwh/Uzq.RSLURC8eiqqOhJ9cEBoFDVGmZdGgVke"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 04:52:47.230933"], ["name", "Willie Waite"], ["email", "arla@langosh.co"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:47.232702"], ["updated_at", "2019-09-03 04:52:47.232702"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7E_i-mMVGx9RXXQFgjdFHw\":{\"token\":\"$2a$12$5FY.e7fDqHs/fOCcNrK3GePB8KrWscHtU/zKZbDvR22QdlFL7Wsye\",\"expiry\":1568695967,\"last_token\":null,\"updated_at\":\"2019-09-02T23:52:47.235-05:00\"}}"], ["updated_at", "2019-09-03 04:52:47.415546"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "arla@langosh.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$uS6HzV6M5iGCKmc7L0vne.WVtJQ0pMdA8R2au93q4FuBlDbBNn3Xu"], ["updated_at", "2019-09-03 04:52:47.593071"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 04:52:47.594159"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dougla_okon@stammwisoky.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dougla_okon@stammwisoky.co"], ["encrypted_password", "$2a$04$NEbMVh12Du9h64pxnUwYvedDLAFc0f6HMkieF6KkGDOj14OcYuDFq"], ["confirmed_at", "2019-09-03 04:52:47.600544"], ["name", "Robin Banks"], ["email", "dougla_okon@stammwisoky.co"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:47.601270"], ["updated_at", "2019-09-03 04:52:47.601270"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2dC85zYVrV412sEoxz-Vog\":{\"token\":\"$2a$12$RJeEk/NYnh0Qm2f1lnI8E.zx9K7VMTDKjmfofPe5dpTrxS18DP/za\",\"expiry\":1568695967,\"last_token\":null,\"updated_at\":\"2019-09-02T23:52:47.602-05:00\"}}"], ["updated_at", "2019-09-03 04:52:47.790553"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dougla_okon@stammwisoky.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Km9nXtM9CGV8TRXOseU/JuvhzCKStLLU4TK/bV7GJNqrST7D2H1u."], ["updated_at", "2019-09-03 04:52:47.970877"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 181ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "colton@sawayn.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "colton@sawayn.biz"], ["encrypted_password", "$2a$04$vSy40IM6SiQ8xaz70LWXVOxM.6FelSt4BAF2mfdgjV/EOLKrf6LGC"], ["confirmed_at", "2019-09-03 04:52:47.976731"], ["name", "Sal Minella"], ["email", "colton@sawayn.biz"], ["tokens", "{}"], ["created_at", "2019-09-03 04:52:47.977310"], ["updated_at", "2019-09-03 04:52:47.977310"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-02 23:52:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'deie@kozey.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Bill Lowney"], ["email", "deie@kozey.io"], ["encrypted_password", "$2a$04$H8uu5041GLecUDdqgc/OOOPnGus25vshsdIF8ht5Z8N8s74/38V9W"], ["confirmed_at", "2019-09-03 05:00:58.940101"], ["uid", "deie@kozey.io"], ["created_at", "2019-09-03 05:00:58.946211"], ["updated_at", "2019-09-03 05:00:58.946211"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "1924b1a524edbe77cb98b01c4d9af79f7948866f3d74a75917295314368a244e"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "1924b1a524edbe77cb98b01c4d9af79f7948866f3d74a75917295314368a244e"], ["reset_password_sent_at", "2019-09-03 05:00:59.026719"], ["updated_at", "2019-09-03 05:00:59.026955"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:00:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"ZWRzgdsp9LycChQqYMsD\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "1924b1a524edbe77cb98b01c4d9af79f7948866f3d74a75917295314368a244e"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"y6BHfXhLag6TH_dXscwLLw\":{\"token\":\"$2a$10$OtHU8XNysAoKkVDZudWNgOucpPLrJpIvQKZyrqm15G.kriaKwTCb2\",\"expiry\":1568696459}}"], ["allow_password_change", "t"], ["updated_at", "2019-09-03 05:00:59.099215"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=AQwcliOm8HJzqAgsnr4gIA&client=y6BHfXhLag6TH_dXscwLLw&client_id=y6BHfXhLag6TH_dXscwLLw&config=&expiry=&reset_password=true&token=AQwcliOm8HJzqAgsnr4gIA&uid=deie%40kozey.io Completed 302 Found in 54ms (ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'malena_ruel@sipesrogahn.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Rhea Curran"], ["email", "malena_ruel@sipesrogahn.org"], ["encrypted_password", "$2a$04$rX9Mq9trRGrRk.sMDdk2JON4fCdKOCMmjldD..4lZ3eWtikLQVPWO"], ["confirmed_at", "2019-09-03 05:00:59.105491"], ["uid", "malena_ruel@sipesrogahn.org"], ["created_at", "2019-09-03 05:00:59.106299"], ["updated_at", "2019-09-03 05:00:59.106299"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:00:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"malena_ruel@sipesrogahn.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "malena_ruel@sipesrogahn.org"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"qqm1wK3qmtfHE_3DUjwIPQ\":{\"token\":\"$2a$10$1PO.pEzWVISp3V43n9qqg.Bv3FoubqL9YzaAWuXj6nIy7Lo.TQ8FK\",\"expiry\":1568696459,\"updated_at\":\"2019-09-03 05:00:59 UTC\"}}"], ["updated_at", "2019-09-03 05:00:59.166271"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-09-03 05:00:59.171247"], ["current_sign_in_at", "2019-09-03 05:00:59.171247"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:00:59.171842"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 64ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'branden@adams.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Skip Dover"], ["email", "branden@adams.name"], ["encrypted_password", "$2a$04$LdTcNKdkm5pdkjJf4V2gtu5yP1jM.kcIgi9AmBeaPoA0.C4aYJ4vW"], ["confirmed_at", "2019-09-03 05:00:59.180461"], ["uid", "branden@adams.name"], ["created_at", "2019-09-03 05:00:59.181418"], ["updated_at", "2019-09-03 05:00:59.181418"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:00:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"branden@adams.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "branden@adams.name"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'violeta_waters@donnelly.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Frank Furter"], ["email", "violeta_waters@donnelly.info"], ["encrypted_password", "$2a$04$dDe9B.sehLJBj447DVeMB.L8AwjljkCY4AFpDXwLIt0uD1mZCusuS"], ["uid", "violeta_waters@donnelly.info"], ["created_at", "2019-09-03 05:00:59.195275"], ["updated_at", "2019-09-03 05:00:59.195275"], ["confirmation_token", "BZbMi_feFdQrisYBovTe"], ["confirmation_sent_at", "2019-09-03 05:00:59.195467"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:00:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"violeta_waters@donnelly.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "violeta_waters@donnelly.info"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'rodrick.grady@keelingturcotte.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Nida Lyte"], ["email", "rodrick.grady@keelingturcotte.net"], ["encrypted_password", "$2a$04$ak36LO70YjCh4LYWSvViUu.KbJcMjQMfmZEbzkBCGXVCfkwChPJdS"], ["confirmed_at", "2019-09-03 05:00:59.206396"], ["locked_at", "2019-09-03 05:00:59.206477"], ["uid", "rodrick.grady@keelingturcotte.net"], ["created_at", "2019-09-03 05:00:59.207677"], ["updated_at", "2019-09-03 05:00:59.207677"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:00:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rodrick.grady@keelingturcotte.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "rodrick.grady@keelingturcotte.net"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'sung.kunze@rippinwillms.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "I. Ball"], ["email", "sung.kunze@rippinwillms.org"], ["encrypted_password", "$2a$04$bL.8t4jT70UDjuUHIkvXieMHAOBEK0ZMpr9G1Fz2YOsFjzV0YuB8i"], ["confirmed_at", "2019-09-03 05:00:59.218642"], ["auth_available", "f"], ["uid", "sung.kunze@rippinwillms.org"], ["created_at", "2019-09-03 05:00:59.219635"], ["updated_at", "2019-09-03 05:00:59.219635"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:00:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sung.kunze@rippinwillms.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "sung.kunze@rippinwillms.org"]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'karine_paucek@sauer.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Ray Zenz"], ["email", "karine_paucek@sauer.com"], ["encrypted_password", "$2a$04$koFWr.PAlRl0MjLr2l7xROHiuIry7FRwQLXzN0Apegys1dKten9xe"], ["confirmed_at", "2019-09-03 05:00:59.233552"], ["uid", "karine_paucek@sauer.com"], ["created_at", "2019-09-03 05:00:59.234997"], ["updated_at", "2019-09-03 05:00:59.234997"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"obwVAf1ZT4SaVV3c-CPsAw\":{\"token\":\"$2a$10$5uHRaa.agyTJijf0icFJ/.Vrzxv8m2b4kC3ym1YmZTQ1UAqwSRqim\",\"expiry\":1568696459,\"updated_at\":\"2019-09-03 05:00:59 UTC\"}}"], ["updated_at", "2019-09-03 05:00:59.295157"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:00:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "karine_paucek@sauer.com"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-03 05:00:59.356036"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:00:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'dayna.braun@bernier.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Will Power"], ["email", "dayna.braun@bernier.org"], ["encrypted_password", "$2a$04$DkPiGXPNWpfaa3Ygg0bOC.8nDFGP8JEl.vPCyTokWUvU5iLotTJe2"], ["confirmed_at", "2019-09-03 05:00:59.365921"], ["uid", "dayna.braun@bernier.org"], ["created_at", "2019-09-03 05:00:59.366879"], ["updated_at", "2019-09-03 05:00:59.366879"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'holley@bogan.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Brock Lee"], ["email", "holley@bogan.com"], ["encrypted_password", "$2a$04$YNoV692Xsrash5OiGyOfIu3oNr9LiaQ/AwQZUR3XNFf/8QmPKmXn2"], ["confirmed_at", "2019-09-03 05:00:59.371520"], ["allow_password_change", "t"], ["uid", "holley@bogan.com"], ["created_at", "2019-09-03 05:00:59.372532"], ["updated_at", "2019-09-03 05:00:59.372532"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"iJ_TU7qYQgg5tarq5ncp-g\":{\"token\":\"$2a$10$y6smTS/CH72MV/adqczUq.Y9ONEUelwkfmIhmPp4/966MMs.8ARfi\",\"expiry\":1568696459,\"updated_at\":\"2019-09-03 05:00:59 UTC\"}}"], ["updated_at", "2019-09-03 05:00:59.429729"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:00:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "holley@bogan.com"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$P2sFj6irZUrVHwGqM4fbzeWbx7loBb.yKdrT6ZitUtT/CwRGdmnWa"], ["updated_at", "2019-09-03 05:00:59.489092"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:00:59.490085"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jimmy@okuneva.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bill Dollar"], ["email", "jimmy@okuneva.info"], ["encrypted_password", "$2a$04$l6vVqOnMAmaak.n7zBOw5.YG3STFjMOQzUrLjxD5XeKGaTAcHLj4u"], ["confirmed_at", "2019-09-03 05:00:59.494994"], ["allow_password_change", "t"], ["uid", "jimmy@okuneva.info"], ["created_at", "2019-09-03 05:00:59.495891"], ["updated_at", "2019-09-03 05:00:59.495891"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EyJo6tH_tAZ6im9IpRd4Ww\":{\"token\":\"$2a$10$VgBlUUnTedk4X90CyhoDmuQy4eahqOJLSc5vQh8hylHi84chTaYpi\",\"expiry\":1568696459,\"updated_at\":\"2019-09-03 05:00:59 UTC\"}}"], ["updated_at", "2019-09-03 05:00:59.545922"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:00:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "jimmy@okuneva.info"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$6D7/nqILpBaX9Qs79SfLRubtASpiUbJgvPWi1fFlxRnzLSCv9b0K2"], ["updated_at", "2019-09-03 05:00:59.601926"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:00:59.602860"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'deon@reilly.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Chris Cross"], ["email", "deon@reilly.biz"], ["encrypted_password", "$2a$04$YVNDZzcSZEU7RijR4qCG/ukOZeN1KX73/8zdWcSK3TruTw7tP5Tum"], ["confirmed_at", "2019-09-03 05:00:59.608698"], ["uid", "deon@reilly.biz"], ["created_at", "2019-09-03 05:00:59.609578"], ["updated_at", "2019-09-03 05:00:59.609578"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"J6fntiknSxfBCf2NMCp6AA\":{\"token\":\"$2a$10$fStjkucnMSXAtI6c1WQDwuAVGhvWr.HRDem9XLpw.KnS2BQowaaW6\",\"expiry\":1568696459,\"updated_at\":\"2019-09-03 05:00:59 UTC\"}}"], ["updated_at", "2019-09-03 05:00:59.659515"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:00:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "deon@reilly.biz"]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'dallas_ko@bauchfriesen.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Ali Gator"], ["email", "dallas_ko@bauchfriesen.biz"], ["encrypted_password", "$2a$04$t6A30BPick0wvhz0Kg3HyODYIM5.3QJPaiw6Qzs25bjQFkuLc2Edy"], ["confirmed_at", "2019-09-03 05:00:59.719933"], ["allow_password_change", "t"], ["uid", "dallas_ko@bauchfriesen.biz"], ["created_at", "2019-09-03 05:00:59.720815"], ["updated_at", "2019-09-03 05:00:59.720815"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TywxzB9guYlD0HPBeyB_Ng\":{\"token\":\"$2a$10$tyDGDrnszv4kmDWjAyw8o.HjqSuHEnO65LzdxalzbcpQdz2tCAEmG\",\"expiry\":1568696459,\"updated_at\":\"2019-09-03 05:00:59 UTC\"}}"], ["updated_at", "2019-09-03 05:00:59.772993"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:00:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "dallas_ko@bauchfriesen.biz"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$PV9xqdPbqw1t868NuZ6Vo.6K8eU1TZreunUVC/ikwSX5BfjuBEwI."], ["updated_at", "2019-09-03 05:00:59.826978"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:00:59.827921"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'chester.hermann@rolfsonratke.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Des Buratto"], ["email", "chester.hermann@rolfsonratke.org"], ["encrypted_password", "$2a$04$eKgkv1xTWjzm/d3I7ZcTnOxRcPy8JCEKfIemaMyIcEWGjRD5L1rY."], ["confirmed_at", "2019-09-03 05:00:59.832563"], ["allow_password_change", "t"], ["uid", "chester.hermann@rolfsonratke.org"], ["created_at", "2019-09-03 05:00:59.833405"], ["updated_at", "2019-09-03 05:00:59.833405"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"xMpxtlA1og3PX-dMSNarVA\":{\"token\":\"$2a$10$GQWJjLxV1C5IVvWTblfrkOHsgV47dlMbjIJyrIND5/jDVI4dieyju\",\"expiry\":1568696459,\"updated_at\":\"2019-09-03 05:00:59 UTC\"}}"], ["updated_at", "2019-09-03 05:00:59.881729"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:00:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "chester.hermann@rolfsonratke.org"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$E.IVGUc0q7e0S7MpDbjoF.0opCHT6gPAAsw.c3YdY1mOeEj3WhRI6"], ["updated_at", "2019-09-03 05:00:59.939314"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:00:59.940237"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'sherice_ohara@grady.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Winnie Bago"], ["email", "sherice_ohara@grady.com"], ["encrypted_password", "$2a$04$XquEaZCtMMTrmbpEawOfiejNB2ExJ.w28cQ.zck3/LYzqcdkPq3oO"], ["confirmed_at", "2019-09-03 05:00:59.946029"], ["uid", "sherice_ohara@grady.com"], ["created_at", "2019-09-03 05:00:59.946923"], ["updated_at", "2019-09-03 05:00:59.946923"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KB45h1rN48Foycl2NnTwLQ\":{\"token\":\"$2a$10$t7wXfMS1u8gRQu0IOfnS8eCEk7pDzo6WeFnTSpDx1GByM6spY146W\",\"expiry\":1568696459,\"updated_at\":\"2019-09-03 05:00:59 UTC\"}}"], ["updated_at", "2019-09-03 05:00:59.995986"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:00:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "sherice_ohara@grady.com"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$.1GM4twYiBHMf9BlMHXnj.UwaifZdkMeLGXvJQBNz31rnGlMk9WUC"], ["updated_at", "2019-09-03 05:01:00.053512"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jacqualine@wisozk.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Eli Ondefloor"], ["email", "jacqualine@wisozk.name"], ["encrypted_password", "$2a$04$MqnMHhMfl2ffVb0k/VacEOXB4nznmpoJxD.M88EdidpgFwsORw.ee"], ["confirmed_at", "2019-09-03 05:01:00.059046"], ["uid", "jacqualine@wisozk.name"], ["created_at", "2019-09-03 05:01:00.059714"], ["updated_at", "2019-09-03 05:01:00.059714"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 13ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lynwood.runolfon@beahan.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lynwood.runolfon@beahan.info"], ["encrypted_password", "$2a$04$EHxXxtBy43UMndNxofnAlOKrVz4uLQwZtEekB0RlkEG98Z5wk2psC"], ["confirmed_at", "2019-09-03 05:01:03.106972"], ["name", "Roman Holiday"], ["email", "lynwood.runolfon@beahan.info"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:03.111419"], ["updated_at", "2019-09-03 05:01:03.111419"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "33a2b0f191051ec1b7c32e1d2510afaefd83b9d59b893739e611d8cba0ad136c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "33a2b0f191051ec1b7c32e1d2510afaefd83b9d59b893739e611d8cba0ad136c"], ["reset_password_sent_at", "2019-09-03 05:01:03.194234"], ["updated_at", "2019-09-03 05:01:03.194524"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"swJ2_Ss5WJCZN9rFSTxg\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "33a2b0f191051ec1b7c32e1d2510afaefd83b9d59b893739e611d8cba0ad136c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"D5jpgZx261lSeEF2y5bUyA\":{\"token\":\"$2a$12$hB0t3PCrML9q2J.8YJrB2ev3ofUuHJR99zdE55t6wGIbrVwTDdu/K\",\"expiry\":1568696463}}"], ["allow_password_change", "t"], ["updated_at", "2019-09-03 05:01:03.390129"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1568696463&client=D5jpgZx261lSeEF2y5bUyA&client_id=D5jpgZx261lSeEF2y5bUyA&config=&expiry=1568696463&reset_password=true&token=1568696463&uid=lynwood.runolfon%40beahan.info Completed 302 Found in 189ms (ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "celinda.heel@barton.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "celinda.heel@barton.info"], ["encrypted_password", "$2a$04$rpnS3yMkSw7RvxjO7yOHcug/439sT7T7RKhXFrzk1x5/szvEBgH/i"], ["confirmed_at", "2019-09-03 05:01:03.401828"], ["name", "Raynor Schein"], ["email", "celinda.heel@barton.info"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:03.402828"], ["updated_at", "2019-09-03 05:01:03.402828"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"celinda.heel@barton.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "celinda.heel@barton.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"exp5ZLJpTO4ejnckIpjoMw\":{\"token\":\"$2a$12$GGHQVruuPwTfLbGTXqJp/eO8jBgSLpxHkxjWctSVU1wUOLzASDVQu\",\"expiry\":1568696463,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:03.408-05:00\"}}"], ["updated_at", "2019-09-03 05:01:03.587309"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 05:01:03.591680"], ["last_sign_in_at", "2019-09-03 05:01:03.591680"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:01:03.592036"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 189ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bart@skiles.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bart@skiles.com"], ["encrypted_password", "$2a$04$BfRH.2jU75v6sIPxcu6S6.tWanINfCeSSsr2NcbErV2QauRf/6eTO"], ["confirmed_at", "2019-09-03 05:01:03.598483"], ["name", "Winsom Cash"], ["email", "bart@skiles.com"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:03.599299"], ["updated_at", "2019-09-03 05:01:03.599299"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"bart@skiles.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bart@skiles.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-09-03 05:01:03.603519"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "audra_bernier@hermanromaguera.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "audra_bernier@hermanromaguera.info"], ["encrypted_password", "$2a$04$C6X8BCdtOEgzLakgD.XyBuaVE5YzEZidkiq3bJR4AvxAv.OTxH3Zu"], ["confirmation_token", "6HM78MYkiq9-2bxzTSxv"], ["confirmation_sent_at", "2019-09-03 05:01:03.608068"], ["name", "Quimby Ingmeen"], ["email", "audra_bernier@hermanromaguera.info"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:03.607988"], ["updated_at", "2019-09-03 05:01:03.607988"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"audra_bernier@hermanromaguera.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "audra_bernier@hermanromaguera.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeff@dach.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jeff@dach.org"], ["encrypted_password", "$2a$04$ywEjxdMmF1TaNdbKxps7T.mKXAK7n8zWkDWDAE.Skuuurd46W8ix."], ["confirmed_at", "2019-09-03 05:01:03.614176"], ["locked_at", "2019-09-03 05:01:03.614186"], ["name", "Lou Briccant"], ["email", "jeff@dach.org"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:03.614862"], ["updated_at", "2019-09-03 05:01:03.614862"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jeff@dach.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jeff@dach.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mozell@ullrich.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mozell@ullrich.io"], ["encrypted_password", "$2a$04$X5RRjjLRqvNmZYWjR9ecLuwlhD0QiFVyNNZsFvG2OkJZHy.QBU8d6"], ["confirmed_at", "2019-09-03 05:01:03.620826"], ["name", "Mitch Again"], ["email", "mozell@ullrich.io"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:03.621605"], ["updated_at", "2019-09-03 05:01:03.621605"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"mozell@ullrich.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mozell@ullrich.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kandace_kshlerin@macgyver.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kandace_kshlerin@macgyver.biz"], ["encrypted_password", "$2a$04$Ih0xC19TTtPyuekSIfBVl.xuiYIMDy6vpV0IIIisTme45mHuGiWmK"], ["confirmed_at", "2019-09-03 05:01:03.629195"], ["name", "Hammond Eggs"], ["email", "kandace_kshlerin@macgyver.biz"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:03.630163"], ["updated_at", "2019-09-03 05:01:03.630163"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"wZc6wgdpHP8RyCeyGhdrkg\":{\"token\":\"$2a$12$gTcFXZUupJf.hpFU5/Y0Su2q8m58ce6Gg1OnLnFvicJxAQ3J4pGze\",\"expiry\":1568696463,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:03.631-05:00\"}}"], ["updated_at", "2019-09-03 05:01:03.817419"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kandace_kshlerin@macgyver.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-09-03 05:01:03.995667"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cordell@denesikpagac.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cordell@denesikpagac.info"], ["encrypted_password", "$2a$04$cdyhL1NRAEJvTs3Gz57RZOnSGONmdwvqnm3GiT0JBVEAMapUd.thK"], ["confirmed_at", "2019-09-03 05:01:04.003047"], ["name", "Rick Kleiner"], ["email", "cordell@denesikpagac.info"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:04.003983"], ["updated_at", "2019-09-03 05:01:04.003983"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "beatriz.nienow@haag.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "beatriz.nienow@haag.biz"], ["encrypted_password", "$2a$04$hi/srfBCEz/EodtGWZv57.jnv8Q5XkIbX0Knw784vvz57RDV7CtzG"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:04.007754"], ["name", "Justin Inch"], ["email", "beatriz.nienow@haag.biz"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:04.008408"], ["updated_at", "2019-09-03 05:01:04.008408"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5fp0OP5D_wUvL9ThKPDYlg\":{\"token\":\"$2a$12$A3I0dMZuRdECQ19R8iz2j.mujVdZam7o6.AAQlV4bYHsT1YXbdz/u\",\"expiry\":1568696464,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:04.010-05:00\"}}"], ["updated_at", "2019-09-03 05:01:04.188897"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "beatriz.nienow@haag.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$eJNM1/0eTo8e/c0qM4AlneMrmz1dV5VCQcKOnKLzQLQ/4AKWFZIU."], ["updated_at", "2019-09-03 05:01:04.370004"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:04.371043"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 182ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tracy@doylerenner.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tracy@doylerenner.name"], ["encrypted_password", "$2a$04$tvHt.ijzIv74p8S7bOlGKOrPSHHjqPAoTVJFGqcpZact/nYNc3GMC"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:04.376022"], ["name", "Cal Seeium"], ["email", "tracy@doylerenner.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:04.376792"], ["updated_at", "2019-09-03 05:01:04.376792"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"HvsSE5EeaSEaG7GEwWyTRQ\":{\"token\":\"$2a$12$KeE29Mmd83qsA.Nz/IBQj.tNrfMfNb4gqeh05iLQj2q0pEVJFyvJ.\",\"expiry\":1568696464,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:04.377-05:00\"}}"], ["updated_at", "2019-09-03 05:01:04.557163"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tracy@doylerenner.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$ILNYKCq6G38GHfSD.TLI.Ov204UG0gE9CzD..rXWTtkUjhX62Zfb2"], ["updated_at", "2019-09-03 05:01:04.733631"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:04.734642"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (11.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 189ms (Views: 0.1ms | ActiveRecord: 11.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "melanie_leannon@jerde.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "melanie_leannon@jerde.net"], ["encrypted_password", "$2a$04$ppPgAmZsJoDL2g7EoTp4J.2RnaItE.OUvnOIhrmDb5kob9GR7eL1K"], ["confirmed_at", "2019-09-03 05:01:04.752862"], ["name", "Rhea Pollster"], ["email", "melanie_leannon@jerde.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:04.753713"], ["updated_at", "2019-09-03 05:01:04.753713"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZPZrtE_3cfS3RcXL30Gpjg\":{\"token\":\"$2a$12$Y.uaPhytJEuCHzYyCDypIObloDTZxg0dji564htEcel4m5Q4KDYfe\",\"expiry\":1568696464,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:04.754-05:00\"}}"], ["updated_at", "2019-09-03 05:01:04.936214"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "melanie_leannon@jerde.net"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 180ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "foster.kozey@vonmertz.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "foster.kozey@vonmertz.info"], ["encrypted_password", "$2a$04$0x4XLgbYXDrlVW/EwTRl2OA9K3BpJNWbahA3SUCRmjb.q.lUnFYdC"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:05.121186"], ["name", "Ty Coon"], ["email", "foster.kozey@vonmertz.info"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:05.121837"], ["updated_at", "2019-09-03 05:01:05.121837"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Ri7ackgVJ5B9fLuvSn3C9w\":{\"token\":\"$2a$12$eJpa6IPEjs71X1ve1qy1GeuxjKpyfxmUvyjyqU54eS927f8ttaXr6\",\"expiry\":1568696465,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:05.122-05:00\"}}"], ["updated_at", "2019-09-03 05:01:05.299989"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "foster.kozey@vonmertz.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$ttqlSJ1w8ocoWrxYmTxpAeOPXBSaDTQN8NIFmT6et.j1icmzSc0He"], ["updated_at", "2019-09-03 05:01:05.478410"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:05.479445"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 179ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "keith_schiller@mcglynn.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "keith_schiller@mcglynn.com"], ["encrypted_password", "$2a$04$XrbGGSmgYdqf.O3NX9K9Fue/RZDW/CsghskX8bFNA.7OByLCeZJyi"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:05.484842"], ["name", "Jeff Healitt"], ["email", "keith_schiller@mcglynn.com"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:05.485674"], ["updated_at", "2019-09-03 05:01:05.485674"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"4YCbR84paHyMJPiIIpn0ew\":{\"token\":\"$2a$12$WVwNWXGVfe09gCq6H2apfOH3WCgSWzivueV3QL1YLGEuz2sJKVVp2\",\"expiry\":1568696465,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:05.487-05:00\"}}"], ["updated_at", "2019-09-03 05:01:05.668725"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "keith_schiller@mcglynn.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$qaOaQg8FrRNXwGtfC4Q0gus6kIfTdNeFln7fJ4CYhJjYiwH03HgrW"], ["updated_at", "2019-09-03 05:01:05.845555"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:05.846666"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 177ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "heath@bode.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "heath@bode.com"], ["encrypted_password", "$2a$04$YoHj.Z81Soy0NnguwZewweCDyQ8vNRDeP8YXnrupACNKS9.Q.Z4Jy"], ["confirmed_at", "2019-09-03 05:01:05.852907"], ["name", "Abbie Birthday"], ["email", "heath@bode.com"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:05.853713"], ["updated_at", "2019-09-03 05:01:05.853713"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3FNxC2FPPe5Lb-8GECnMTg\":{\"token\":\"$2a$12$mz6GRzrsf.JKMHCOb.VwmerEpDc9PfcZGgoAFHYtkMcERbfoft6ae\",\"expiry\":1568696465,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:05.854-05:00\"}}"], ["updated_at", "2019-09-03 05:01:06.032391"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "heath@bode.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$5QU6qpEC2jIGmz/mjszrKuEtzFaGEofqaTuO.W/cD6AiGI688FSOu"], ["updated_at", "2019-09-03 05:01:06.212379"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 180ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kip_cronin@satterfieldsenger.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kip_cronin@satterfieldsenger.com"], ["encrypted_password", "$2a$04$eRUOU.7fcqfD5GYPZaxrzOgkm8NiHEbF01wafOv2Z7DUdptb0RC1i"], ["confirmed_at", "2019-09-03 05:01:06.221047"], ["name", "Luke Warm"], ["email", "kip_cronin@satterfieldsenger.com"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:06.222178"], ["updated_at", "2019-09-03 05:01:06.222178"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jerri_parker@thompson.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jerri_parker@thompson.net"], ["encrypted_password", "$2a$04$B4KSsfKWZXC2ELRRe84si.Mc4D0PL7lrydqiAuf0UDlP9FaIcLUaS"], ["confirmed_at", "2019-09-03 05:01:09.331395"], ["name", "Isadore Bell"], ["email", "jerri_parker@thompson.net"], ["created_at", "2019-09-03 05:01:09.335680"], ["updated_at", "2019-09-03 05:01:09.335680"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "37120067229cb87880cc287b7afbe681830e629f46cfaab48048f98423206970"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "37120067229cb87880cc287b7afbe681830e629f46cfaab48048f98423206970"], ["reset_password_sent_at", "2019-09-03 05:01:09.416185"], ["updated_at", "2019-09-03 05:01:09.416447"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"NrbfSezWE9ADujfptzyp\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "37120067229cb87880cc287b7afbe681830e629f46cfaab48048f98423206970"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"rfsbhg-aw3eYO2IGz6dneA\":{\"token\":\"$2a$10$g38plb9beXON1IBs5SjjA.K5HVMHH/FLXPS7QoIEbEJc3dzMMu3kq\",\"expiry\":1568696469}}"], ["allow_password_change", "t"], ["updated_at", "2019-09-03 05:01:09.478315"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=G7FmTJ33vC9wDahY-mAFKw&client=rfsbhg-aw3eYO2IGz6dneA&client_id=rfsbhg-aw3eYO2IGz6dneA&config=&expiry=1568696469&reset_password=true&token=G7FmTJ33vC9wDahY-mAFKw&uid=jerri_parker%40thompson.net Completed 302 Found in 52ms (ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "perry@conn.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "perry@conn.io"], ["encrypted_password", "$2a$04$t5n3ld7VHdCC9rbrat5lF.d5TaUjL0YhgvsnDfHQ0VA/1r2w4D8y."], ["confirmed_at", "2019-09-03 05:01:09.486426"], ["name", "Wayne Deer"], ["email", "perry@conn.io"], ["created_at", "2019-09-03 05:01:09.487305"], ["updated_at", "2019-09-03 05:01:09.487305"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"perry@conn.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "perry@conn.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3guQhbL6Yr5hHjwLkxAnIw\":{\"token\":\"$2a$10$jRo5lM3gqOarmR9xj823W.aQYijrwK28acoStlm1Wt/ntxaZCEMBa\",\"expiry\":1568696469,\"updated_at\":\"2019-09-03 05:01:09 UTC\"}}"], ["updated_at", "2019-09-03 05:01:09.539849"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 05:01:09.544531"], ["last_sign_in_at", "2019-09-03 05:01:09.544531"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:01:09.544952"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 58ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "maddie@hoegerhodkiewicz.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "maddie@hoegerhodkiewicz.info"], ["encrypted_password", "$2a$04$cJPtNzarGPwbMi/k7JVtG.Qrluof5DPiv6.riF0Hrk0UvQvykfCla"], ["confirmed_at", "2019-09-03 05:01:09.551824"], ["name", "Howie Doohan"], ["email", "maddie@hoegerhodkiewicz.info"], ["created_at", "2019-09-03 05:01:09.552595"], ["updated_at", "2019-09-03 05:01:09.552595"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"maddie@hoegerhodkiewicz.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "maddie@hoegerhodkiewicz.info"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mark@schaeferbradtke.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mark@schaeferbradtke.co"], ["encrypted_password", "$2a$04$CAMSRPBTVMKNXED//g.joOFqYfL8XHtoKQ5onoJ8qe8h.AtVojJwm"], ["confirmation_token", "jYh5V6xgzjdj_tzR2eh9"], ["confirmation_sent_at", "2019-09-03 05:01:09.563312"], ["name", "Luna Tick"], ["email", "mark@schaeferbradtke.co"], ["created_at", "2019-09-03 05:01:09.563198"], ["updated_at", "2019-09-03 05:01:09.563198"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"mark@schaeferbradtke.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mark@schaeferbradtke.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elroy.lowe@oconnellveum.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elroy.lowe@oconnellveum.biz"], ["encrypted_password", "$2a$04$pU6EYQb6.nm8Ze0yLja5M.KkQDmK.BULCyUAth4MLSAE/gkskjqQS"], ["confirmed_at", "2019-09-03 05:01:09.571315"], ["locked_at", "2019-09-03 05:01:09.571332"], ["name", "Homan Provement"], ["email", "elroy.lowe@oconnellveum.biz"], ["created_at", "2019-09-03 05:01:09.572282"], ["updated_at", "2019-09-03 05:01:09.572282"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"elroy.lowe@oconnellveum.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elroy.lowe@oconnellveum.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "levi@pagacwiza.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "levi@pagacwiza.info"], ["encrypted_password", "$2a$04$gJqMjWsvcPGmhO7SxC87yu.oOw1DXWflxByNWeo53ggIW1JuWcvhy"], ["confirmed_at", "2019-09-03 05:01:09.579283"], ["name", "Jay Walker"], ["email", "levi@pagacwiza.info"], ["created_at", "2019-09-03 05:01:09.580306"], ["updated_at", "2019-09-03 05:01:09.580306"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"levi@pagacwiza.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "levi@pagacwiza.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "taylor.vonrueden@colemclaughlin.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "taylor.vonrueden@colemclaughlin.name"], ["encrypted_password", "$2a$04$JosAz3gtf88kd.Mnx76sD.tp09sx0ibIDYJmPgrpfv1vF82/vptnO"], ["confirmed_at", "2019-09-03 05:01:09.588474"], ["name", "Chris Cross"], ["email", "taylor.vonrueden@colemclaughlin.name"], ["created_at", "2019-09-03 05:01:09.589713"], ["updated_at", "2019-09-03 05:01:09.589713"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZOAE7rTcYvGqvMONgrkF6g\":{\"token\":\"$2a$10$.2rsBz.3XOzgXGK1hrGpXeng1ADJVF9NrwBU7yu6QpV1XlhTSu1Py\",\"expiry\":1568696469,\"updated_at\":\"2019-09-03 05:01:09 UTC\"}}"], ["updated_at", "2019-09-03 05:01:09.647538"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "taylor.vonrueden@colemclaughlin.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-03 05:01:09.700918"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dwayne@hirtheoconnell.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dwayne@hirtheoconnell.org"], ["encrypted_password", "$2a$04$qfmcYVy9oryNU6DZcdCyh.a2X2ZK60RSR9polmFeuS38JWFHW/TNa"], ["confirmed_at", "2019-09-03 05:01:09.707492"], ["name", "Simon Swindells"], ["email", "dwayne@hirtheoconnell.org"], ["created_at", "2019-09-03 05:01:09.708304"], ["updated_at", "2019-09-03 05:01:09.708304"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brady@lakin.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "brady@lakin.org"], ["encrypted_password", "$2a$04$aY6rNoxPQ.MMH1ThAUtpO.lAjwIjCYQigO7aUK39T4jnC4Fny8uCK"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:09.712609"], ["name", "Rusty Keyes"], ["email", "brady@lakin.org"], ["created_at", "2019-09-03 05:01:09.713394"], ["updated_at", "2019-09-03 05:01:09.713394"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"M5eKUYg8lKJl2Vzvm9_ebQ\":{\"token\":\"$2a$10$Ms1rdTv8TgtkEaOqJZfEb.B38wz70u6iHAkkiDM6izLOfBm2HAbnu\",\"expiry\":1568696469,\"updated_at\":\"2019-09-03 05:01:09 UTC\"}}"], ["updated_at", "2019-09-03 05:01:09.770131"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "brady@lakin.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$J1z2T4UNEEgXPYP.w5IOo.b6roTJUSZ1RVnZ1f9gX9pT6OmcruhSy"], ["updated_at", "2019-09-03 05:01:09.839686"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:09.840820"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "charita@mannpurdy.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "charita@mannpurdy.io"], ["encrypted_password", "$2a$04$TYMHH2llGFzwEJl8160wJemozUezLo7Xjim/GSvo6RHJkXtUjxV8u"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:09.846555"], ["name", "Annie Howe"], ["email", "charita@mannpurdy.io"], ["created_at", "2019-09-03 05:01:09.847441"], ["updated_at", "2019-09-03 05:01:09.847441"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hN-h9hQmmIN4kvQkuzA1MQ\":{\"token\":\"$2a$10$.6XOfGcyf4jKaKM8bJcCau.GXJX16jZ7GDLWyHGW2FyhBo.nVY9C6\",\"expiry\":1568696469,\"updated_at\":\"2019-09-03 05:01:09 UTC\"}}"], ["updated_at", "2019-09-03 05:01:09.898679"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "charita@mannpurdy.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$it1RH3yqEpKOMmKWpK/Dg.53YxJLBDp6nCOo1yjdhNsYYeGg4pl8."], ["updated_at", "2019-09-03 05:01:09.950892"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:09.951901"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wilfred@crist.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "wilfred@crist.name"], ["encrypted_password", "$2a$04$3G4Jm6PqQToE6iJh3HT1hOPkFTznN229wgHfGW2RJA1O2MnHh.spS"], ["confirmed_at", "2019-09-03 05:01:09.957834"], ["name", "Buck Ng"], ["email", "wilfred@crist.name"], ["created_at", "2019-09-03 05:01:09.958666"], ["updated_at", "2019-09-03 05:01:09.958666"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TDSgfCMW0NBp_Nvpc-2wHQ\":{\"token\":\"$2a$10$d2T35fVQxhmnNAe1Nt6x..UsXWAoAAEJXkuac5pLHdzJ5HsVEBlcq\",\"expiry\":1568696470,\"updated_at\":\"2019-09-03 05:01:09 UTC\"}}"], ["updated_at", "2019-09-03 05:01:10.007088"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "wilfred@crist.name"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.2ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lean.jacobson@durgansipes.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lean.jacobson@durgansipes.net"], ["encrypted_password", "$2a$04$bOz.YcR1bR2/JQAYKGY2euGAYnPg3xP5wvyd89pZ9xaWkN7Aia6x6"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:10.069752"], ["name", "I. Lasch"], ["email", "lean.jacobson@durgansipes.net"], ["created_at", "2019-09-03 05:01:10.070616"], ["updated_at", "2019-09-03 05:01:10.070616"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"oVYzsQZurzl8-vxLK25DrQ\":{\"token\":\"$2a$10$uPf.j2uRm.3DMCe7K27FHuEewf74Rlxfg/WwQTQKDbl6NEyCvUG52\",\"expiry\":1568696470,\"updated_at\":\"2019-09-03 05:01:10 UTC\"}}"], ["updated_at", "2019-09-03 05:01:10.120503"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lean.jacobson@durgansipes.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$4wq/ghYSau92xldHjdc7FeE6OvwAecJ9Yy7oC0M92vogt4G7R8gse"], ["updated_at", "2019-09-03 05:01:10.174841"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:10.175817"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alfredo@powlowskithiel.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alfredo@powlowskithiel.co"], ["encrypted_password", "$2a$04$.FVpNofkXJgqTlfjRFerYOUXUsphNIX9uCCnVENKpI.ai3mapp7Y6"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:10.182169"], ["name", "Cy Kosis"], ["email", "alfredo@powlowskithiel.co"], ["created_at", "2019-09-03 05:01:10.183307"], ["updated_at", "2019-09-03 05:01:10.183307"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TNscDkFSuU1D039AkyzpYg\":{\"token\":\"$2a$10$p/dI5H6uPfrR.lLiBtsF2O0PQs6yGtZWHePtj8mzWb4svTOwfdtTe\",\"expiry\":1568696470,\"updated_at\":\"2019-09-03 05:01:10 UTC\"}}"], ["updated_at", "2019-09-03 05:01:10.236056"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "alfredo@powlowskithiel.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$//d83tZPb/ecUPB8xSd9aesbrAmyOElWLuznQnkh0IB26Q0Q6NoDy"], ["updated_at", "2019-09-03 05:01:10.288411"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:10.289361"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marisol.fisher@romaguera.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marisol.fisher@romaguera.biz"], ["encrypted_password", "$2a$04$0ober7mEzCQgTJWACM8Xx.Yix0tkYkwmtjO9pEZeOgUIsyluiuG5."], ["confirmed_at", "2019-09-03 05:01:10.297152"], ["name", "Lowden Clear"], ["email", "marisol.fisher@romaguera.biz"], ["created_at", "2019-09-03 05:01:10.298293"], ["updated_at", "2019-09-03 05:01:10.298293"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"WkGrLjM1Lx3Ui5rEu5PboQ\":{\"token\":\"$2a$10$NZ72r/7SOHySJZESxfwrQ./CSL1bdZBYgTeE.pZr8YRHGnDYW7G9O\",\"expiry\":1568696470,\"updated_at\":\"2019-09-03 05:01:10 UTC\"}}"], ["updated_at", "2019-09-03 05:01:10.350065"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "marisol.fisher@romaguera.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$WdvdouYlNa/zOtjMWRS98O6Emq1Le10cQZGh.YNDJrCWjGKEUGlKm"], ["updated_at", "2019-09-03 05:01:10.401930"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mitchell.satterfield@carroll.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mitchell.satterfield@carroll.info"], ["encrypted_password", "$2a$04$bdoMrzcZFGIqAnVCvyIS3Oo41wwPpwu3h.mi0ML3/2MHUWiCupJhO"], ["confirmed_at", "2019-09-03 05:01:10.408690"], ["name", "Stu Pitt"], ["email", "mitchell.satterfield@carroll.info"], ["created_at", "2019-09-03 05:01:10.409520"], ["updated_at", "2019-09-03 05:01:10.409520"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joseph@krajcik.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "joseph@krajcik.name"], ["encrypted_password", "$2a$04$BpDUJgh91Go/Sg5nEuxuvuo2tbfyCVYUCvaV9KkZgEXRkHszrJQzi"], ["confirmed_at", "2019-09-03 05:01:13.909214"], ["name", "Anna Sasin"], ["email", "joseph@krajcik.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:13.913462"], ["updated_at", "2019-09-03 05:01:13.913462"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a3e678b839d77fbd42cce2c614e72b13aa4c74ba1bcb00424f721ce21e3095d4"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "a3e678b839d77fbd42cce2c614e72b13aa4c74ba1bcb00424f721ce21e3095d4"], ["reset_password_sent_at", "2019-09-03 05:01:14.001350"], ["updated_at", "2019-09-03 05:01:14.001569"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"sQZmvmU9uCsh8n_NMe_e\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a3e678b839d77fbd42cce2c614e72b13aa4c74ba1bcb00424f721ce21e3095d4"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ts_CenSjqZq31EmFcMU01A\":{\"token\":\"$2a$12$c77kCnIAZYFW8Af40R3XFegXVaJIhL4K5IlHw46v8QxZo6kO7iw8u\",\"expiry\":1568696474}}"], ["allow_password_change", "t"], ["updated_at", "2019-09-03 05:01:14.198624"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1568696474&client=ts_CenSjqZq31EmFcMU01A&client_id=ts_CenSjqZq31EmFcMU01A&config=&expiry=1568696474&reset_password=true&token=1568696474&uid=joseph%40krajcik.name Completed 302 Found in 184ms (ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "williams_ward@lowe.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "williams_ward@lowe.io"], ["encrypted_password", "$2a$04$fdWac7wAhrC8j1NQTbrzbuHc8oCxWIxSsP5jNg25ZlofC/v86KWrW"], ["confirmed_at", "2019-09-03 05:01:14.205708"], ["name", "Carrie Oakey"], ["email", "williams_ward@lowe.io"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:14.206529"], ["updated_at", "2019-09-03 05:01:14.206529"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"williams_ward@lowe.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "williams_ward@lowe.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ARujebtzraHenMYb0P0mtw\":{\"token\":\"$2a$12$UOC3S12NWiA9PjIa6FpN8.V.WIN0SA51TzhsP.KJsOUSXo8U6eIQ6\",\"expiry\":1568696474,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:14.211-05:00\"}}"], ["updated_at", "2019-09-03 05:01:14.388485"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 05:01:14.391732"], ["last_sign_in_at", "2019-09-03 05:01:14.391732"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:01:14.392029"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 185ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cliff@swaniawski.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cliff@swaniawski.org"], ["encrypted_password", "$2a$04$mlYQKS0pd0jgExeesDh6KO.66w.40kTA9aY.HGalYnkMdMmoxmPAm"], ["confirmed_at", "2019-09-03 05:01:14.398650"], ["name", "Neil Down"], ["email", "cliff@swaniawski.org"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:14.399540"], ["updated_at", "2019-09-03 05:01:14.399540"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"cliff@swaniawski.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cliff@swaniawski.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-09-03 05:01:14.404082"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elisha.bednar@auerdooley.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elisha.bednar@auerdooley.co"], ["encrypted_password", "$2a$04$JVf3rnlzBlxT6R4cEYFM2OOCeEF9rGNmL14YQnekyUsiPUSqKnywW"], ["confirmation_token", "WK1dX1m1s5hAsorzGaY2"], ["confirmation_sent_at", "2019-09-03 05:01:14.408816"], ["name", "Shanda Lear"], ["email", "elisha.bednar@auerdooley.co"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:14.408739"], ["updated_at", "2019-09-03 05:01:14.408739"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"elisha.bednar@auerdooley.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elisha.bednar@auerdooley.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "margy@hartmann.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "margy@hartmann.name"], ["encrypted_password", "$2a$04$9G3s68OhNFfPBiZJdoIdw.ceLyXIFsB.VHqDHzjF2gDMUGxgjVkLS"], ["confirmed_at", "2019-09-03 05:01:14.415408"], ["locked_at", "2019-09-03 05:01:14.415423"], ["name", "Don Key"], ["email", "margy@hartmann.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:14.416529"], ["updated_at", "2019-09-03 05:01:14.416529"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"margy@hartmann.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "margy@hartmann.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "thelma@zemlak.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "thelma@zemlak.biz"], ["encrypted_password", "$2a$04$I90.lGTCfOltSo3ZSPjPHujld4r1MT2qU.D8ICTB9YK2P9ZmRaa/q"], ["confirmed_at", "2019-09-03 05:01:14.427198"], ["name", "Anna Prentice"], ["email", "thelma@zemlak.biz"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:14.428729"], ["updated_at", "2019-09-03 05:01:14.428729"], ["auth_available", "f"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"thelma@zemlak.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "thelma@zemlak.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leif.wilkinson@kiehntowne.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "leif.wilkinson@kiehntowne.name"], ["encrypted_password", "$2a$04$UY82gZVGnpKKv4q8ibCH0OuKG2ZYdY.sWUFWTpKJ1bMGSa2mh5uzq"], ["confirmed_at", "2019-09-03 05:01:14.438844"], ["name", "Hal Jalikakick"], ["email", "leif.wilkinson@kiehntowne.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:14.439876"], ["updated_at", "2019-09-03 05:01:14.439876"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"aeruaglIV-CubPOegA9EDg\":{\"token\":\"$2a$12$vWyb3D.yt8o2A4eGOGcWIefRP0XobbnjpYB6kI.GZiJfppxwzE6UC\",\"expiry\":1568696474,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:14.441-05:00\"}}"], ["updated_at", "2019-09-03 05:01:14.652065"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "leif.wilkinson@kiehntowne.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-09-03 05:01:14.830021"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 177ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "boyd.mann@simonis.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "boyd.mann@simonis.co"], ["encrypted_password", "$2a$04$mGwg8ktbg7BpNcWU7K.gpOyCKmOtoT9QpHI0wwAzBsBg19q0mecRq"], ["confirmed_at", "2019-09-03 05:01:14.837451"], ["name", "Sam Manilla"], ["email", "boyd.mann@simonis.co"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:14.838233"], ["updated_at", "2019-09-03 05:01:14.838233"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "adam.heathcote@haucklowe.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "adam.heathcote@haucklowe.co"], ["encrypted_password", "$2a$04$6Ye07Yb11sl7ZTGGtTmhOumYBCSHyup8nsPiy2CRll735HSxd/xU6"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:14.842010"], ["name", "Owen Big"], ["email", "adam.heathcote@haucklowe.co"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:14.842662"], ["updated_at", "2019-09-03 05:01:14.842662"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TEtYT4hjP8g_0nAeM-4aIw\":{\"token\":\"$2a$12$7Sw6J54cQIJ.GLdEE3Yw9uOMXrrE5Tx6l1Gal2NO/aa.Lx0MTULy2\",\"expiry\":1568696474,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:14.845-05:00\"}}"], ["updated_at", "2019-09-03 05:01:15.024128"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "adam.heathcote@haucklowe.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$HxTZgrpbClIsWFubuGiccO3yUgMEEUR3GXE5VpJ1SioXfP0vfe4dO"], ["updated_at", "2019-09-03 05:01:15.204443"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:15.206313"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 181ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lenora_upton@lehnerlittle.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lenora_upton@lehnerlittle.name"], ["encrypted_password", "$2a$04$kUx2r/TdxTrH9PWuVbsqYO/18.mTZTcA3DmVk5u1cRSoYHypWAejy"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:15.211887"], ["name", "Rusty Dorr"], ["email", "lenora_upton@lehnerlittle.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:15.212531"], ["updated_at", "2019-09-03 05:01:15.212531"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"qMJgTYHlUIdz8FT8ia6fog\":{\"token\":\"$2a$12$Bi6ZS3mIHw282GvCkf3uR.M/5djvGJxuZqjTEEo6f/TCKgOp1e45K\",\"expiry\":1568696475,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:15.213-05:00\"}}"], ["updated_at", "2019-09-03 05:01:15.390333"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lenora_upton@lehnerlittle.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$tKwCLNHdedqVqJ9ktiBmWuj7COsmqClvAUJsXIKcK9hXfRq5Xt5h2"], ["updated_at", "2019-09-03 05:01:15.566748"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:15.567879"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "colton@simonis.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "colton@simonis.net"], ["encrypted_password", "$2a$04$hO2c5nboGvUJskUh7Z9xUO8PkHsGPybSBM1/9Jw9Ok/IV.H1ktoQO"], ["confirmed_at", "2019-09-03 05:01:15.574535"], ["name", "Justin Inch"], ["email", "colton@simonis.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:15.575424"], ["updated_at", "2019-09-03 05:01:15.575424"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"vhiOAZXgN3LRuaDU07Yb0g\":{\"token\":\"$2a$12$8YqBFv7c2MBAKqzcG54SwuGNPFqROj48PKfyCFPL2H3djosPJuM2i\",\"expiry\":1568696475,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:15.576-05:00\"}}"], ["updated_at", "2019-09-03 05:01:15.758503"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "colton@simonis.net"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jinny@klockoyost.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jinny@klockoyost.name"], ["encrypted_password", "$2a$04$mdgXgNipDlJr9NjhGVayG.oykwSyadsubhfGimEqDR4ZCEvp0RgXu"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:15.941895"], ["name", "Sue Case"], ["email", "jinny@klockoyost.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:15.942713"], ["updated_at", "2019-09-03 05:01:15.942713"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fKHDP65RxTG9UDrcNzdTFw\":{\"token\":\"$2a$12$ghmZcdZEXPis.DPtaG/G0OBWda34tRqu1W3unqG63z4/AD2VMWsEa\",\"expiry\":1568696475,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:15.943-05:00\"}}"], ["updated_at", "2019-09-03 05:01:16.120556"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jinny@klockoyost.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$z89VO7jN9/OyoM99r0d5keYTLj1W/0r2p08w4Dd/EqA71IfBEcxve"], ["updated_at", "2019-09-03 05:01:16.310984"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:16.312224"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 192ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bernardo_waelchi@funk.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bernardo_waelchi@funk.io"], ["encrypted_password", "$2a$04$4b/a6pONWe3GHhuUUbLWsuhFIH2HMEILnq1p9rLWICqPXXgUideam"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:16.318974"], ["name", "Skip Roper"], ["email", "bernardo_waelchi@funk.io"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:16.319922"], ["updated_at", "2019-09-03 05:01:16.319922"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hcJrtcsEHRFbHuVeH89Q2A\":{\"token\":\"$2a$12$WaSpRNSyuoepZndnX//PUOBnmGDrjG/rXdGboHQQyZeAm/KdCEdh.\",\"expiry\":1568696476,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:16.321-05:00\"}}"], ["updated_at", "2019-09-03 05:01:16.504084"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "bernardo_waelchi@funk.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$5GcTdkqjyt3FCBuF/iFF9u640WLhU9e6aILsbdlObb4xB8cbSIJmO"], ["updated_at", "2019-09-03 05:01:16.681142"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:16.682202"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wade@nikolaus.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "wade@nikolaus.net"], ["encrypted_password", "$2a$04$4jHmGt40paOU0llXNTA03.XpeyOYNrc865S3ZJSpMDlCcnCoiZVO6"], ["confirmed_at", "2019-09-03 05:01:16.687938"], ["name", "Bart Ender"], ["email", "wade@nikolaus.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:16.688575"], ["updated_at", "2019-09-03 05:01:16.688575"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BvNniARIsZeV06qZTaYd0w\":{\"token\":\"$2a$12$pa0dPuJwMLQQL/V4E8nvkeGeQBVcuTM17YQTODADHcBa9KqC1mL9e\",\"expiry\":1568696476,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:16.689-05:00\"}}"], ["updated_at", "2019-09-03 05:01:16.868464"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "wade@nikolaus.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$XkG.qrar6/HPiJpJzRXtQO1Zy1uonri2vY7NeLftMDVRb3q4zuqdu"], ["updated_at", "2019-09-03 05:01:17.045871"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "agustina@haag.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "agustina@haag.net"], ["encrypted_password", "$2a$04$7eKQTLuEGkObLnEiGAcO6.B3IDIxJPvAyEdkVQL3Ax/kgR0BRLtSq"], ["confirmed_at", "2019-09-03 05:01:17.053112"], ["name", "Rich Feller"], ["email", "agustina@haag.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:17.053959"], ["updated_at", "2019-09-03 05:01:17.053959"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeie@cormier.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jeie@cormier.com"], ["encrypted_password", "$2a$04$GlnAFSGzLuBCchvS4oF4metQSj2ImktZGDdCiCcd54nTKmWLfjqmm"], ["confirmed_at", "2019-09-03 05:01:20.168597"], ["name", "Rocky Shore"], ["email", "jeie@cormier.com"], ["created_at", "2019-09-03 05:01:20.170540"], ["updated_at", "2019-09-03 05:01:20.170540"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "71374367a11716932ab4e0b704df4394e370e9872bdaeef1541b124e950bc27e"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "71374367a11716932ab4e0b704df4394e370e9872bdaeef1541b124e950bc27e"], ["reset_password_sent_at", "2019-09-03 05:01:20.253352"], ["updated_at", "2019-09-03 05:01:20.253591"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"aynSdooWFv_gqEWHamoZ\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "71374367a11716932ab4e0b704df4394e370e9872bdaeef1541b124e950bc27e"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-RWI8ydpKONh2bpTzwFNvQ\":{\"token\":\"$2a$10$KzTJeJLB6EtsNUYW67OiT.clDwGpwC6.OsncPihrPlpoYJ82ZP2Da\",\"expiry\":1568696480}}"], ["allow_password_change", "t"], ["updated_at", "2019-09-03 05:01:20.334461"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=-T2N6JygLhKqBZYbB_edSA&client=-RWI8ydpKONh2bpTzwFNvQ&client_id=-RWI8ydpKONh2bpTzwFNvQ&config=&expiry=1568696480&reset_password=true&token=-T2N6JygLhKqBZYbB_edSA&uid=jeie%40cormier.com Completed 302 Found in 57ms (ActiveRecord: 0.3ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jonah@weber.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jonah@weber.org"], ["encrypted_password", "$2a$04$qZ8JUsLN3Hy6nty3Vzj4/erqHHHs5YoBJaadQAuV1RQx7ncJwnxO."], ["confirmed_at", "2019-09-03 05:01:20.339416"], ["name", "Hare Brain"], ["email", "jonah@weber.org"], ["created_at", "2019-09-03 05:01:20.340095"], ["updated_at", "2019-09-03 05:01:20.340095"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jonah@weber.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jonah@weber.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yBLODq1ZdpHn7tLn9ECj8g\":{\"token\":\"$2a$10$nywnz6FOzCs0UR2f5ZnvA.jQ7iX.s8jKtMfehahRJCZtIeyfSR9ym\",\"expiry\":1568696480,\"updated_at\":\"2019-09-03 05:01:20 UTC\"}}"], ["updated_at", "2019-09-03 05:01:20.389602"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 05:01:20.394160"], ["last_sign_in_at", "2019-09-03 05:01:20.394160"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:01:20.395097"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "thad@moen.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "thad@moen.org"], ["encrypted_password", "$2a$04$21dKZ92I6RZuGcGvc/C/ROhE6m5YMQuW09QhHFbkI8baeYqNefL92"], ["confirmed_at", "2019-09-03 05:01:20.403096"], ["name", "Ken Dahl"], ["email", "thad@moen.org"], ["created_at", "2019-09-03 05:01:20.404120"], ["updated_at", "2019-09-03 05:01:20.404120"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"thad@moen.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "thad@moen.org"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "signe@bradtke.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "signe@bradtke.biz"], ["encrypted_password", "$2a$04$skBCQ08iFeLj1nltKxESZuGUioe6pbwkY7180RT7laTXaLD8GWaU6"], ["confirmation_token", "s73Bmtsc8s1YpuF966gy"], ["confirmation_sent_at", "2019-09-03 05:01:20.414995"], ["name", "Oren Jellow"], ["email", "signe@bradtke.biz"], ["created_at", "2019-09-03 05:01:20.414887"], ["updated_at", "2019-09-03 05:01:20.414887"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"signe@bradtke.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "signe@bradtke.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "burton.buckridge@harber.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "burton.buckridge@harber.io"], ["encrypted_password", "$2a$04$lD7zMO8OW/6lsstI7dOSoeEH.P8TFGZTnhdZSCseMMqYr4llQ8lzK"], ["confirmed_at", "2019-09-03 05:01:20.422396"], ["locked_at", "2019-09-03 05:01:20.422417"], ["name", "Liz Onnia"], ["email", "burton.buckridge@harber.io"], ["created_at", "2019-09-03 05:01:20.423589"], ["updated_at", "2019-09-03 05:01:20.423589"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"burton.buckridge@harber.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "burton.buckridge@harber.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vita.donnelly@leannonmedhurst.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "vita.donnelly@leannonmedhurst.name"], ["encrypted_password", "$2a$04$B4yoKiHmdB3zCxeY9JG0ieCDIBenyrNJwHdFAgXsyJjKfXlZrd/qu"], ["confirmed_at", "2019-09-03 05:01:20.431757"], ["name", "Ilene West"], ["email", "vita.donnelly@leannonmedhurst.name"], ["created_at", "2019-09-03 05:01:20.432730"], ["updated_at", "2019-09-03 05:01:20.432730"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"vita.donnelly@leannonmedhurst.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "vita.donnelly@leannonmedhurst.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tod_harvey@roob.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.9ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tod_harvey@roob.info"], ["encrypted_password", "$2a$04$Y.3lWXpfS.fvcAlXpmRtd.BNZeEZIC1uOZ5Kn3/WP54pfQbLmhJ0y"], ["confirmed_at", "2019-09-03 05:01:20.441425"], ["name", "C. Worthy"], ["email", "tod_harvey@roob.info"], ["created_at", "2019-09-03 05:01:20.442417"], ["updated_at", "2019-09-03 05:01:20.442417"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3XyHNhZXS_THcmqT7PKN2g\":{\"token\":\"$2a$10$q.ZDR1CJu8CQk2SQEpUQSeWHvRCWYdRNZ9sSVIiwkUGuFxVpW9qka\",\"expiry\":1568696480,\"updated_at\":\"2019-09-03 05:01:20 UTC\"}}"], ["updated_at", "2019-09-03 05:01:20.501305"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tod_harvey@roob.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-03 05:01:20.558983"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "frances.konopelski@ratke.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "frances.konopelski@ratke.name"], ["encrypted_password", "$2a$04$/Bx1Rep/9iqDskH4UZf8HOf9UvAp/avaGX0SbFGURoMS2GdAYyKqe"], ["confirmed_at", "2019-09-03 05:01:20.566849"], ["name", "Danielle Soloud"], ["email", "frances.konopelski@ratke.name"], ["created_at", "2019-09-03 05:01:20.567673"], ["updated_at", "2019-09-03 05:01:20.567673"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "emiko@oconnellkemmer.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "emiko@oconnellkemmer.net"], ["encrypted_password", "$2a$04$EMFlMfkoG8NiIzXY7Kn6nOtBdF6EGYTTfkB/aFq.a3/A7BwTKpObe"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:20.571885"], ["name", "Sue Ridge"], ["email", "emiko@oconnellkemmer.net"], ["created_at", "2019-09-03 05:01:20.572772"], ["updated_at", "2019-09-03 05:01:20.572772"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KY2cVAVgW4d0m-qbIHTYow\":{\"token\":\"$2a$10$kpbChjS1Ow/pAqFe1vXfOO.JF9sd14khQPLUQ8TzT3elQfa9HuuOi\",\"expiry\":1568696480,\"updated_at\":\"2019-09-03 05:01:20 UTC\"}}"], ["updated_at", "2019-09-03 05:01:20.630555"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "emiko@oconnellkemmer.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$iifpYYATUhNkWvksaVGtBetdcXZ1V25sI2geH9wHxlOdK/lWX2kuW"], ["updated_at", "2019-09-03 05:01:20.681493"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:20.682461"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jaime@hermannlesch.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jaime@hermannlesch.com"], ["encrypted_password", "$2a$04$WTWFlZpRzEXQILPpftDCi.F.YS7pl7z7SfocQ1bxHL9kpbGzaL3vC"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:20.687553"], ["name", "Al Kaseltzer"], ["email", "jaime@hermannlesch.com"], ["created_at", "2019-09-03 05:01:20.688392"], ["updated_at", "2019-09-03 05:01:20.688392"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"V3bZBCTJCYvLxPBfshFIgA\":{\"token\":\"$2a$10$IBxjZnM16cZHMh5v/U1OhuYiez1hVQkC.XtEryBUgEVbziTt/quYO\",\"expiry\":1568696480,\"updated_at\":\"2019-09-03 05:01:20 UTC\"}}"], ["updated_at", "2019-09-03 05:01:20.741797"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jaime@hermannlesch.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$2dEIaMHeu8HddMOre3LtKOHChZcPMZRRJY8hKP8cpwIMOs0AKYmlO"], ["updated_at", "2019-09-03 05:01:20.792109"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:20.793054"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kris@parisian.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kris@parisian.biz"], ["encrypted_password", "$2a$04$r.TwQDEgHskTuv945jSSuOUE.18dG3l2QjHtMnr71mIoAWs42UDIG"], ["confirmed_at", "2019-09-03 05:01:20.798789"], ["name", "Shanda Lear"], ["email", "kris@parisian.biz"], ["created_at", "2019-09-03 05:01:20.799550"], ["updated_at", "2019-09-03 05:01:20.799550"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"wt7NLCmjX2icZUltdvz1QQ\":{\"token\":\"$2a$10$puzibY0nD2TD96OqPcRcEONZCCuDd0ktwxMFD9die0fy/PaAk048C\",\"expiry\":1568696480,\"updated_at\":\"2019-09-03 05:01:20 UTC\"}}"], ["updated_at", "2019-09-03 05:01:20.851424"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kris@parisian.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jesus.gutmann@gerlachberge.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jesus.gutmann@gerlachberge.info"], ["encrypted_password", "$2a$04$1pNG2RXfYIcqeRRSYE79p.Mz2Jjtik8VW41oDzqGoB3HiG5F8wP02"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:20.912393"], ["name", "Pete Moss"], ["email", "jesus.gutmann@gerlachberge.info"], ["created_at", "2019-09-03 05:01:20.913207"], ["updated_at", "2019-09-03 05:01:20.913207"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"aaGHvgq7mZbFoUD4CdGhSQ\":{\"token\":\"$2a$10$m42FzD7QFVq2EIUN2sX/hOqnMK8xa3LAd50tfg0rhSu.3/UbBZd4a\",\"expiry\":1568696480,\"updated_at\":\"2019-09-03 05:01:20 UTC\"}}"], ["updated_at", "2019-09-03 05:01:20.961483"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jesus.gutmann@gerlachberge.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$a4PRZliFIoDwmufSJ3kKE.9o3BtSKGjxXf0bP73.ppUIXPCbR9Q4."], ["updated_at", "2019-09-03 05:01:21.016324"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:21.017341"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "katia@reilly.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "katia@reilly.com"], ["encrypted_password", "$2a$04$WD9jE99kp50NHBm3CI/ZxehJXbzu8zfCZZoEv5rKZkrEcDzAZP1/G"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:01:21.021631"], ["name", "Gladys Eeya"], ["email", "katia@reilly.com"], ["created_at", "2019-09-03 05:01:21.022291"], ["updated_at", "2019-09-03 05:01:21.022291"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"uQnlSanDKELtHjpjBQB2hg\":{\"token\":\"$2a$10$ePJmk3eoWSP2MbasCw2DP.GkgYA4z/wpnhek/jqPl1UNMHdSId7Hq\",\"expiry\":1568696481,\"updated_at\":\"2019-09-03 05:01:21 UTC\"}}"], ["updated_at", "2019-09-03 05:01:21.074331"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "katia@reilly.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$BneSGbOa1NMgwwHqextzgupYfc.DWOYt2EueF7sD1UMkileP465Hu"], ["updated_at", "2019-09-03 05:01:21.126652"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:01:21.127681"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kaandra@crona.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kaandra@crona.net"], ["encrypted_password", "$2a$04$HGpz2G6iL8Tf8yRqOtogqezIhc9d06FdFW5q4EKzulweLycRzmKfO"], ["confirmed_at", "2019-09-03 05:01:21.135076"], ["name", "Olive Hoyl"], ["email", "kaandra@crona.net"], ["created_at", "2019-09-03 05:01:21.135798"], ["updated_at", "2019-09-03 05:01:21.135798"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"zaXC2mn26aeOwQwCxFlt5Q\":{\"token\":\"$2a$10$cm5oJwJwJPGUz4NNdXjJ/ushOK5PQCJA6854A4TkpuIsh5Mvu7veq\",\"expiry\":1568696481,\"updated_at\":\"2019-09-03 05:01:21 UTC\"}}"], ["updated_at", "2019-09-03 05:01:21.188337"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kaandra@crona.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$HHvbzoAJK.f.zVdtIEbLIerv1nKXRs5YXrHlMlFkot1S2k1Fqw/cK"], ["updated_at", "2019-09-03 05:01:21.240713"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "otis@harvey.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "otis@harvey.biz"], ["encrypted_password", "$2a$04$HJlhDV9Sp30rcUjPb7sYu.9hQVpUFmgBlS1gGZryFAhtwn3suNVJK"], ["confirmed_at", "2019-09-03 05:01:21.249243"], ["name", "Chanda Lear"], ["email", "otis@harvey.biz"], ["created_at", "2019-09-03 05:01:21.250382"], ["updated_at", "2019-09-03 05:01:21.250382"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eugenio_gerhold@robel.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "eugenio_gerhold@robel.net"], ["encrypted_password", "$2a$04$9QcJguzx5wnZWaI97lbWu.0phdGwpOqLZk3eGzNAPUlWakVx/.PnK"], ["confirmed_at", "2019-09-03 05:01:24.857663"], ["name", "Nick O'Time"], ["email", "eugenio_gerhold@robel.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:24.860184"], ["updated_at", "2019-09-03 05:01:24.860184"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0395aab4751a3b21962df4605ebdd3e8cc60552e4c45424b39d8767562c91e04"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "0395aab4751a3b21962df4605ebdd3e8cc60552e4c45424b39d8767562c91e04"], ["reset_password_sent_at", "2019-09-03 05:01:24.947759"], ["updated_at", "2019-09-03 05:01:24.947979"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"Dwe_xgkQqN9ay_HpUX-j\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0395aab4751a3b21962df4605ebdd3e8cc60552e4c45424b39d8767562c91e04"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"wXdl1fRDIxiNz4UEi9mBVg\":{\"token\":\"$2a$12$OGQHRj8wKqTA2PFJ2deafeGDyZ0mgEHg6Y/HtEThShkc6D52ltPLy\",\"expiry\":1568696484}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 05:01:25.153294"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1568696484&client=wXdl1fRDIxiNz4UEi9mBVg&client_id=wXdl1fRDIxiNz4UEi9mBVg&config=&expiry=1568696484&reset_password=true&token=1568696484&uid=eugenio_gerhold%40robel.net Completed 302 Found in 188ms (ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "korey_borer@cummings.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "korey_borer@cummings.org"], ["encrypted_password", "$2a$04$7RHEKXRaiSgcIFK9/qqXfuH5S4fs2Y.Ww6xbW.NlVhvQ9pb42zMcW"], ["confirmed_at", "2019-09-03 05:01:25.160590"], ["name", "Will Power"], ["email", "korey_borer@cummings.org"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:25.161359"], ["updated_at", "2019-09-03 05:01:25.161359"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"korey_borer@cummings.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "korey_borer@cummings.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"K2rNvs5toKdXO2nE06ICpQ\":{\"token\":\"$2a$12$/rFUVNUjYiJvGhd/OwtpxezIQD/dbVuDe8oDDrD6E6siCOVb7FDgS\",\"expiry\":1568696485,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:25.165-05:00\"}}"], ["updated_at", "2019-09-03 05:01:25.343674"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 05:01:25.346317"], ["last_sign_in_at", "2019-09-03 05:01:25.346317"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:01:25.346566"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 185ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cedric@starkboyle.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cedric@starkboyle.biz"], ["encrypted_password", "$2a$04$eToG85tIor2IDTdyun/OO.DC1T/krfMrAI6fcDMQTQp7vqPjDK1V6"], ["confirmed_at", "2019-09-03 05:01:25.353464"], ["name", "Igor Beaver"], ["email", "cedric@starkboyle.biz"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:25.354376"], ["updated_at", "2019-09-03 05:01:25.354376"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"cedric@starkboyle.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cedric@starkboyle.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-09-03 05:01:25.360372"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brian@hand.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "brian@hand.info"], ["encrypted_password", "$2a$04$3dJwxdmUwaPSRp0b.jk9D.dgnj6TNUqK614SD/uleSbT5tHYFpjrW"], ["confirmation_token", "55utzasX45Y9jQFCKQrZ"], ["confirmation_sent_at", "2019-09-03 05:01:25.365239"], ["name", "Kristie Hannity"], ["email", "brian@hand.info"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:25.365158"], ["updated_at", "2019-09-03 05:01:25.365158"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"brian@hand.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "brian@hand.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bernard_mohr@macejkovicoconner.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bernard_mohr@macejkovicoconner.biz"], ["encrypted_password", "$2a$04$GYPPR4K.5Wdmsb3nr1YjfOTBeLVskHteZ3pAt8o6rZB87v8NFbrvS"], ["confirmed_at", "2019-09-03 05:01:25.371706"], ["locked_at", "2019-09-03 05:01:25.371718"], ["name", "Sandy Spring"], ["email", "bernard_mohr@macejkovicoconner.biz"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:25.372572"], ["updated_at", "2019-09-03 05:01:25.372572"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"bernard_mohr@macejkovicoconner.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bernard_mohr@macejkovicoconner.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ali@gorczany.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ali@gorczany.co"], ["encrypted_password", "$2a$04$MnGPdG0UTI.nwPTPGZd7CubU9IIAJGw.cciIG8amAnjojwRLIc/ca"], ["confirmed_at", "2019-09-03 05:01:25.379905"], ["name", "Freida Convict"], ["email", "ali@gorczany.co"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:25.381452"], ["updated_at", "2019-09-03 05:01:25.381452"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ali@gorczany.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ali@gorczany.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mose@rath.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mose@rath.co"], ["encrypted_password", "$2a$04$8QRUMqtTKkwwD8jEVc4ZaeoNr4kkOnZfY67mt.tDAcTiz964alpyS"], ["confirmed_at", "2019-09-03 05:01:25.391051"], ["name", "Winnie Dipoo"], ["email", "mose@rath.co"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:25.392007"], ["updated_at", "2019-09-03 05:01:25.392007"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-cUhpqRN9xfqmt9uyz6wcA\":{\"token\":\"$2a$12$Cgyn9yGRDGiLmZiLHTcD3uDvjvVGA5cXIrNIyTYuPP3ZynAWqgTr2\",\"expiry\":1568696485,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:25.393-05:00\"}}"], ["updated_at", "2019-09-03 05:01:25.583454"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "mose@rath.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-09-03 05:01:25.761796"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 177ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "garrett@rosenbaumfadel.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "garrett@rosenbaumfadel.co"], ["encrypted_password", "$2a$04$yq.i0/lT8Uhxu4yx8IhKDeToVTNE781gGxm4DZuAS.jBo9JMheGBW"], ["confirmed_at", "2019-09-03 05:01:25.770625"], ["name", "Dee Sember"], ["email", "garrett@rosenbaumfadel.co"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:25.771550"], ["updated_at", "2019-09-03 05:01:25.771550"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "randolph_rodriguez@kuhic.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "randolph_rodriguez@kuhic.org"], ["encrypted_password", "$2a$04$cd6tRWSLuhldqI9tIG3cz.BM.KIUp0k1tS9tN9KjOQiDCh8GrP0Oq"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:01:25.776217"], ["name", "Anita Bath"], ["email", "randolph_rodriguez@kuhic.org"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:25.776918"], ["updated_at", "2019-09-03 05:01:25.776918"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ymCUe3NvBArrs-EqJ-JOnw\":{\"token\":\"$2a$12$92sfxK4rQ.6tcd0.iErDZOVuRbeLz8aHWFr6piTLIiqg1IeK7zSqC\",\"expiry\":1568696485,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:25.779-05:00\"}}"], ["updated_at", "2019-09-03 05:01:25.961967"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "randolph_rodriguez@kuhic.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$2XsoMZ5l1nJfiU7a71TRoez/4HCm7y0d0M2o.yHxkmHmssSTcrtqa"], ["updated_at", "2019-09-03 05:01:26.139253"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:01:26.140207"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "renaldo@johnson.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "renaldo@johnson.co"], ["encrypted_password", "$2a$04$5sB602SwK5xY9FtINSwXq.c3hCXzgP5oZtBua4Om1MGtKqqsyL9G6"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:01:26.147259"], ["name", "Milly Meter"], ["email", "renaldo@johnson.co"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:26.148424"], ["updated_at", "2019-09-03 05:01:26.148424"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DbzDzBur4ed-jMldGGo-XA\":{\"token\":\"$2a$12$QF1NVbfphn4YRgY950NUEe/MA6fP8q5QW99HkGRPA6VtBCEzmw71.\",\"expiry\":1568696486,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:26.149-05:00\"}}"], ["updated_at", "2019-09-03 05:01:26.332064"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "renaldo@johnson.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$NCvvV4JqqTjsIzpXfnRBQOhCcVPzBb0URnNTTt4PYgrFuPMVOeJWu"], ["updated_at", "2019-09-03 05:01:26.509043"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:01:26.510000"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "steve.conroy@kuphal.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "steve.conroy@kuphal.net"], ["encrypted_password", "$2a$04$lDyBpZhzlkW6Yove2yU7tOVDswldj.y8ellqpqbtdAt1chJB7z30C"], ["confirmed_at", "2019-09-03 05:01:26.516411"], ["name", "Skip Dover"], ["email", "steve.conroy@kuphal.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:26.517245"], ["updated_at", "2019-09-03 05:01:26.517245"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ntnVwbg5l_LgYOJyWSsm4A\":{\"token\":\"$2a$12$2Dktzll6d08dtic1vGqmpO5h6bbDbMVdqfUopLxdRGf0PxjRSr2Cm\",\"expiry\":1568696486,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:26.518-05:00\"}}"], ["updated_at", "2019-09-03 05:01:26.696734"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "steve.conroy@kuphal.net"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "paris@emardreinger.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "paris@emardreinger.co"], ["encrypted_password", "$2a$04$UiRDO87MLQFf86t/1s/Io.PE6Xyw1RPbcjYEZ.J4oSMPgH7s8r01i"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:01:26.880027"], ["name", "Sue Permann"], ["email", "paris@emardreinger.co"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:26.880839"], ["updated_at", "2019-09-03 05:01:26.880839"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mJP_8hYVqHm6wcJ2-0z0tg\":{\"token\":\"$2a$12$VE0gnhdi8GloSDnNztiuZ.pvqkWlrbNnGNWbOTwMV9vlfaKUT9Y4K\",\"expiry\":1568696486,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:26.881-05:00\"}}"], ["updated_at", "2019-09-03 05:01:27.063879"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "paris@emardreinger.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$g1265Kpsa11J5.vOQ5CtAu9RT5uvvc2QCCnFX4dE9mnOsQdOffdmq"], ["updated_at", "2019-09-03 05:01:27.259724"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:01:27.260958"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 197ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deeann@blick.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "deeann@blick.info"], ["encrypted_password", "$2a$04$cWBeTPv6w0fsnvVbM.es1OakszkM.U5sg3xmmjjgK4sRSAb3lu9Gm"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:01:27.266909"], ["name", "Tom Katt"], ["email", "deeann@blick.info"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:27.267779"], ["updated_at", "2019-09-03 05:01:27.267779"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"4ffRv76UFPw6xGO5patDWg\":{\"token\":\"$2a$12$ZvZSR2d8mZAEmyflWbsCPej6aVi7wLqhKSlhSXigHQBzokl54KAXO\",\"expiry\":1568696487,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:27.268-05:00\"}}"], ["updated_at", "2019-09-03 05:01:27.455202"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "deeann@blick.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$cZbyTiZNqWhlSr0ynYyHMenGaX4q5Hp4B79jMClqjS7HURwCXmbya"], ["updated_at", "2019-09-03 05:01:27.631948"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:01:27.632913"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 177ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "suzie@mohr.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "suzie@mohr.io"], ["encrypted_password", "$2a$04$M70u54sed5tjEQpa5ps3sO08jGZb8pP8MoladsvcMo9cTWHK8aXWm"], ["confirmed_at", "2019-09-03 05:01:27.638686"], ["name", "Doug Hole"], ["email", "suzie@mohr.io"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:27.639327"], ["updated_at", "2019-09-03 05:01:27.639327"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2_eBAB4BuZ1eCdmk2QOaGA\":{\"token\":\"$2a$12$VSyxJlPZOK1jGd1TD8M4yOM/qA5c7ufBjst5RJsZO5RaKO0Z83w5m\",\"expiry\":1568696487,\"last_token\":null,\"updated_at\":\"2019-09-03T00:01:27.640-05:00\"}}"], ["updated_at", "2019-09-03 05:01:27.817800"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "suzie@mohr.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$faIBq8esYyEI/qmra59X2.SM89zZZQ3HGa2YUZRk5D8y/v6BTDt22"], ["updated_at", "2019-09-03 05:01:27.996514"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 179ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ezekiel@hermannnikolaus.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ezekiel@hermannnikolaus.org"], ["encrypted_password", "$2a$04$azZsl5SF2yHGlfAjiKUy7.oUOvpw2zTkQDO.TIpsjTkdV2XrlHU3K"], ["confirmed_at", "2019-09-03 05:01:28.003545"], ["name", "Beau Tye"], ["email", "ezekiel@hermannnikolaus.org"], ["tokens", "{}"], ["created_at", "2019-09-03 05:01:28.004346"], ["updated_at", "2019-09-03 05:01:28.004346"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "milford@steuberbednar.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "milford@steuberbednar.info"], ["encrypted_password", "$2a$04$h7.27Ua9QAnTgUwvAA6AC.WA0vzDxgnBZ.pnC0Or/m7SAXIN7IO2q"], ["confirmed_at", "2019-09-03 05:01:31.172992"], ["name", "Daisy Chain"], ["email", "milford@steuberbednar.info"], ["created_at", "2019-09-03 05:01:31.174905"], ["updated_at", "2019-09-03 05:01:31.174905"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "50f50d5b90863396ee9800c1622657a41c0593b2b27ff7e80f6f2d80ffc2c25d"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "50f50d5b90863396ee9800c1622657a41c0593b2b27ff7e80f6f2d80ffc2c25d"], ["reset_password_sent_at", "2019-09-03 05:01:31.255179"], ["updated_at", "2019-09-03 05:01:31.255414"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"xbrSMFzywxzNxGLGBZmn\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "50f50d5b90863396ee9800c1622657a41c0593b2b27ff7e80f6f2d80ffc2c25d"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"GoC2UoxQGpDonyCjZuUG9g\":{\"token\":\"$2a$10$CUVXSX9mclLXCiENBlusR.2UKHrysTBRr7JJ.ZLVUmjYGp7WG2nyG\",\"expiry\":1568696491}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 05:01:31.327141"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=k4wkrBZoC4Qk_sWCXSIhdw&client=GoC2UoxQGpDonyCjZuUG9g&client_id=GoC2UoxQGpDonyCjZuUG9g&config=&expiry=1568696491&reset_password=true&token=k4wkrBZoC4Qk_sWCXSIhdw&uid=milford%40steuberbednar.info Completed 302 Found in 58ms (ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "laverne@grady.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "laverne@grady.co"], ["encrypted_password", "$2a$04$aUMF/TWCnT2U7VDyLwzrXOCFDroPGWBz3R.EUBPbeHzUf5MkOhR.i"], ["confirmed_at", "2019-09-03 05:01:31.333300"], ["name", "Sheri Cola"], ["email", "laverne@grady.co"], ["created_at", "2019-09-03 05:01:31.334168"], ["updated_at", "2019-09-03 05:01:31.334168"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"laverne@grady.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "laverne@grady.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"RvBJWGFcwes63kjjChvmUA\":{\"token\":\"$2a$10$gkeAP6S1eKVyAV1fokQWce1oC8FmLPoH9JHcE.6V96kA0IlJAXIQe\",\"expiry\":1568696491,\"updated_at\":\"2019-09-03 05:01:31 UTC\"}}"], ["updated_at", "2019-09-03 05:01:31.385938"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 05:01:31.389055"], ["last_sign_in_at", "2019-09-03 05:01:31.389055"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:01:31.389454"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "daniel_krajcik@gerhold.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "daniel_krajcik@gerhold.biz"], ["encrypted_password", "$2a$04$kYqBVQVIseES654GqB6MAe2wkOOXi.WFEHMs01GOyiO4jn9gsYpFC"], ["confirmed_at", "2019-09-03 05:01:31.396828"], ["name", "Candy Baskett"], ["email", "daniel_krajcik@gerhold.biz"], ["created_at", "2019-09-03 05:01:31.397713"], ["updated_at", "2019-09-03 05:01:31.397713"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"daniel_krajcik@gerhold.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "daniel_krajcik@gerhold.biz"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nadene@hilllrosenbaum.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nadene@hilllrosenbaum.info"], ["encrypted_password", "$2a$04$TCzuD0HgFrZKvOXjvDwUS.sR0IDUwKdHrn4awCp71mHt40t3bwaE2"], ["confirmation_token", "UeA2Js_eanfgA6zQ6rBq"], ["confirmation_sent_at", "2019-09-03 05:01:31.410054"], ["name", "Rick Shaw"], ["email", "nadene@hilllrosenbaum.info"], ["created_at", "2019-09-03 05:01:31.409908"], ["updated_at", "2019-09-03 05:01:31.409908"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"nadene@hilllrosenbaum.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nadene@hilllrosenbaum.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "olympia.gerhold@harris.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "olympia.gerhold@harris.com"], ["encrypted_password", "$2a$04$ZFGNz.TBKJ7wt8hJUluEEelQOr3KKnT0kSdJGSer204A0oLRDXn6q"], ["confirmed_at", "2019-09-03 05:01:31.418213"], ["locked_at", "2019-09-03 05:01:31.418229"], ["name", "Rusty Irons"], ["email", "olympia.gerhold@harris.com"], ["created_at", "2019-09-03 05:01:31.419217"], ["updated_at", "2019-09-03 05:01:31.419217"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"olympia.gerhold@harris.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "olympia.gerhold@harris.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "myles@wolf.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "myles@wolf.org"], ["encrypted_password", "$2a$04$si7NApEG58g5pHblyl8mC.6xVmZvmT8QMxtFcyipnIFk/St/7XJN."], ["confirmed_at", "2019-09-03 05:01:31.426380"], ["name", "Stan Dup"], ["email", "myles@wolf.org"], ["created_at", "2019-09-03 05:01:31.427214"], ["updated_at", "2019-09-03 05:01:31.427214"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"myles@wolf.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "myles@wolf.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marlin@schneider.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marlin@schneider.org"], ["encrypted_password", "$2a$04$1fLwkBMLvOKrzqoAxnaeOefbXbs07a7iRjVaP/70lW9bcPjVW9hJW"], ["confirmed_at", "2019-09-03 05:01:31.435369"], ["name", "Jacklyn Hyde"], ["email", "marlin@schneider.org"], ["created_at", "2019-09-03 05:01:31.436309"], ["updated_at", "2019-09-03 05:01:31.436309"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"oasNZV7cDY8bIg9sF4OGZQ\":{\"token\":\"$2a$10$7SrOrJWtNkrKDW0Yv8C8U.KvAK5NRfAb6Zq5nbvxAeJeKiOoMykuS\",\"expiry\":1568696491,\"updated_at\":\"2019-09-03 05:01:31 UTC\"}}"], ["updated_at", "2019-09-03 05:01:31.491804"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "marlin@schneider.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-03 05:01:31.546498"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mei@schroederwolf.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mei@schroederwolf.name"], ["encrypted_password", "$2a$04$GF6N.xodle69tYYW.v4WieSIlMF/tBkO7LsQTfciC9/SABcVsZyn2"], ["confirmed_at", "2019-09-03 05:01:31.554209"], ["name", "Gladys Eeya"], ["email", "mei@schroederwolf.name"], ["created_at", "2019-09-03 05:01:31.555230"], ["updated_at", "2019-09-03 05:01:31.555230"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deane.kreiger@huels.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "deane.kreiger@huels.com"], ["encrypted_password", "$2a$04$PLfMVJevTa0OJM8YPTe6SeQAVjZMh.koWEJutogNBz/9xsY6QprVG"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:01:31.559021"], ["name", "Holly Day"], ["email", "deane.kreiger@huels.com"], ["created_at", "2019-09-03 05:01:31.559630"], ["updated_at", "2019-09-03 05:01:31.559630"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"sNfbDZV8IRbOWFYwL8TOEQ\":{\"token\":\"$2a$10$ftTB4sLsE1RxZmBkAcgZ9.m3EdxfZlW/qI5h6rzWVeG0rjpd1Ux0a\",\"expiry\":1568696491,\"updated_at\":\"2019-09-03 05:01:31 UTC\"}}"], ["updated_at", "2019-09-03 05:01:31.614972"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "deane.kreiger@huels.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$FkfgyV9QmUlo37NsX2lJB./7zh1SaRw3S2XQb8bznyCQq1CZO2UlG"], ["updated_at", "2019-09-03 05:01:31.666288"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:01:31.667185"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "yadira@cummings.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "yadira@cummings.co"], ["encrypted_password", "$2a$04$U91AynpjRlrI0IJqZXNWqupOPM4c2Xx.zv1HOYJ3Rp2vaUvCAGxUm"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:01:31.672042"], ["name", "Darren Deeds"], ["email", "yadira@cummings.co"], ["created_at", "2019-09-03 05:01:31.672817"], ["updated_at", "2019-09-03 05:01:31.672817"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"JOfLmb9O8wAUTwQV0ZqeJQ\":{\"token\":\"$2a$10$NAY2.Z4eiZvQcNBQV1zTsOBIWoYMWsx7eQdSvlwdZtPWh6OdiD5ru\",\"expiry\":1568696491,\"updated_at\":\"2019-09-03 05:01:31 UTC\"}}"], ["updated_at", "2019-09-03 05:01:31.723860"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "yadira@cummings.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$LfR07koLg5SftaY2iZafZu2KVzwipK6u2SONU/mXCTl5qBsQUcaIG"], ["updated_at", "2019-09-03 05:01:31.775304"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:01:31.776186"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "danyell@abshire.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "danyell@abshire.co"], ["encrypted_password", "$2a$04$oPxXPDNts8D7ZFOV7kmRnujUc55ELp7O0dhU7rUX/KqKtey9hkJza"], ["confirmed_at", "2019-09-03 05:01:31.783857"], ["name", "Isadore Bell"], ["email", "danyell@abshire.co"], ["created_at", "2019-09-03 05:01:31.785008"], ["updated_at", "2019-09-03 05:01:31.785008"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EJcr9XIg1ok52csp7A2rtA\":{\"token\":\"$2a$10$.GZPIzOQeVjQsP1ZK3OE2OYjM671akTltnY5PjlbdP8qD8FBvgqCy\",\"expiry\":1568696491,\"updated_at\":\"2019-09-03 05:01:31 UTC\"}}"], ["updated_at", "2019-09-03 05:01:31.834478"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "danyell@abshire.co"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "keesha@bailey.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "keesha@bailey.org"], ["encrypted_password", "$2a$04$qp.RNGS8T7w9MqBcJSHqD.S2sDfC4tf7IFn0zqJX0tgKBFV03OkiK"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:01:31.895119"], ["name", "Rosie Peach"], ["email", "keesha@bailey.org"], ["created_at", "2019-09-03 05:01:31.895939"], ["updated_at", "2019-09-03 05:01:31.895939"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"6GJQU9Pjq-ZsP76VtvjmdQ\":{\"token\":\"$2a$10$wVli7G6rDG8uTjR5fWekWO.hIuOt2WD87VvsTzLyKxzCNnBQJVHN2\",\"expiry\":1568696491,\"updated_at\":\"2019-09-03 05:01:31 UTC\"}}"], ["updated_at", "2019-09-03 05:01:31.949160"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "keesha@bailey.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$JBa56AWa/Q6RwMmD5YWdtOYOPJu/rjwr5/1LUePDYYmvFLPaETFkG"], ["updated_at", "2019-09-03 05:01:32.001736"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:01:32.002678"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fidelia@dubuque.io"], ["provider", "email"], ["LIMIT", 1]] User Create (14.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "fidelia@dubuque.io"], ["encrypted_password", "$2a$04$326auhkqQHfqqO6QKhI/Q.B6jO/rKsFxHa2GVT9nV.KXmkMRtkKYe"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:01:32.007528"], ["name", "Lowden Clear"], ["email", "fidelia@dubuque.io"], ["created_at", "2019-09-03 05:01:32.008357"], ["updated_at", "2019-09-03 05:01:32.008357"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"P1cmoClSjhv6cpza3uw5CQ\":{\"token\":\"$2a$10$tb/7aXvn9ZjXDEf3DKfpAOSY22MM3FkSrFEvYU7h25G0ZZIqRTAvG\",\"expiry\":1568696492,\"updated_at\":\"2019-09-03 05:01:32 UTC\"}}"], ["updated_at", "2019-09-03 05:01:32.076278"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "fidelia@dubuque.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$X45PPqtyWdgHJVwVTB7O8u/ccOo6CZJL9/azPlvPoS3lU6Dli0naS"], ["updated_at", "2019-09-03 05:01:32.127286"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:01:32.128162"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "donnetta.bruen@legrosankunding.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "donnetta.bruen@legrosankunding.name"], ["encrypted_password", "$2a$04$SmualzAWAIQzfVtHMVkuFe3NYFIKZjababkDenNQ4Pvqs.AvvAJCC"], ["confirmed_at", "2019-09-03 05:01:32.133948"], ["name", "Chrystal Glass"], ["email", "donnetta.bruen@legrosankunding.name"], ["created_at", "2019-09-03 05:01:32.134726"], ["updated_at", "2019-09-03 05:01:32.134726"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5un2J0NdAFkZ7LHWGeULTA\":{\"token\":\"$2a$10$GmZDobHRHdMQ6Qb7vuti3Ovj4ZP02oCCfmjnz6r/XcUQYKY7XjJUi\",\"expiry\":1568696492,\"updated_at\":\"2019-09-03 05:01:32 UTC\"}}"], ["updated_at", "2019-09-03 05:01:32.185143"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "donnetta.bruen@legrosankunding.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$EbCQ3pcyRk0/trPSrCUTbumSvDefVWYjrLjKg1UxDLum9bNoG.Wva"], ["updated_at", "2019-09-03 05:01:32.237700"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bruno_rogahn@hilll.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bruno_rogahn@hilll.com"], ["encrypted_password", "$2a$04$9GL3KMpk7OwOYn0UiCgjRemxBRFl2PO/.3e5CCaeDwBBvGupmNBaq"], ["confirmed_at", "2019-09-03 05:01:32.244050"], ["name", "Faye Kinnitt"], ["email", "bruno_rogahn@hilll.com"], ["created_at", "2019-09-03 05:01:32.244834"], ["updated_at", "2019-09-03 05:01:32.244834"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (1.7ms) SELECT sqlite_version(*)  (1.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "denis@sawayn.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "denis@sawayn.info"], ["encrypted_password", "$2a$04$MQXZEb4QUxP05j94aaZnPe2vh1k8i70VmjwREx73gJMVN18uTWf7K"], ["confirmed_at", "2019-09-03 05:01:36.203098"], ["name", "Will Power"], ["email", "denis@sawayn.info"], ["created_at", "2019-09-03 05:01:36.204349"], ["updated_at", "2019-09-03 05:01:36.204349"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f14a0ef0bb203bbe10485804f8776ea5905e15e470e18be3fa39d54db2290f6c"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f14a0ef0bb203bbe10485804f8776ea5905e15e470e18be3fa39d54db2290f6c"], ["reset_password_sent_at", "2019-09-03 05:01:36.288437"], ["updated_at", "2019-09-03 05:01:36.288618"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"q9Xn9zFoWxE39SWob5p7\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f14a0ef0bb203bbe10485804f8776ea5905e15e470e18be3fa39d54db2290f6c"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"1E5BdzB6dKcKoikr0KqQaQ\":{\"token\":\"$2a$10$6qWyPO4zgm2yWF1w8wSn9.B5mvxI3XMFyCyNfZRPL3myKVJ44yXEK\",\"expiry\":1568696496}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 05:01:36.362311"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=6pOcXX-kYamK1Tsegd_-7w&client=1E5BdzB6dKcKoikr0KqQaQ&client_id=1E5BdzB6dKcKoikr0KqQaQ&config=&expiry=1568696496&reset_password=true&token=6pOcXX-kYamK1Tsegd_-7w&uid=denis%40sawayn.info Completed 302 Found in 55ms (ActiveRecord: 0.2ms | Allocations: 11630) TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "paul_beatty@leffler.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "paul_beatty@leffler.com"], ["encrypted_password", "$2a$04$he/X24wXT6HirIyxbZ/wwuRxiYmdPc336EOw4KckcE5isFmFrMfNK"], ["confirmed_at", "2019-09-03 05:01:36.370402"], ["name", "Dwayne Pipe"], ["email", "paul_beatty@leffler.com"], ["created_at", "2019-09-03 05:01:36.371234"], ["updated_at", "2019-09-03 05:01:36.371234"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"paul_beatty@leffler.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "paul_beatty@leffler.com"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KnkBIRC0FN0SCvGorLLqPA\":{\"token\":\"$2a$10$q/5AD5/Z9cDEQb5ILHUWMODwaU/bkBwhZV6Z8pKXx5jjvnZG7HDs.\",\"expiry\":1568696496,\"updated_at\":\"2019-09-03 05:01:36 UTC\"}}"], ["updated_at", "2019-09-03 05:01:36.423265"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 05:01:36.426137"], ["last_sign_in_at", "2019-09-03 05:01:36.426137"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:01:36.426333"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 3205) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lucila@quitzon.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lucila@quitzon.name"], ["encrypted_password", "$2a$04$Kwr2o3PTEFs0MDow5O38euj9ucQAAMk8Ov7XVb4qZft8xce6N3QLu"], ["confirmed_at", "2019-09-03 05:01:36.433410"], ["name", "Al Dente"], ["email", "lucila@quitzon.name"], ["created_at", "2019-09-03 05:01:36.434238"], ["updated_at", "2019-09-03 05:01:36.434238"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lucila@quitzon.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lucila@quitzon.name"], ["LIMIT", 1]] User Update All (0.2ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 9ms (Views: 0.4ms | ActiveRecord: 0.5ms | Allocations: 1986) TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "margareta.jacobs@kozey.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "margareta.jacobs@kozey.net"], ["encrypted_password", "$2a$04$xiWxtWOTrGZ4bBCfflq2meAfn/urxNwmQaFHz0biYLIMoyxaFfP9y"], ["confirmation_token", "mECkHyffy-VRmMua9smS"], ["confirmation_sent_at", "2019-09-03 05:01:36.452440"], ["name", "Les Moore"], ["email", "margareta.jacobs@kozey.net"], ["created_at", "2019-09-03 05:01:36.452339"], ["updated_at", "2019-09-03 05:01:36.452339"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"margareta.jacobs@kozey.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "margareta.jacobs@kozey.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1342) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "roderick@okunevaconroy.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "roderick@okunevaconroy.info"], ["encrypted_password", "$2a$04$Db0EReJZuRClkyt8Oh3xvevistdS0mnXM7kC7auL6vPG/AvGVXTSq"], ["confirmed_at", "2019-09-03 05:01:36.460270"], ["locked_at", "2019-09-03 05:01:36.460286"], ["name", "Ilene Dover"], ["email", "roderick@okunevaconroy.info"], ["created_at", "2019-09-03 05:01:36.461282"], ["updated_at", "2019-09-03 05:01:36.461282"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"roderick@okunevaconroy.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "roderick@okunevaconroy.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1360) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brian_koelpin@hoppeglover.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "brian_koelpin@hoppeglover.org"], ["encrypted_password", "$2a$04$yQV4auZcaQX87eqhY1ISKOjrM7caV6nlND0OKBmOOMVLcV1jMc7Li"], ["confirmed_at", "2019-09-03 05:01:36.469397"], ["name", "Polly Ester"], ["email", "brian_koelpin@hoppeglover.org"], ["created_at", "2019-09-03 05:01:36.470331"], ["updated_at", "2019-09-03 05:01:36.470331"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"brian_koelpin@hoppeglover.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "brian_koelpin@hoppeglover.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1339) TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lewis.brekke@runte.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lewis.brekke@runte.org"], ["encrypted_password", "$2a$04$RezxNXIVrJibcIYGFiDa4uDaU4gWadJ720jWXrKyxWsfU3Abvl2YG"], ["confirmed_at", "2019-09-03 05:01:36.481101"], ["name", "Ima Hogg"], ["email", "lewis.brekke@runte.org"], ["created_at", "2019-09-03 05:01:36.483125"], ["updated_at", "2019-09-03 05:01:36.483125"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OZal5KNo8gWhKWg1PgpqEQ\":{\"token\":\"$2a$10$KKd.0u9zuY5sYDaKSH5bFeID5e3.WpcXMkx.nNqxvDfmzDkFhwd7G\",\"expiry\":1568696496,\"updated_at\":\"2019-09-03 05:01:36 UTC\"}}"], ["updated_at", "2019-09-03 05:01:36.545183"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lewis.brekke@runte.org"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-03 05:01:36.598989"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1810) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 939) TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mickey.schowalter@jerde.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mickey.schowalter@jerde.net"], ["encrypted_password", "$2a$04$ov9Ro7tKhP8NXQ0WFRvbJ.8jJQ2hKwb.DY2OUief5pJGagxBlUOj2"], ["confirmed_at", "2019-09-03 05:01:36.606292"], ["name", "Stan Still"], ["email", "mickey.schowalter@jerde.net"], ["created_at", "2019-09-03 05:01:36.607179"], ["updated_at", "2019-09-03 05:01:36.607179"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "otto_schroeder@torp.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "otto_schroeder@torp.name"], ["encrypted_password", "$2a$04$0vAWujUnpSibBg5Cl//TguwsJdfzujCy39HlKhSxPfcEfHUbapYsW"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:01:36.611254"], ["name", "Mason Jarr"], ["email", "otto_schroeder@torp.name"], ["created_at", "2019-09-03 05:01:36.611864"], ["updated_at", "2019-09-03 05:01:36.611864"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"IKKL3eru7W_oJUbXS0_0cA\":{\"token\":\"$2a$10$3RXKAWYTBtX0t7KYoUTrN.15UVDjBTkhJVVXdUF21dxqN7TEVWp/O\",\"expiry\":1568696496,\"updated_at\":\"2019-09-03 05:01:36 UTC\"}}"], ["updated_at", "2019-09-03 05:01:36.664998"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "otto_schroeder@torp.name"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Ts7zxvZaV/WR.91S8BHfUutUwx8yQyUgzHif/z.i2VkelEYxllJFm"], ["updated_at", "2019-09-03 05:01:36.715177"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:01:36.716179"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2742) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jerold_wisozk@greenholtgutmann.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jerold_wisozk@greenholtgutmann.com"], ["encrypted_password", "$2a$04$mGD.vJs/7GHDw/P4KsogX.qVoCATV27Y/Xxsu9WPd63GWdXNAO4dy"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:01:36.721601"], ["name", "Igor Beaver"], ["email", "jerold_wisozk@greenholtgutmann.com"], ["created_at", "2019-09-03 05:01:36.722395"], ["updated_at", "2019-09-03 05:01:36.722395"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Z3IjQbIRCfUhlkJTSoaO4Q\":{\"token\":\"$2a$10$q2cruqnLznU2OA/vl2SQ8.i4ug3uoFU2kC9H67VDVD3BAmni43DRm\",\"expiry\":1568696496,\"updated_at\":\"2019-09-03 05:01:36 UTC\"}}"], ["updated_at", "2019-09-03 05:01:36.774524"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jerold_wisozk@greenholtgutmann.com"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$XKfIGdlWJGcVPtxeq7eUqOZXCo3JSyLBTv74b.b29cNShEDlxoUTO"], ["updated_at", "2019-09-03 05:01:36.823350"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:01:36.824343"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2728) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sunni@bartell.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sunni@bartell.net"], ["encrypted_password", "$2a$04$i3dgo/uwNZ9dskUI3RK4bOQAfTEcNYIWgd/EjufQLFeUDWiQajz72"], ["confirmed_at", "2019-09-03 05:01:36.830198"], ["name", "Sue Yu"], ["email", "sunni@bartell.net"], ["created_at", "2019-09-03 05:01:36.830942"], ["updated_at", "2019-09-03 05:01:36.830942"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"8IKqcu7s2fPiIRWVmnPvNQ\":{\"token\":\"$2a$10$nNKehMTXg4lsK172Wm7pIuDEKb6cR3HxB/JBcoJQqBgvHhHOachNW\",\"expiry\":1568696496,\"updated_at\":\"2019-09-03 05:01:36 UTC\"}}"], ["updated_at", "2019-09-03 05:01:36.879147"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sunni@bartell.net"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2416) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "felica@stoltenberg.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "felica@stoltenberg.biz"], ["encrypted_password", "$2a$04$gjlCQVtzEIREQZHmbqy0HOP4K11.0kId.OjOe9NN5yXPklF9QUozi"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:01:36.936380"], ["name", "Mike Stand"], ["email", "felica@stoltenberg.biz"], ["created_at", "2019-09-03 05:01:36.937183"], ["updated_at", "2019-09-03 05:01:36.937183"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dBqK5dIV_80lL4_EKXLClw\":{\"token\":\"$2a$10$xW68FErlSXrewIXvvk5spuP31xz666MOxgnINnuIFtHTXbwIYJPAK\",\"expiry\":1568696496,\"updated_at\":\"2019-09-03 05:01:36 UTC\"}}"], ["updated_at", "2019-09-03 05:01:36.984736"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "felica@stoltenberg.biz"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$t.pDzV6UFk0.XN2Ky4hFie44qUT37tpCCnBDdVlV6ZRBksJIdVSLK"], ["updated_at", "2019-09-03 05:01:37.035524"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:01:37.036554"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2723) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "flo@wyman.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "flo@wyman.co"], ["encrypted_password", "$2a$04$BGEIe/nX1kQFxESaRb3bJeSZqFRqt8wKLqXk4A.6LrmVglc5PkHgO"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:01:37.041859"], ["name", "Lynn Guini"], ["email", "flo@wyman.co"], ["created_at", "2019-09-03 05:01:37.042502"], ["updated_at", "2019-09-03 05:01:37.042502"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"G6Hy8j9hAJMhzmurM1fi_g\":{\"token\":\"$2a$10$0sNOY3SOAR7D68W7CBcZaeBCsThz9dgpLsKIhov9n1Ar/C9940EPG\",\"expiry\":1568696497,\"updated_at\":\"2019-09-03 05:01:37 UTC\"}}"], ["updated_at", "2019-09-03 05:01:37.088628"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "flo@wyman.co"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$k8wpvQkjwWEcffjb2luOCOFw.udtFIkMkiHQgJnbGL.rsC0QFRvqO"], ["updated_at", "2019-09-03 05:01:37.140912"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:01:37.141938"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2723) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.8ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marla@kuvalis.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marla@kuvalis.co"], ["encrypted_password", "$2a$04$nVKuCdeFG12Ee51iyzymIuErSf76AR/6/Rtb92gJjgvLi6HeM37fS"], ["confirmed_at", "2019-09-03 05:01:37.148646"], ["name", "Leigh King"], ["email", "marla@kuvalis.co"], ["created_at", "2019-09-03 05:01:37.149700"], ["updated_at", "2019-09-03 05:01:37.149700"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hkNx3myKvkDpQxw4U6Yj8g\":{\"token\":\"$2a$10$6TSSXc1EMHpBz1vn7LyeyuR6EZdlJeWhmDmOjiQKycWIMBGPB0zyq\",\"expiry\":1568696497,\"updated_at\":\"2019-09-03 05:01:37 UTC\"}}"], ["updated_at", "2019-09-03 05:01:37.200938"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "marla@kuvalis.co"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$JTk6oc3Cuvjj1uj0YJtDf.D6d56OeQ40dFtMrXm89ZXyBVKBs6na."], ["updated_at", "2019-09-03 05:01:37.256795"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2522) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "refugia@keelingvonrueden.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "refugia@keelingvonrueden.name"], ["encrypted_password", "$2a$04$ri/n0Tu9qeaLIA2PejCM4uVx5F7PTcNJ1G3rMSt7EKfbxmSMrFI32"], ["confirmed_at", "2019-09-03 05:01:37.263697"], ["name", "Chuck Roast"], ["email", "refugia@keelingvonrueden.name"], ["created_at", "2019-09-03 05:01:37.264552"], ["updated_at", "2019-09-03 05:01:37.264552"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:01:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1145) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'bridgette@pfeffer.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Terry Bull"], ["email", "bridgette@pfeffer.name"], ["encrypted_password", "$2a$04$qSY9j64bIYicsFaksvz84eZUh4L2YtYtulH76e1uj7YUu5MjwQXcC"], ["confirmed_at", "2019-09-03 05:02:49.411544"], ["uid", "bridgette@pfeffer.name"], ["created_at", "2019-09-03 05:02:49.416858"], ["updated_at", "2019-09-03 05:02:49.416858"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "cba9edd28b20b695fb990d1adff72b15cffd51d3dc253f08bae4a778126471f6"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "cba9edd28b20b695fb990d1adff72b15cffd51d3dc253f08bae4a778126471f6"], ["reset_password_sent_at", "2019-09-03 05:02:49.499941"], ["updated_at", "2019-09-03 05:02:49.500184"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22_xVk5S-rEzUioNVzZqoY%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-03 00:02:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"_xVk5S-rEzUioNVzZqoY\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "cba9edd28b20b695fb990d1adff72b15cffd51d3dc253f08bae4a778126471f6"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"_T_fH2LKxEBWh3l8frYbhg\":{\"token\":\"$2a$10$8VUftbVXs11NuSMByI4gZuanwL9sIMGIGC3BuoCZMvx3KsIEXTOJu\",\"expiry\":1568696569}}"], ["allow_password_change", "t"], ["updated_at", "2019-09-03 05:02:49.576512"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=51G9Jjnm4ncRjKgn8IqOGw&client=_T_fH2LKxEBWh3l8frYbhg&client_id=_T_fH2LKxEBWh3l8frYbhg&config=&expiry=&reset_password=true&token=51G9Jjnm4ncRjKgn8IqOGw&uid=bridgette%40pfeffer.name Completed 302 Found in 56ms (ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'caroll@homenick.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Chrystal Glass"], ["email", "caroll@homenick.co"], ["encrypted_password", "$2a$04$7XPvZA1xEEmC15wjTTfwXuMEFwrCus/CAvl243r4pN/gOkrOJ9qIm"], ["confirmed_at", "2019-09-03 05:02:49.582071"], ["uid", "caroll@homenick.co"], ["created_at", "2019-09-03 05:02:49.582883"], ["updated_at", "2019-09-03 05:02:49.582883"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"caroll@homenick.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "caroll@homenick.co"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OtljZgIB-x4WI-ruD201aw\":{\"token\":\"$2a$10$iFuVIrrFujMbkTNDeHhAy.SvNQ/E7uSPObNmaT4X.tac8q3Nf/HCe\",\"expiry\":1568696569,\"updated_at\":\"2019-09-03 05:02:49 UTC\"}}"], ["updated_at", "2019-09-03 05:02:49.642076"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-09-03 05:02:49.647443"], ["current_sign_in_at", "2019-09-03 05:02:49.647443"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:02:49.647944"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 63ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'beau.moriette@white.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Hare Brain"], ["email", "beau.moriette@white.com"], ["encrypted_password", "$2a$04$6e11CQShJpjoWqKnAaUxJeSrePegPBJc8QvsQckAZhcecyfMWNvyC"], ["confirmed_at", "2019-09-03 05:02:49.655448"], ["uid", "beau.moriette@white.com"], ["created_at", "2019-09-03 05:02:49.656467"], ["updated_at", "2019-09-03 05:02:49.656467"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"beau.moriette@white.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "beau.moriette@white.com"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'sabine_runte@prosaccofriesen.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Harry Legg"], ["email", "sabine_runte@prosaccofriesen.name"], ["encrypted_password", "$2a$04$FeOQKHG2K60hWarfKy1T5O8FZJC3UFxbMdZq3kA622Uf.Yba7yeQ2"], ["uid", "sabine_runte@prosaccofriesen.name"], ["created_at", "2019-09-03 05:02:49.671155"], ["updated_at", "2019-09-03 05:02:49.671155"], ["confirmation_token", "X8nFWrR6LZtW59HYh6xA"], ["confirmation_sent_at", "2019-09-03 05:02:49.671341"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sabine_runte@prosaccofriesen.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "sabine_runte@prosaccofriesen.name"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'gabriel_schneider@lakin.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Jeff Healitt"], ["email", "gabriel_schneider@lakin.com"], ["encrypted_password", "$2a$04$Fym2Iq.BweiqW.cfmKOhEuQA4EX4zkMUIwhBEBRnV6YBfxAr.uJJW"], ["confirmed_at", "2019-09-03 05:02:49.681468"], ["locked_at", "2019-09-03 05:02:49.681535"], ["uid", "gabriel_schneider@lakin.com"], ["created_at", "2019-09-03 05:02:49.682591"], ["updated_at", "2019-09-03 05:02:49.682591"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"gabriel_schneider@lakin.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "gabriel_schneider@lakin.com"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'beth@lynchrogahn.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Mort Tallity"], ["email", "beth@lynchrogahn.info"], ["encrypted_password", "$2a$04$SFDpKQeQ7Gtd3W4mxhbpg.xwem8HBABz.q826Vw1dwjBYqSZGWoGe"], ["confirmed_at", "2019-09-03 05:02:49.692904"], ["auth_available", "f"], ["uid", "beth@lynchrogahn.info"], ["created_at", "2019-09-03 05:02:49.693907"], ["updated_at", "2019-09-03 05:02:49.693907"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"beth@lynchrogahn.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "beth@lynchrogahn.info"]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'hosea@yostcarter.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Warren Piece"], ["email", "hosea@yostcarter.org"], ["encrypted_password", "$2a$04$yvxHz5cpzlg6.gxn8QF6feBJk25IWoWjhk70ACQ6nI7Zu1DGV7Icy"], ["confirmed_at", "2019-09-03 05:02:49.705181"], ["uid", "hosea@yostcarter.org"], ["created_at", "2019-09-03 05:02:49.706155"], ["updated_at", "2019-09-03 05:02:49.706155"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EZlVdjC5vaFxZC5A6bHoLA\":{\"token\":\"$2a$10$EtmiLVT0zyPSOnZQnBTjb.us0Zw6lQpdgIixwb9SY.jr3XFv0gebO\",\"expiry\":1568696569,\"updated_at\":\"2019-09-03 05:02:49 UTC\"}}"], ["updated_at", "2019-09-03 05:02:49.765525"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "hosea@yostcarter.org"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-03 05:02:49.824971"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'burl@jakubowski.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Joaquin DeFlores"], ["email", "burl@jakubowski.biz"], ["encrypted_password", "$2a$04$mstghenMUEV4t6/tYhoyAelNN8WaqVVku3yzquL.NlKY66Uunf.jK"], ["confirmed_at", "2019-09-03 05:02:49.837034"], ["uid", "burl@jakubowski.biz"], ["created_at", "2019-09-03 05:02:49.838399"], ["updated_at", "2019-09-03 05:02:49.838399"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'hoyt@zieme.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Braxton Hicks"], ["email", "hoyt@zieme.io"], ["encrypted_password", "$2a$04$X6NY0aIWOOPLDSAUqKhB8.WpZMBmlQmzobS6QG/55WMZZGF67sLSm"], ["confirmed_at", "2019-09-03 05:02:49.859600"], ["allow_password_change", "t"], ["uid", "hoyt@zieme.io"], ["created_at", "2019-09-03 05:02:49.860582"], ["updated_at", "2019-09-03 05:02:49.860582"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"PmEnAFh7dRhTIVZJfpcxTA\":{\"token\":\"$2a$10$fivQPJdFJk.oBvhTfW/3HuU4hAYBClMeheY9K83GPh8O9PrPk2h/2\",\"expiry\":1568696569,\"updated_at\":\"2019-09-03 05:02:49 UTC\"}}"], ["updated_at", "2019-09-03 05:02:49.920513"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "hoyt@zieme.io"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$YK8UHE9ZIO8xafjePhQr7e7KLL7kfvdZQidlZDMwv5n8nfvl7FLzq"], ["updated_at", "2019-09-03 05:02:49.979776"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:02:49.980756"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'lamonica@halvorson.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Annie Howe"], ["email", "lamonica@halvorson.org"], ["encrypted_password", "$2a$04$cIjq8g.JjkUPed.aP0AYuufLNJ1p4pCBFPvnUpdZ8tEvaZA68x.oa"], ["confirmed_at", "2019-09-03 05:02:49.985828"], ["allow_password_change", "t"], ["uid", "lamonica@halvorson.org"], ["created_at", "2019-09-03 05:02:49.986663"], ["updated_at", "2019-09-03 05:02:49.986663"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ejRqgN7DCQnUTbnLu54dLA\":{\"token\":\"$2a$10$7MyROMMgmqc6zCyXWah49.XxGYsThWPMeyjOHsZ9CiPnwHyOs1nBW\",\"expiry\":1568696570,\"updated_at\":\"2019-09-03 05:02:49 UTC\"}}"], ["updated_at", "2019-09-03 05:02:50.034569"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "lamonica@halvorson.org"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$qyo9PFpGXNg1IfIpeMVRuufgE1bKo60r5i1RbBsJplMxR.rkq5ZYK"], ["updated_at", "2019-09-03 05:02:50.090715"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:02:50.091640"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'randy_goyette@willms.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "C. Worthy"], ["email", "randy_goyette@willms.io"], ["encrypted_password", "$2a$04$Gz6lXLPN.UjE/uzx8TMDHeJ8pjKHGlL08rvZxl1L5UJ2S7XVc5Po."], ["confirmed_at", "2019-09-03 05:02:50.097773"], ["uid", "randy_goyette@willms.io"], ["created_at", "2019-09-03 05:02:50.098963"], ["updated_at", "2019-09-03 05:02:50.098963"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZAUZRLuBl1FYx20Ukjv4NQ\":{\"token\":\"$2a$10$Svy1z6TiBZJedxFlOXU/reY9oWwXNlikGz25CGJtmhdDk4T1.YRPe\",\"expiry\":1568696570,\"updated_at\":\"2019-09-03 05:02:50 UTC\"}}"], ["updated_at", "2019-09-03 05:02:50.148594"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "randy_goyette@willms.io"]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'janet.emard@hagenestowne.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Andy Gravity"], ["email", "janet.emard@hagenestowne.org"], ["encrypted_password", "$2a$04$HWCUn3RGaszQcGgW5HjEAummoAm1xeBVX9Papr0No9HOnFpscnYie"], ["confirmed_at", "2019-09-03 05:02:50.212081"], ["allow_password_change", "t"], ["uid", "janet.emard@hagenestowne.org"], ["created_at", "2019-09-03 05:02:50.212973"], ["updated_at", "2019-09-03 05:02:50.212973"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"MQPFPKzLq406fFThHU-fVQ\":{\"token\":\"$2a$10$AzZs.4k0vsX/LHpCL8BzWOkGwhT/npDh9mU5g/x1KIkQzCxarBLDa\",\"expiry\":1568696570,\"updated_at\":\"2019-09-03 05:02:50 UTC\"}}"], ["updated_at", "2019-09-03 05:02:50.263766"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "janet.emard@hagenestowne.org"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$4pj3dOmaH5bIl61I0ZrKV.AyA6rJI.CAZVAdluEjZ55R4GZJGBDj."], ["updated_at", "2019-09-03 05:02:50.321543"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:02:50.322532"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'lien.durgan@predovicbogisich.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Sal Minella"], ["email", "lien.durgan@predovicbogisich.io"], ["encrypted_password", "$2a$04$XTcKEcr8uoJBvqvdpWtGUujE0jVCQ7GbClFEn.RV8wcGIpHAwenn6"], ["confirmed_at", "2019-09-03 05:02:50.327393"], ["allow_password_change", "t"], ["uid", "lien.durgan@predovicbogisich.io"], ["created_at", "2019-09-03 05:02:50.328304"], ["updated_at", "2019-09-03 05:02:50.328304"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KR3q8JXouZbMaLyZSgS0Rg\":{\"token\":\"$2a$10$hBv5zTgNh10RN.n9kdwCjeE6JzR9/iMd7JYEIieDIrGL.1ctRm8sO\",\"expiry\":1568696570,\"updated_at\":\"2019-09-03 05:02:50 UTC\"}}"], ["updated_at", "2019-09-03 05:02:50.378115"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "lien.durgan@predovicbogisich.io"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$9MCPbWwv6Sh7C16HQ3EWk.adbeygGVlpTkCYxh/q5Gyu9s7QHIwe6"], ["updated_at", "2019-09-03 05:02:50.433857"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:02:50.434789"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'renea.wuckert@von.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Sue Case"], ["email", "renea.wuckert@von.io"], ["encrypted_password", "$2a$04$DMyZsmnVh5Gd0KnX1thvQeHCg5ibq5zgXmPNK4Z.1w/GDFXl05Gv2"], ["confirmed_at", "2019-09-03 05:02:50.440914"], ["uid", "renea.wuckert@von.io"], ["created_at", "2019-09-03 05:02:50.441905"], ["updated_at", "2019-09-03 05:02:50.441905"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"m449IzcvpdjZDcj1Fg5vow\":{\"token\":\"$2a$10$ORcf2tc4Ft9EMfpc1pxm6uG9vvZUkvmCt5j805yPRl/MhAMgC0RWm\",\"expiry\":1568696570,\"updated_at\":\"2019-09-03 05:02:50 UTC\"}}"], ["updated_at", "2019-09-03 05:02:50.491125"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "renea.wuckert@von.io"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$y61VYnYjg6TqbPOBOvFyPubQ2xDXxr507OAN4AB1hTzjtoUjf5BiW"], ["updated_at", "2019-09-03 05:02:50.548358"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'lore_waelchi@stamm.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Morey Bund"], ["email", "lore_waelchi@stamm.biz"], ["encrypted_password", "$2a$04$Fuma0qpAkN/DYYHjp58QOu86Uc/a6EpAepmTy9u8/3DeMQrIdl6Hu"], ["confirmed_at", "2019-09-03 05:02:50.554897"], ["uid", "lore_waelchi@stamm.biz"], ["created_at", "2019-09-03 05:02:50.555710"], ["updated_at", "2019-09-03 05:02:50.555710"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "charmaine@browndickens.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "charmaine@browndickens.co"], ["encrypted_password", "$2a$04$t6uvGkJRgAH3T1x5oHDdWepE1.lb43glC5DBSvbhIL3HtjRnGp9YW"], ["confirmed_at", "2019-09-03 05:02:53.801626"], ["name", "Sandy Banks"], ["email", "charmaine@browndickens.co"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:53.806055"], ["updated_at", "2019-09-03 05:02:53.806055"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2ce77aa968ecaa788645c91d726c954b023bf09635fd24d6295ef4170adce77c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "2ce77aa968ecaa788645c91d726c954b023bf09635fd24d6295ef4170adce77c"], ["reset_password_sent_at", "2019-09-03 05:02:53.887293"], ["updated_at", "2019-09-03 05:02:53.887579"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22y67vyEX2YsdVcrnxhBYy%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-03 00:02:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"y67vyEX2YsdVcrnxhBYy\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2ce77aa968ecaa788645c91d726c954b023bf09635fd24d6295ef4170adce77c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"clYgcNwugnIJibMKslQHfQ\":{\"token\":\"$2a$12$UF8H/Q044n9F4ROS/ndPdOc4KSVQde7gvbJFy0rVEWrEMcNt/0kru\",\"expiry\":1568696573}}"], ["allow_password_change", "t"], ["updated_at", "2019-09-03 05:02:54.079484"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1568696573&client=clYgcNwugnIJibMKslQHfQ&client_id=clYgcNwugnIJibMKslQHfQ&config=&expiry=1568696573&reset_password=true&token=1568696573&uid=charmaine%40browndickens.co Completed 302 Found in 184ms (ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "casey.mccullough@goldnerweimann.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "casey.mccullough@goldnerweimann.name"], ["encrypted_password", "$2a$04$1vjVpAxddnDZouDbbA8zi.cAvtSPCdtPj2jpqxNp.rZfWFr2XZiUK"], ["confirmed_at", "2019-09-03 05:02:54.086819"], ["name", "Penny Profit"], ["email", "casey.mccullough@goldnerweimann.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:54.087552"], ["updated_at", "2019-09-03 05:02:54.087552"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"casey.mccullough@goldnerweimann.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "casey.mccullough@goldnerweimann.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dEyOde0iqNug-S95_gQmXA\":{\"token\":\"$2a$12$7vNgbidAeGatNUmqExpZEuZt.QJksRt4VpJZrgU3tdA2t7tg4XQAu\",\"expiry\":1568696574,\"last_token\":null,\"updated_at\":\"2019-09-03T00:02:54.094-05:00\"}}"], ["updated_at", "2019-09-03 05:02:54.274387"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 05:02:54.278715"], ["last_sign_in_at", "2019-09-03 05:02:54.278715"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:02:54.279077"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 189ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arturo@lubowitz.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "arturo@lubowitz.com"], ["encrypted_password", "$2a$04$mbMrg494zisR5rPqc27v7.o2HBafoyFAxWXmKhcY2sw7cgu9Qj3aK"], ["confirmed_at", "2019-09-03 05:02:54.285726"], ["name", "Eddie Bull"], ["email", "arturo@lubowitz.com"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:54.286468"], ["updated_at", "2019-09-03 05:02:54.286468"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"arturo@lubowitz.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "arturo@lubowitz.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-09-03 05:02:54.290607"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "soo@heathcote.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "soo@heathcote.name"], ["encrypted_password", "$2a$04$/KfURSHBrgv7ZT8TJ//OiOmxO76TO9uQodio25yc23SU5EpAYVTsS"], ["confirmation_token", "wrRKfWPc1q1je9Z4ZW-D"], ["confirmation_sent_at", "2019-09-03 05:02:54.294893"], ["name", "Lon Moore"], ["email", "soo@heathcote.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:54.294822"], ["updated_at", "2019-09-03 05:02:54.294822"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"soo@heathcote.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "soo@heathcote.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ebonie_wuckert@lindgren.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ebonie_wuckert@lindgren.co"], ["encrypted_password", "$2a$04$gVIkcrKi3nL14k861uYi7OHNMhvxB4g2W3QuGCfbXCwBH5rEA.FMq"], ["confirmed_at", "2019-09-03 05:02:54.301693"], ["locked_at", "2019-09-03 05:02:54.301704"], ["name", "Allen Rench"], ["email", "ebonie_wuckert@lindgren.co"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:54.302605"], ["updated_at", "2019-09-03 05:02:54.302605"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ebonie_wuckert@lindgren.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ebonie_wuckert@lindgren.co"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "delphine_predovic@strackestroman.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "delphine_predovic@strackestroman.com"], ["encrypted_password", "$2a$04$sp.SVIwLOtil6TyA.DbTUO4IgmAHiW9JUdd9vCe/75BLcVbz8GHNq"], ["confirmed_at", "2019-09-03 05:02:54.312606"], ["name", "Sam Dayoulpay"], ["email", "delphine_predovic@strackestroman.com"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:54.313546"], ["updated_at", "2019-09-03 05:02:54.313546"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"delphine_predovic@strackestroman.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "delphine_predovic@strackestroman.com"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "maurice_mayer@boehm.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "maurice_mayer@boehm.name"], ["encrypted_password", "$2a$04$JLwQ0SnJrlZIEMsCvCmoj.6NORept4vA.h7PQ1o3mImXKe1Wj/zzq"], ["confirmed_at", "2019-09-03 05:02:54.322482"], ["name", "Penny Bunn"], ["email", "maurice_mayer@boehm.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:54.323399"], ["updated_at", "2019-09-03 05:02:54.323399"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"402SmymW55H1TR9hy1P0hQ\":{\"token\":\"$2a$12$j1HOibacDp8krvwnUw632eUjY3oB/BbnUfKNjC.oZwK8ObJOskdhe\",\"expiry\":1568696574,\"last_token\":null,\"updated_at\":\"2019-09-03T00:02:54.324-05:00\"}}"], ["updated_at", "2019-09-03 05:02:54.515270"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "maurice_mayer@boehm.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-09-03 05:02:54.691738"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 176ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dylan@hellerkoepp.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dylan@hellerkoepp.biz"], ["encrypted_password", "$2a$04$tt3MRNT9bnp7Z4tdMtzpV.04LpkkiBfmb00t8aQNr4hpYE/0ecEeG"], ["confirmed_at", "2019-09-03 05:02:54.699049"], ["name", "Liv Good"], ["email", "dylan@hellerkoepp.biz"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:54.699804"], ["updated_at", "2019-09-03 05:02:54.699804"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "keli@bergemayer.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "keli@bergemayer.net"], ["encrypted_password", "$2a$04$5rO2b6nQG0Pf4zWs87hZLedVqDgv7G8N9UAGdpsCIPAsu40yXObs2"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:02:54.703494"], ["name", "Braxton Hicks"], ["email", "keli@bergemayer.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:54.704155"], ["updated_at", "2019-09-03 05:02:54.704155"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mP-5T6QEsFQVzai3EnvqUg\":{\"token\":\"$2a$12$Mkv3CQyDwiDrIzsewZ3AReAlq9Rx6ituZHFWflYZLZgakXq6XXsVe\",\"expiry\":1568696574,\"last_token\":null,\"updated_at\":\"2019-09-03T00:02:54.706-05:00\"}}"], ["updated_at", "2019-09-03 05:02:54.887813"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "keli@bergemayer.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$0P0e0w6Rkyj5.SrYTxJpauEr45vBJviPBF30pESnb4jHDH0.EQ3aO"], ["updated_at", "2019-09-03 05:02:55.063981"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:02:55.065147"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 177ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "suzette.walker@beahankunze.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "suzette.walker@beahankunze.io"], ["encrypted_password", "$2a$04$9QfHN671E7hrlxYyx5QWEOO8idQwBFd32P9etB51hadEg3rIKc7oC"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:02:55.070373"], ["name", "Ima Hogg"], ["email", "suzette.walker@beahankunze.io"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:55.071233"], ["updated_at", "2019-09-03 05:02:55.071233"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3SUhbV1AHPmMDAimx2YcvQ\":{\"token\":\"$2a$12$69ekbfQ2M2jWH6ocTkfIq.2gozwoBe4icUqUhMAFN7MQWy1CgsO7.\",\"expiry\":1568696575,\"last_token\":null,\"updated_at\":\"2019-09-03T00:02:55.072-05:00\"}}"], ["updated_at", "2019-09-03 05:02:55.252833"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "suzette.walker@beahankunze.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$SxOSLAZyZte4G6FN3VLCie9BjDBfCUTxwzOke83qgJpW.0cAY/6g."], ["updated_at", "2019-09-03 05:02:55.442106"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:02:55.443146"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carli_schulist@mcglynn.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "carli_schulist@mcglynn.io"], ["encrypted_password", "$2a$04$DSMRAzsqfZGc2EDcanqEK.tqcrr8A1MoeUn2PdDhto7/ifrhG8qBa"], ["confirmed_at", "2019-09-03 05:02:55.449870"], ["name", "Shandy Lear"], ["email", "carli_schulist@mcglynn.io"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:55.450678"], ["updated_at", "2019-09-03 05:02:55.450678"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3CL3d-48GnX6MEyJXIhH3A\":{\"token\":\"$2a$12$7fgTAec3pChOWP40f.jieu/LxsBdGlOwdW7pxXUJIghdEB4kCsj.u\",\"expiry\":1568696575,\"last_token\":null,\"updated_at\":\"2019-09-03T00:02:55.451-05:00\"}}"], ["updated_at", "2019-09-03 05:02:55.632177"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "carli_schulist@mcglynn.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 177ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "edna@fadelwehner.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "edna@fadelwehner.io"], ["encrypted_password", "$2a$04$ngPh8Y8o.20hdYrE1gwLmu3tppb23THsTyXO7gmdWNwszTtTZLx5O"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:02:55.814165"], ["name", "Neil Down"], ["email", "edna@fadelwehner.io"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:55.814899"], ["updated_at", "2019-09-03 05:02:55.814899"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"6xglqqgMk6hQa42hKttjxw\":{\"token\":\"$2a$12$5AStDBFrH/v49.qLOAT0ZOLA56u3O0Nctkc8S5ZxO7Dm34twK3qwe\",\"expiry\":1568696575,\"last_token\":null,\"updated_at\":\"2019-09-03T00:02:55.816-05:00\"}}"], ["updated_at", "2019-09-03 05:02:55.996690"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "edna@fadelwehner.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$8jOhqlYVaQgGQzZvAPN1rujeqOKsbtkPDGbKVlUZgIa48FjzpgcJa"], ["updated_at", "2019-09-03 05:02:56.176404"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:02:56.177486"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 180ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "almeta.hirthe@thieltowne.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "almeta.hirthe@thieltowne.name"], ["encrypted_password", "$2a$04$MvUJz1aW.c1GgSmPKgJtcuE2Xbgb9XebDyOzD3wiobCmi/kcu190m"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:02:56.183024"], ["name", "Pepe Roni"], ["email", "almeta.hirthe@thieltowne.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:56.183875"], ["updated_at", "2019-09-03 05:02:56.183875"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"McwMNYggQWkQNtCdEXu_3A\":{\"token\":\"$2a$12$OUNi8aIVK3ocN2189ZYfqO0Kx3sHG37VF6BsmPGTkyOyjOdkS07c2\",\"expiry\":1568696576,\"last_token\":null,\"updated_at\":\"2019-09-03T00:02:56.184-05:00\"}}"], ["updated_at", "2019-09-03 05:02:56.361982"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "almeta.hirthe@thieltowne.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$.O0GeYm/x5p4b0h2YK.2BOqYVrtJnEOIKDcaT9udF4SSF1TmFuUWW"], ["updated_at", "2019-09-03 05:02:56.536619"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:02:56.537644"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 175ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kaley_bergstrom@christiansen.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kaley_bergstrom@christiansen.info"], ["encrypted_password", "$2a$04$DQkRQaBFyM57oL2MtKTu3e9euDyerCqHF3vCv2UbcBflcuFFYdZ22"], ["confirmed_at", "2019-09-03 05:02:56.543985"], ["name", "Buddy System"], ["email", "kaley_bergstrom@christiansen.info"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:56.544837"], ["updated_at", "2019-09-03 05:02:56.544837"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"INJ0sC4DWwzIbanGh5g3WQ\":{\"token\":\"$2a$12$o40gjoDab2LjBvqD.BQMeu9C1Ch9.hCa32kze.LRt5urTRg4zXOE2\",\"expiry\":1568696576,\"last_token\":null,\"updated_at\":\"2019-09-03T00:02:56.546-05:00\"}}"], ["updated_at", "2019-09-03 05:02:56.727613"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kaley_bergstrom@christiansen.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$jyZgBe3g5lUCHypF1V53HuSG7pxrcYFTTVHyVvVxLWmrpkOEzbBI."], ["updated_at", "2019-09-03 05:02:56.903990"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 177ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kristal@simonis.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kristal@simonis.net"], ["encrypted_password", "$2a$04$8U6hamdiks.aIFHlNGU2BervOH8/b7zh204vTS578YGOS6/q4BguW"], ["confirmed_at", "2019-09-03 05:02:56.912533"], ["name", "Chris Cross"], ["email", "kristal@simonis.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:02:56.913659"], ["updated_at", "2019-09-03 05:02:56.913659"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:02:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clement.sauer@dach.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "clement.sauer@dach.biz"], ["encrypted_password", "$2a$04$VUcAvIfbeFolndzQsBLRaulIk4qXuyG2vHUtrRNBlnamUmvZImXgG"], ["confirmed_at", "2019-09-03 05:03:00.021143"], ["name", "Justin Credible"], ["email", "clement.sauer@dach.biz"], ["created_at", "2019-09-03 05:03:00.026101"], ["updated_at", "2019-09-03 05:03:00.026101"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1575cfa3da2f3c2c677629aad9c7b5a8c013d49aac781f2bb5443fbceea50089"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "1575cfa3da2f3c2c677629aad9c7b5a8c013d49aac781f2bb5443fbceea50089"], ["reset_password_sent_at", "2019-09-03 05:03:00.108578"], ["updated_at", "2019-09-03 05:03:00.108839"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22oTQQWF9zvHafU8PQTAUe%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-03 00:03:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"oTQQWF9zvHafU8PQTAUe\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1575cfa3da2f3c2c677629aad9c7b5a8c013d49aac781f2bb5443fbceea50089"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ecDf_3VBjyNpIMv-bGaCSw\":{\"token\":\"$2a$10$58/cHaLbVz.XHkfsjL5FpelLsn3tcGOMp7urD29.8LgVatCY8bRv6\",\"expiry\":1568696580}}"], ["allow_password_change", "t"], ["updated_at", "2019-09-03 05:03:00.174596"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=EefbV02FUC3vPVeZxq99ow&client=ecDf_3VBjyNpIMv-bGaCSw&client_id=ecDf_3VBjyNpIMv-bGaCSw&config=&expiry=1568696580&reset_password=true&token=EefbV02FUC3vPVeZxq99ow&uid=clement.sauer%40dach.biz Completed 302 Found in 57ms (ActiveRecord: 0.2ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "branden_dickinson@walkercollins.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "branden_dickinson@walkercollins.io"], ["encrypted_password", "$2a$04$WwmAKPcOS44ZlYZOIws4SO/r96p/y9ZpL4GXMo98/8RvCOT42Ep2y"], ["confirmed_at", "2019-09-03 05:03:00.182535"], ["name", "Perry Mecium"], ["email", "branden_dickinson@walkercollins.io"], ["created_at", "2019-09-03 05:03:00.183653"], ["updated_at", "2019-09-03 05:03:00.183653"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"branden_dickinson@walkercollins.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "branden_dickinson@walkercollins.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lMOkpRUCuEw6UYAQ_ZOy4g\":{\"token\":\"$2a$10$zZLzY0rk/03Oi/cPcYejOe46uIqrUGluCAQF.T7885hD5xHKV0C1q\",\"expiry\":1568696580,\"updated_at\":\"2019-09-03 05:03:00 UTC\"}}"], ["updated_at", "2019-09-03 05:03:00.240151"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 05:03:00.244493"], ["last_sign_in_at", "2019-09-03 05:03:00.244493"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:03:00.244865"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "minta.sporer@rath.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "minta.sporer@rath.io"], ["encrypted_password", "$2a$04$ib2ajfFUvf6stBrpGpBC6eMLJ2SJ2SZIGYAVunZoBHopaG1CK5NwG"], ["confirmed_at", "2019-09-03 05:03:00.253234"], ["name", "Bill Board"], ["email", "minta.sporer@rath.io"], ["created_at", "2019-09-03 05:03:00.254268"], ["updated_at", "2019-09-03 05:03:00.254268"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"minta.sporer@rath.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "minta.sporer@rath.io"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clayton@torphy.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "clayton@torphy.net"], ["encrypted_password", "$2a$04$59GfI03RgrP9BXr2kZewlOby.O9Ge.Cq1dV9SqrAgSexZqYHdjlRO"], ["confirmation_token", "5JoQCWWdvtFMtkcyF__7"], ["confirmation_sent_at", "2019-09-03 05:03:00.266320"], ["name", "Minnie Skurt"], ["email", "clayton@torphy.net"], ["created_at", "2019-09-03 05:03:00.266183"], ["updated_at", "2019-09-03 05:03:00.266183"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"clayton@torphy.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "clayton@torphy.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lane_brown@keebler.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lane_brown@keebler.com"], ["encrypted_password", "$2a$04$BvbCftlz.3KLpO.5nVLHVOh53Q7YL/uJ8.xXAy9ji2l69HqxY/0DW"], ["confirmed_at", "2019-09-03 05:03:00.275996"], ["locked_at", "2019-09-03 05:03:00.276010"], ["name", "Luke Warm"], ["email", "lane_brown@keebler.com"], ["created_at", "2019-09-03 05:03:00.276968"], ["updated_at", "2019-09-03 05:03:00.276968"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lane_brown@keebler.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lane_brown@keebler.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "raelene@feeneydickinson.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "raelene@feeneydickinson.io"], ["encrypted_password", "$2a$04$IPYK/CD7.pVQCGT5x4qtJeTZZCYzYLvCmsFWYLTml/mDuVo4XV4He"], ["confirmed_at", "2019-09-03 05:03:00.284479"], ["name", "Tom Morrow"], ["email", "raelene@feeneydickinson.io"], ["created_at", "2019-09-03 05:03:00.285401"], ["updated_at", "2019-09-03 05:03:00.285401"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"raelene@feeneydickinson.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "raelene@feeneydickinson.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "damion.morar@swiftleffler.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "damion.morar@swiftleffler.name"], ["encrypted_password", "$2a$04$qxZQPJ1sS8z.VdSc3hrxIeqdmymdOrpUcRpO9ekMYjODXDKyTA7Zy"], ["confirmed_at", "2019-09-03 05:03:00.293705"], ["name", "Harry Beard"], ["email", "damion.morar@swiftleffler.name"], ["created_at", "2019-09-03 05:03:00.294495"], ["updated_at", "2019-09-03 05:03:00.294495"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DFhS7pEYU-mYNj54d1tLUg\":{\"token\":\"$2a$10$S5XWVWoOQPjGLbUs5hmjmOaoYIXrT77tSkPvxQJpFI1/rScixH5DO\",\"expiry\":1568696580,\"updated_at\":\"2019-09-03 05:03:00 UTC\"}}"], ["updated_at", "2019-09-03 05:03:00.349528"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "damion.morar@swiftleffler.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-03 05:03:00.401508"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "edwardo.rohan@brekke.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "edwardo.rohan@brekke.org"], ["encrypted_password", "$2a$04$K7K58/X6swFTNX9BFDQw3u0mCW4yibY23S8Lw6/eb0zZrVOdPwXJG"], ["confirmed_at", "2019-09-03 05:03:00.408843"], ["name", "Ilene East"], ["email", "edwardo.rohan@brekke.org"], ["created_at", "2019-09-03 05:03:00.409650"], ["updated_at", "2019-09-03 05:03:00.409650"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "niesha_raynor@wolf.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "niesha_raynor@wolf.net"], ["encrypted_password", "$2a$04$d7Lf5c/EZfud6ukzEI58/O72K/u19vkYlD3tDurrqA.SyGAg07hV6"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:03:00.413418"], ["name", "Kristie Hannity"], ["email", "niesha_raynor@wolf.net"], ["created_at", "2019-09-03 05:03:00.414050"], ["updated_at", "2019-09-03 05:03:00.414050"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"sIIO_KSryOhq5VyyBuoM6w\":{\"token\":\"$2a$10$fP2AnyJ8GJv1WNngXcFbHu2ZGpS.QPidJnZsessJoVlZ9sWzNZ0wW\",\"expiry\":1568696580,\"updated_at\":\"2019-09-03 05:03:00 UTC\"}}"], ["updated_at", "2019-09-03 05:03:00.464119"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "niesha_raynor@wolf.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$TLXeEi7g3lw764ozN71tTebpzcNsOezv.0GMky50qFhhvYlIezRzC"], ["updated_at", "2019-09-03 05:03:00.513502"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:03:00.514489"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.2ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "latrisha_hagenes@runolfsdottir.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "latrisha_hagenes@runolfsdottir.name"], ["encrypted_password", "$2a$04$QmAfOMNyVM5H0u0VqQARS.ZCH.5f7ZdczAO5bpVBJs.XWo0a4kWBG"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:03:00.518734"], ["name", "Tamara Knight"], ["email", "latrisha_hagenes@runolfsdottir.name"], ["created_at", "2019-09-03 05:03:00.520755"], ["updated_at", "2019-09-03 05:03:00.520755"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"zHUzTzOmhc35-PU6eGHf2w\":{\"token\":\"$2a$10$TxTp51CdXveHCgIhCsxnFu75xf0JlWe38a9iEKBj2A6/7qtmt8XVu\",\"expiry\":1568696580,\"updated_at\":\"2019-09-03 05:03:00 UTC\"}}"], ["updated_at", "2019-09-03 05:03:00.570991"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "latrisha_hagenes@runolfsdottir.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$4UF/XwHwmJodtPRKl8.NduJ93ceiurZlQweg5htPDNapAQ7KkbxVO"], ["updated_at", "2019-09-03 05:03:00.620941"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:03:00.621946"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gonzalo@mann.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gonzalo@mann.com"], ["encrypted_password", "$2a$04$tX8hba2u8nwAAX0NmisSieYmrVnWevs4.yrECVqociu1GU.c1hl1."], ["confirmed_at", "2019-09-03 05:03:00.629553"], ["name", "Penny Bunn"], ["email", "gonzalo@mann.com"], ["created_at", "2019-09-03 05:03:00.630724"], ["updated_at", "2019-09-03 05:03:00.630724"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fYM23jI-m3hCCQlKAidx2Q\":{\"token\":\"$2a$10$0vlijo1xdcVTKgwrEu.HV.Uc1n2zJkmDeRcs1WUjRlHCMp0Hqfx1u\",\"expiry\":1568696580,\"updated_at\":\"2019-09-03 05:03:00 UTC\"}}"], ["updated_at", "2019-09-03 05:03:00.683471"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gonzalo@mann.com"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jefferson@bradtke.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jefferson@bradtke.biz"], ["encrypted_password", "$2a$04$SpraJf18YOjBpQycaO65m.Lm0k4aBuqEraK8ddAHCOJ3yB3fsKJVC"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:03:00.738281"], ["name", "Xavier Breath"], ["email", "jefferson@bradtke.biz"], ["created_at", "2019-09-03 05:03:00.738943"], ["updated_at", "2019-09-03 05:03:00.738943"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"XpgofZvQ_LlpmiRXrIw_hw\":{\"token\":\"$2a$10$NSMV2pzO2Wws9Xe5ySC9duuPrdIMhJlwAtwDLb9rL1DM7m98HvfSm\",\"expiry\":1568696580,\"updated_at\":\"2019-09-03 05:03:00 UTC\"}}"], ["updated_at", "2019-09-03 05:03:00.786032"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jefferson@bradtke.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$6GJZrjO/Y1eEfQcrTmHJLeqwCGcGP3olBewUdEt0h6xyFxa/0CFLC"], ["updated_at", "2019-09-03 05:03:00.836167"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:03:00.837473"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (12.7ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cristobal@bergstromconnelly.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cristobal@bergstromconnelly.info"], ["encrypted_password", "$2a$04$Sx8K55mHpZ0583o7g8e5hOhvcZ6HbBVG9lbmpb.0Pdve2EvGHqjKi"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:03:00.842157"], ["name", "Evan Keel"], ["email", "cristobal@bergstromconnelly.info"], ["created_at", "2019-09-03 05:03:00.856200"], ["updated_at", "2019-09-03 05:03:00.856200"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kMHBi429TrCLbwcgeDZCYQ\":{\"token\":\"$2a$10$oV54i7DkpnZ6v1DYab1FDOcXk.AokY.MmTi6aSXHUGHXDvXthX/nK\",\"expiry\":1568696580,\"updated_at\":\"2019-09-03 05:03:00 UTC\"}}"], ["updated_at", "2019-09-03 05:03:00.909491"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "cristobal@bergstromconnelly.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$24o1NVn66g/.zxTOgXiv5ui2NtPEsvB/hRIBehT6TabygzVvHqniS"], ["updated_at", "2019-09-03 05:03:00.958996"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:03:00.959981"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "denny@simonis.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "denny@simonis.io"], ["encrypted_password", "$2a$04$orfmlnWbdnz24Yztxna14OsYG.K7L7Vhl8JtOZ6C7Dkd2UXh.h45G"], ["confirmed_at", "2019-09-03 05:03:00.965552"], ["name", "Fletcher Bisceps"], ["email", "denny@simonis.io"], ["created_at", "2019-09-03 05:03:00.966395"], ["updated_at", "2019-09-03 05:03:00.966395"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"4WRPM433qpU2wW4CZ0XaTg\":{\"token\":\"$2a$10$PRyKbH8cadAVewrJb4lALunlyJ2YQQleJeioXJT2tLZuc40IfqtZq\",\"expiry\":1568696581,\"updated_at\":\"2019-09-03 05:03:00 UTC\"}}"], ["updated_at", "2019-09-03 05:03:01.013547"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "denny@simonis.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$ehC0wAn6LUvssP7VaBXgSuN4/1JiKux.Ku8FCFrysvnl3HIZVXOUK"], ["updated_at", "2019-09-03 05:03:01.063621"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "linda.kuhn@mayer.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "linda.kuhn@mayer.name"], ["encrypted_password", "$2a$04$LReREoYYuGiaiU0Dg5JQF.duDO6prhNcwtcCbHbD5Ch1plneVlNG6"], ["confirmed_at", "2019-09-03 05:03:01.072016"], ["name", "Al Nino"], ["email", "linda.kuhn@mayer.name"], ["created_at", "2019-09-03 05:03:01.073160"], ["updated_at", "2019-09-03 05:03:01.073160"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "logan_reichel@towne.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "logan_reichel@towne.name"], ["encrypted_password", "$2a$04$B8ubLltTLeQoLaNV3tjuYOsyBmj7Gcre3.b5h8vjkwD6U.KiXWSmu"], ["confirmed_at", "2019-09-03 05:03:04.145602"], ["name", "Hare Brain"], ["email", "logan_reichel@towne.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:04.147461"], ["updated_at", "2019-09-03 05:03:04.147461"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "385156b9f5af6fc3a0079bc2532548a911fc4a1ad4e7c34d58b6eca54d4096d1"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "385156b9f5af6fc3a0079bc2532548a911fc4a1ad4e7c34d58b6eca54d4096d1"], ["reset_password_sent_at", "2019-09-03 05:03:04.227278"], ["updated_at", "2019-09-03 05:03:04.227532"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%227nyzuLNoYn9ch5-61yGB%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-03 00:03:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"7nyzuLNoYn9ch5-61yGB\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "385156b9f5af6fc3a0079bc2532548a911fc4a1ad4e7c34d58b6eca54d4096d1"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"aV0jTnJIg4xOCI_-NbXrdw\":{\"token\":\"$2a$12$10jVbw720yoK5lhYl7mKqOzM60ZXrdlIGxif65W.JlQZDHqFx0Of.\",\"expiry\":1568696584}}"], ["allow_password_change", "t"], ["updated_at", "2019-09-03 05:03:04.425572"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1568696584&client=aV0jTnJIg4xOCI_-NbXrdw&client_id=aV0jTnJIg4xOCI_-NbXrdw&config=&expiry=1568696584&reset_password=true&token=1568696584&uid=logan_reichel%40towne.name Completed 302 Found in 186ms (ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dave.kub@kuphalkuhlman.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dave.kub@kuphalkuhlman.org"], ["encrypted_password", "$2a$04$kbKPlrKQeb.BDFtVrm9ICOp0vtYzT8Y.kx1hH1AYAIZQleGSGQLki"], ["confirmed_at", "2019-09-03 05:03:04.431974"], ["name", "Andy Structible"], ["email", "dave.kub@kuphalkuhlman.org"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:04.432765"], ["updated_at", "2019-09-03 05:03:04.432765"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dave.kub@kuphalkuhlman.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dave.kub@kuphalkuhlman.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"rIwaZ6SJ5bSIrmfnktu7zA\":{\"token\":\"$2a$12$hckNRJycEGWnG2gNbNnR2ufv9U0SvOJ4Y6oP5gunPV1S23uxonm96\",\"expiry\":1568696584,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:04.440-05:00\"}}"], ["updated_at", "2019-09-03 05:03:04.621628"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 05:03:04.624899"], ["last_sign_in_at", "2019-09-03 05:03:04.624899"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:03:04.625203"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 190ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "josephina@legroskutch.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "josephina@legroskutch.co"], ["encrypted_password", "$2a$04$/RkvRVXNpD2iPjB8g40XmOaPnDf2aScg8mS5pD/4Wtou2QH.kXeW."], ["confirmed_at", "2019-09-03 05:03:04.631839"], ["name", "Brandy Bottle"], ["email", "josephina@legroskutch.co"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:04.632590"], ["updated_at", "2019-09-03 05:03:04.632590"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"josephina@legroskutch.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "josephina@legroskutch.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-09-03 05:03:04.636584"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "garfield@millerbarrows.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "garfield@millerbarrows.com"], ["encrypted_password", "$2a$04$AHYosVui/Vyu.WZ0Jbn92e2Th0WHr3o/eoLdnXX3fzsdHlP.htsau"], ["confirmation_token", "yzshyunHcSxycsqT-4JT"], ["confirmation_sent_at", "2019-09-03 05:03:04.640782"], ["name", "Anita Bathe"], ["email", "garfield@millerbarrows.com"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:04.640704"], ["updated_at", "2019-09-03 05:03:04.640704"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"garfield@millerbarrows.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "garfield@millerbarrows.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alvin@adams.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alvin@adams.org"], ["encrypted_password", "$2a$04$daoFbDNfD6rWP1I05sOsyutPmrhpipIKej/jGPEQXGuNz7uVcHGP6"], ["confirmed_at", "2019-09-03 05:03:04.646496"], ["locked_at", "2019-09-03 05:03:04.646506"], ["name", "Lisa Ford"], ["email", "alvin@adams.org"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:04.647185"], ["updated_at", "2019-09-03 05:03:04.647185"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"alvin@adams.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alvin@adams.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "epifania@morar.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "epifania@morar.net"], ["encrypted_password", "$2a$04$hNhtRSYI/Xmnt673mAU63ukSHFmfyBtETpR.muBGewS8tZlAIKZAK"], ["confirmed_at", "2019-09-03 05:03:04.653337"], ["name", "Claire DeAir"], ["email", "epifania@morar.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:04.654067"], ["updated_at", "2019-09-03 05:03:04.654067"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"epifania@morar.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "epifania@morar.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jude_morar@jaskolskigaylord.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jude_morar@jaskolskigaylord.net"], ["encrypted_password", "$2a$04$Ye0MKtLeAV9rFtuZO2Y7PeEo2KFgceevzgHLHGCI5RF/YSRcwqZ1a"], ["confirmed_at", "2019-09-03 05:03:04.663083"], ["name", "Rusty Fossat"], ["email", "jude_morar@jaskolskigaylord.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:04.664172"], ["updated_at", "2019-09-03 05:03:04.664172"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3nJbCIzcukF8hsID-TrPog\":{\"token\":\"$2a$12$mKOoxkDi1stYJi0tGD4LgueIVGosVH8wKKdSGGomRWjEyWHRik4SO\",\"expiry\":1568696584,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:04.665-05:00\"}}"], ["updated_at", "2019-09-03 05:03:04.850109"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jude_morar@jaskolskigaylord.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-09-03 05:03:05.036563"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 186ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "louie.leffler@skilesziemann.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "louie.leffler@skilesziemann.net"], ["encrypted_password", "$2a$04$A983tNZOLG.319NPEJSHU.3RAdujFFkYzwk.m4dn/g1Mk/O9QTupm"], ["confirmed_at", "2019-09-03 05:03:05.044383"], ["name", "Val Veeta"], ["email", "louie.leffler@skilesziemann.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:05.045255"], ["updated_at", "2019-09-03 05:03:05.045255"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "prince.ondricka@reinger.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "prince.ondricka@reinger.net"], ["encrypted_password", "$2a$04$QH.y5lHyy3DTfHakguBX3OkPc9605zC/GBiuil8EC382sBmWzPoWu"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:03:05.049904"], ["name", "Bea Lowe"], ["email", "prince.ondricka@reinger.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:05.051089"], ["updated_at", "2019-09-03 05:03:05.051089"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dekFqUjYu8Maw7LLlLxxuQ\":{\"token\":\"$2a$12$98mWFMWqoD3wtoG2GocZCuS3waLu95rmBLt2ER2/gU4mm5ksR5YiS\",\"expiry\":1568696585,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:05.054-05:00\"}}"], ["updated_at", "2019-09-03 05:03:05.265780"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "prince.ondricka@reinger.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$s3.fz7sdYNAc8stnizzOBeE0FnImLNN7LeNJQksQaVnx9CQjtqsXC"], ["updated_at", "2019-09-03 05:03:05.470513"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:03:05.472678"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 206ms (Views: 0.1ms | ActiveRecord: 0.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dong@greenholt.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dong@greenholt.name"], ["encrypted_password", "$2a$04$0D4zkAlZLe8vEElU9dYWbeV24b4rhyLmUjApaOO1aZJYFHvOQCdP."], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:03:05.478433"], ["name", "Al Kaseltzer"], ["email", "dong@greenholt.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:05.479187"], ["updated_at", "2019-09-03 05:03:05.479187"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ElzozN4ClQtqxujA-u8c9A\":{\"token\":\"$2a$12$7P8In/W2XtKQ7Rh9sA28IuJxfbJxSlxKIDiIQpBS0FpYTSukuMBay\",\"expiry\":1568696585,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:05.480-05:00\"}}"], ["updated_at", "2019-09-03 05:03:05.688220"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dong@greenholt.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$h09ayd4wedOGOhiBBShVIe9q5zBv3eeaSXJPpSF9c00nOZiE0pgkG"], ["updated_at", "2019-09-03 05:03:05.890721"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:03:05.891843"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 203ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "riley.zboncak@hilpertauer.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "riley.zboncak@hilpertauer.net"], ["encrypted_password", "$2a$04$/wXQuY1JQapW0eRJaJr4sezIVjcNyDMnwm0dkHGnzRhrvgG1W.jsq"], ["confirmed_at", "2019-09-03 05:03:05.897902"], ["name", "Ella Vader"], ["email", "riley.zboncak@hilpertauer.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:05.898674"], ["updated_at", "2019-09-03 05:03:05.898674"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fXiUS9Z2vc_h3vm8JPgaSQ\":{\"token\":\"$2a$12$CaLGq81gZMUCZFXRVatrBu9/26FqyY892Hs3zseinaK4FzKyiHR0q\",\"expiry\":1568696585,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:05.899-05:00\"}}"], ["updated_at", "2019-09-03 05:03:06.085633"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "riley.zboncak@hilpertauer.net"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 183ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deangelo@langworth.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "deangelo@langworth.name"], ["encrypted_password", "$2a$04$.sg9VEtkQLFocePDw.bjlu1OYNdP8c8/gGFj1v0I/cx0Sfds2Z6sK"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:03:06.284275"], ["name", "Peg Legge"], ["email", "deangelo@langworth.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:06.285038"], ["updated_at", "2019-09-03 05:03:06.285038"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"GUgxGCGprHXVF2oOt5Od8A\":{\"token\":\"$2a$12$pdPqdYSBkqTFirS4O/HcKu.Had62UUDcE5zjHKeC.Ol71F5BWftY6\",\"expiry\":1568696586,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:06.286-05:00\"}}"], ["updated_at", "2019-09-03 05:03:06.470622"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "deangelo@langworth.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$pMnPYdaIV7IVMa20o0Tg/.e3dJgJvWqCXN7IzDD3ScuETjiSj9cfi"], ["updated_at", "2019-09-03 05:03:06.656708"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:03:06.657809"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 187ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rocio_heller@leannonmueller.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rocio_heller@leannonmueller.biz"], ["encrypted_password", "$2a$04$aXOrQDnjsM4WLs90zlo/UOikadq99abg6WJi.HVvvqLshOrzP5TB."], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:03:06.664092"], ["name", "Holly Wood"], ["email", "rocio_heller@leannonmueller.biz"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:06.665493"], ["updated_at", "2019-09-03 05:03:06.665493"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ucWVPqkBocihD_8Q73KGNQ\":{\"token\":\"$2a$12$4V5mzWs/jdKwSu3hFz7OTOa4o5QEnDxtfrUg0lN13XAFfyaN19mZu\",\"expiry\":1568696586,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:06.666-05:00\"}}"], ["updated_at", "2019-09-03 05:03:06.850343"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "rocio_heller@leannonmueller.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$RL8LUbroQeKhzyj95kkYAevvgjkrYDqtB/fmQP5Y9WAR57zpaTFge"], ["updated_at", "2019-09-03 05:03:07.028197"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:03:07.029235"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "caryl@rohanrohan.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "caryl@rohanrohan.com"], ["encrypted_password", "$2a$04$6my64Jn0ItCWSQ891Hi76OPNW37K0.SMtpRMgldpkXQFVCY/y6kOW"], ["confirmed_at", "2019-09-03 05:03:07.035505"], ["name", "Clara Sabell"], ["email", "caryl@rohanrohan.com"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:07.036300"], ["updated_at", "2019-09-03 05:03:07.036300"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"VTFESTeXquTFgPeB_j3LRA\":{\"token\":\"$2a$12$em0xT.7ZulQt0tpiATTn.eqzbumrla5dnHYyrf0aHRwaXdkOY5QDK\",\"expiry\":1568696587,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:07.037-05:00\"}}"], ["updated_at", "2019-09-03 05:03:07.220747"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "caryl@rohanrohan.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$0HKRP0qGIUrMpk0XDzIjbuoPikeLBwKC3nC/gNVwecEHLlcUvJt9."], ["updated_at", "2019-09-03 05:03:07.405919"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 186ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dana_kihn@langworthwest.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dana_kihn@langworthwest.co"], ["encrypted_password", "$2a$04$Mh5rUSs4aPMkjbQQD.Ysl.SJpDQYo8AeE/ep0.eZFG6y0hsvpi2bK"], ["confirmed_at", "2019-09-03 05:03:07.412789"], ["name", "Mandy Lifeboats"], ["email", "dana_kihn@langworthwest.co"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:07.413580"], ["updated_at", "2019-09-03 05:03:07.413580"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "johnathan.dubuque@greenfelder.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "johnathan.dubuque@greenfelder.io"], ["encrypted_password", "$2a$04$NFP5MeXCuhouPHDzY1NeOOue0KpRRwEdNvDYOEP6N.dCWIlqKghLK"], ["confirmed_at", "2019-09-03 05:03:10.488790"], ["name", "Brandy Bottle"], ["email", "johnathan.dubuque@greenfelder.io"], ["created_at", "2019-09-03 05:03:10.490587"], ["updated_at", "2019-09-03 05:03:10.490587"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "66271f2824408e0a877a62956f81ee2cce53260151e0d170a530d57381a6e9f8"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "66271f2824408e0a877a62956f81ee2cce53260151e0d170a530d57381a6e9f8"], ["reset_password_sent_at", "2019-09-03 05:03:10.575243"], ["updated_at", "2019-09-03 05:03:10.575478"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22Fz1q5Fm4DGRYQXXD-W6R%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-03 00:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"Fz1q5Fm4DGRYQXXD-W6R\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "66271f2824408e0a877a62956f81ee2cce53260151e0d170a530d57381a6e9f8"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lMb5PdoofRu8zRSUfZjxeA\":{\"token\":\"$2a$10$LVbXaYmPaXVDL73NSsHo8uwiSFXfnvlN88a.XydnsUzwSZGvPaKZC\",\"expiry\":1568696590}}"], ["allow_password_change", "t"], ["updated_at", "2019-09-03 05:03:10.653298"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=O5zYmf0hGCZqz5T_BqNl6A&client=lMb5PdoofRu8zRSUfZjxeA&client_id=lMb5PdoofRu8zRSUfZjxeA&config=&expiry=1568696590&reset_password=true&token=O5zYmf0hGCZqz5T_BqNl6A&uid=johnathan.dubuque%40greenfelder.io Completed 302 Found in 56ms (ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gabriel_schamberger@jastklocko.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gabriel_schamberger@jastklocko.io"], ["encrypted_password", "$2a$04$Q8uGNo1nUWQ36s6c6kiHEe3h25tzXSCjv8lHiyAZX.G3N9iEeR6gK"], ["confirmed_at", "2019-09-03 05:03:10.658966"], ["name", "Ayma Moron"], ["email", "gabriel_schamberger@jastklocko.io"], ["created_at", "2019-09-03 05:03:10.659767"], ["updated_at", "2019-09-03 05:03:10.659767"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"gabriel_schamberger@jastklocko.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gabriel_schamberger@jastklocko.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"d0Am7DDWDSucA1pUeby9IA\":{\"token\":\"$2a$10$BeaXBkmi.SFcWeZ2Jd99r.6q.EjspVKbVOplZAuovXnHS2oRBCkYy\",\"expiry\":1568696590,\"updated_at\":\"2019-09-03 05:03:10 UTC\"}}"], ["updated_at", "2019-09-03 05:03:10.719874"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 05:03:10.724126"], ["last_sign_in_at", "2019-09-03 05:03:10.724126"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:03:10.724508"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 62ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "samantha@weinatdonnelly.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "samantha@weinatdonnelly.net"], ["encrypted_password", "$2a$04$F1OKEurQNDnudOpey1uBx.aLfEzdzXmEZGBOgOpn7886KpQwjO2MK"], ["confirmed_at", "2019-09-03 05:03:10.731549"], ["name", "Drew Blood"], ["email", "samantha@weinatdonnelly.net"], ["created_at", "2019-09-03 05:03:10.732338"], ["updated_at", "2019-09-03 05:03:10.732338"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"samantha@weinatdonnelly.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "samantha@weinatdonnelly.net"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lyle@gaylord.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lyle@gaylord.net"], ["encrypted_password", "$2a$04$wcoXdwqWbSza4HwhtRt0nePANtpfBf05lgvJkKWgqU.5epzm0rqvi"], ["confirmation_token", "gwK4AwEF5bBM7xqbH-gH"], ["confirmation_sent_at", "2019-09-03 05:03:10.743495"], ["name", "Billy Rubin"], ["email", "lyle@gaylord.net"], ["created_at", "2019-09-03 05:03:10.743373"], ["updated_at", "2019-09-03 05:03:10.743373"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lyle@gaylord.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lyle@gaylord.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kris@nolan.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kris@nolan.name"], ["encrypted_password", "$2a$04$mJlZQi2KzbR5nz/5szIjvOBZZh6ycwxVeApZdvIQOn70xQd9Q6GBW"], ["confirmed_at", "2019-09-03 05:03:10.751020"], ["locked_at", "2019-09-03 05:03:10.751040"], ["name", "Marsha Mellow"], ["email", "kris@nolan.name"], ["created_at", "2019-09-03 05:03:10.752114"], ["updated_at", "2019-09-03 05:03:10.752114"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kris@nolan.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kris@nolan.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "betty_kuhlman@gaylord.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "betty_kuhlman@gaylord.name"], ["encrypted_password", "$2a$04$9dt4oEvCE4NIBT0xS6bNpuA6OsbYbT1bR5FEwZvYWyDtfJf74TjyG"], ["confirmed_at", "2019-09-03 05:03:10.759375"], ["name", "Eve Ning"], ["email", "betty_kuhlman@gaylord.name"], ["created_at", "2019-09-03 05:03:10.760317"], ["updated_at", "2019-09-03 05:03:10.760317"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"betty_kuhlman@gaylord.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "betty_kuhlman@gaylord.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wilford@harber.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "wilford@harber.biz"], ["encrypted_password", "$2a$04$lMpo54ocLhGLjFF4FRV4H.F30AtrU1MdU6lzE6QnJ4q5p2jqr1Dvu"], ["confirmed_at", "2019-09-03 05:03:10.768651"], ["name", "Marshall Law"], ["email", "wilford@harber.biz"], ["created_at", "2019-09-03 05:03:10.769529"], ["updated_at", "2019-09-03 05:03:10.769529"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TavX6JmznTsBQ0FyvVf_Gg\":{\"token\":\"$2a$10$07qDHLn/Dqid5wqW1CAWp.sp/k1CYvhewRVpf7FC1BKyCYdfwei8.\",\"expiry\":1568696590,\"updated_at\":\"2019-09-03 05:03:10 UTC\"}}"], ["updated_at", "2019-09-03 05:03:10.827748"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "wilford@harber.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-03 05:03:10.882757"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 54ms (Views: 0.2ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "noe_christiansen@halvorson.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "noe_christiansen@halvorson.org"], ["encrypted_password", "$2a$04$fggROcP/87YM/U1zUu99b.Eohebtxm0ynk0IqzjhBghnqdWYdVI9a"], ["confirmed_at", "2019-09-03 05:03:10.891998"], ["name", "Hugh deMann"], ["email", "noe_christiansen@halvorson.org"], ["created_at", "2019-09-03 05:03:10.893060"], ["updated_at", "2019-09-03 05:03:10.893060"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "santos.rempel@runte.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "santos.rempel@runte.io"], ["encrypted_password", "$2a$04$e1l.jJy9NfCFzApA5jp63eBgOHVUISm7qr6/WAiI015brhE9v4QLG"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:03:10.897505"], ["name", "Lowden Clear"], ["email", "santos.rempel@runte.io"], ["created_at", "2019-09-03 05:03:10.898548"], ["updated_at", "2019-09-03 05:03:10.898548"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"IcLtc_Vk98u_muRDEImMgA\":{\"token\":\"$2a$10$70DsLvUV/IvGZb8VDk43ae2MGfnUTrSMCyjb47AUF.9LDRMv.AGXy\",\"expiry\":1568696590,\"updated_at\":\"2019-09-03 05:03:10 UTC\"}}"], ["updated_at", "2019-09-03 05:03:10.955895"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "santos.rempel@runte.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$o7EbSiuEY2O6daGfH6qcju6aHsVD3SanLSMzg.saHscZC0fYq6by."], ["updated_at", "2019-09-03 05:03:11.018178"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:03:11.019542"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 63ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "willetta_wolff@bayer.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "willetta_wolff@bayer.name"], ["encrypted_password", "$2a$04$p2yEiTO0lGfLoeUGkJmC3ucof9aH38scAsL6n01g1CHODd8CsvZwi"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:03:11.025393"], ["name", "Lois Price"], ["email", "willetta_wolff@bayer.name"], ["created_at", "2019-09-03 05:03:11.026642"], ["updated_at", "2019-09-03 05:03:11.026642"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gX4ypj2UbUuAw_aEfdoNcA\":{\"token\":\"$2a$10$MP3cBbK0E65I/3hi1Ad2eeFuwnLG4pc0Zi751Cc5XYDLRPEWRu4K2\",\"expiry\":1568696591,\"updated_at\":\"2019-09-03 05:03:11 UTC\"}}"], ["updated_at", "2019-09-03 05:03:11.084400"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "willetta_wolff@bayer.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$05K1KY88A0smZoFHHhdn5eHXJ.lr0hYzlDJkKPFsuBVpHimHpP5gy"], ["updated_at", "2019-09-03 05:03:11.138757"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:03:11.139764"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mervin_kihn@runolfon.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mervin_kihn@runolfon.co"], ["encrypted_password", "$2a$04$7GIxDo9pVWXpJ9/TwAe8guWz1I45BnC9uhR09IMVkrq9LPzk1floq"], ["confirmed_at", "2019-09-03 05:03:11.146101"], ["name", "Alf Abet"], ["email", "mervin_kihn@runolfon.co"], ["created_at", "2019-09-03 05:03:11.146962"], ["updated_at", "2019-09-03 05:03:11.146962"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dAUxwNHExXU5hgg0Vxk8Sg\":{\"token\":\"$2a$10$cfs7lT2SWLKG4K2qdR.t4uMN/JQUm4n5v8mxl1wL9DR.5Y0ufQcxi\",\"expiry\":1568696591,\"updated_at\":\"2019-09-03 05:03:11 UTC\"}}"], ["updated_at", "2019-09-03 05:03:11.196259"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "mervin_kihn@runolfon.co"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vi_oberbrunner@mohrmcclure.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "vi_oberbrunner@mohrmcclure.com"], ["encrypted_password", "$2a$04$DpID5x0klwjfgDHMzZkHr.kp/TDOGWmN02gjLEqK4YMCJ/iY1YZFi"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:03:11.253705"], ["name", "Artie Choke"], ["email", "vi_oberbrunner@mohrmcclure.com"], ["created_at", "2019-09-03 05:03:11.254575"], ["updated_at", "2019-09-03 05:03:11.254575"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kFOdzCVcaMBgzE5ACZORoQ\":{\"token\":\"$2a$10$na7uOmYoFrIV4A3ZclO5TO41diridLHkK9qO4tFGpCgqxHgOcS.pS\",\"expiry\":1568696591,\"updated_at\":\"2019-09-03 05:03:11 UTC\"}}"], ["updated_at", "2019-09-03 05:03:11.306481"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "vi_oberbrunner@mohrmcclure.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$ujkyJMuTU0sBvwaoMYEIOu2Vx.MFCiCKrBfKNayP9L53TNzEE1TyS"], ["updated_at", "2019-09-03 05:03:11.357804"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:03:11.358837"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "delora@hermiston.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "delora@hermiston.info"], ["encrypted_password", "$2a$04$xuvnfjJlpbRqYQL8uPUbHeTaTUDriJs8XcpV2sQPLc2Dw694g8mbu"], ["allow_password_change", "t"], ["confirmed_at", "2019-09-03 05:03:11.363908"], ["name", "Marlon Fisher"], ["email", "delora@hermiston.info"], ["created_at", "2019-09-03 05:03:11.364798"], ["updated_at", "2019-09-03 05:03:11.364798"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EZ9BZEAvmKdPnq2fFQzNzw\":{\"token\":\"$2a$10$Q4bXPecOz5Tmq2adTVULt.v923V1Oj1odgGs0Kus6R.9LPIkpx1FG\",\"expiry\":1568696591,\"updated_at\":\"2019-09-03 05:03:11 UTC\"}}"], ["updated_at", "2019-09-03 05:03:11.415465"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "delora@hermiston.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$wNL1CNHh3PgRsa.2r1N0JO6VfP/CfrfXL13XU0nLcdscvV8P3S7wC"], ["updated_at", "2019-09-03 05:03:11.467117"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-09-03 05:03:11.468090"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tobias_vonrueden@kuphal.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tobias_vonrueden@kuphal.com"], ["encrypted_password", "$2a$04$CExbEkwa4CwzgFf02taaWuhlnCoZ0vhhmzVtCH5XdvbD6C9TWxvdq"], ["confirmed_at", "2019-09-03 05:03:11.475779"], ["name", "Anna Mull"], ["email", "tobias_vonrueden@kuphal.com"], ["created_at", "2019-09-03 05:03:11.476942"], ["updated_at", "2019-09-03 05:03:11.476942"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"SsaYeGNS_d2nwJWtmIr3tA\":{\"token\":\"$2a$10$dKLCSVoEkzLE/IdcZtoGkOkB5Sp4vbifaVaP83JJvuJ5Nl8WfcWn.\",\"expiry\":1568696591,\"updated_at\":\"2019-09-03 05:03:11 UTC\"}}"], ["updated_at", "2019-09-03 05:03:11.530299"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tobias_vonrueden@kuphal.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$HI5s1CEjwSPo8nleFdL6aeQuF4qoDFncYzubsuicYAcTDoKHkpQNC"], ["updated_at", "2019-09-03 05:03:11.580558"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chong@framijacobson.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "chong@framijacobson.net"], ["encrypted_password", "$2a$04$mql08iSQQ7QjTjl0260AxO4kzairqRFRudFZ6jIdU30oWAKJ328P."], ["confirmed_at", "2019-09-03 05:03:11.587318"], ["name", "Colin Allcars"], ["email", "chong@framijacobson.net"], ["created_at", "2019-09-03 05:03:11.588118"], ["updated_at", "2019-09-03 05:03:11.588118"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "suzie.douglas@schaden.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "suzie.douglas@schaden.io"], ["encrypted_password", "$2a$04$z515elcAEE04ifeq6dk/ruclvfoCCsTOlf7n8go/i7sjK1Rb6Yb2e"], ["confirmed_at", "2019-09-03 05:03:14.673426"], ["name", "Brandon Cattell"], ["email", "suzie.douglas@schaden.io"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:14.675365"], ["updated_at", "2019-09-03 05:03:14.675365"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d80a23872decd88abe2eb85936656c4d4f17c5741114102bdfb692a3e9e3bbd5"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "d80a23872decd88abe2eb85936656c4d4f17c5741114102bdfb692a3e9e3bbd5"], ["reset_password_sent_at", "2019-09-03 05:03:14.754479"], ["updated_at", "2019-09-03 05:03:14.754780"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22LpTsWGbExM5SmiyVCQr-%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-03 00:03:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"LpTsWGbExM5SmiyVCQr-\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d80a23872decd88abe2eb85936656c4d4f17c5741114102bdfb692a3e9e3bbd5"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ws5WCy4MmAOPpOwkXUsCJg\":{\"token\":\"$2a$12$mCISHP5xOH/TeUwV4eWxmO9kgqaeaWpLnyY85.px5uUiRRZ8JQTTG\",\"expiry\":1568696594}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 05:03:14.950712"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1568696594&client=ws5WCy4MmAOPpOwkXUsCJg&client_id=ws5WCy4MmAOPpOwkXUsCJg&config=&expiry=1568696594&reset_password=true&token=1568696594&uid=suzie.douglas%40schaden.io Completed 302 Found in 185ms (ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lacy@windler.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lacy@windler.name"], ["encrypted_password", "$2a$04$YRk9L89EGhNTFq./NsDtmeXqxP0srDPKHSZKhomNvTKuf.uIq78Ey"], ["confirmed_at", "2019-09-03 05:03:14.956745"], ["name", "Warren Piece"], ["email", "lacy@windler.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:14.957506"], ["updated_at", "2019-09-03 05:03:14.957506"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lacy@windler.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lacy@windler.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"V-EJgOxu01JVN6z4WDYkGw\":{\"token\":\"$2a$12$JGyH1vZd1zGcZJ2a35wKg.ycgxemBH0zoOJGmmTWZIjwH0V8ymt0a\",\"expiry\":1568696594,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:14.964-05:00\"}}"], ["updated_at", "2019-09-03 05:03:15.143284"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 05:03:15.145935"], ["last_sign_in_at", "2019-09-03 05:03:15.145935"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:03:15.146179"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 186ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ivory@satterfieldwest.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ivory@satterfieldwest.org"], ["encrypted_password", "$2a$04$EaHOHsyr0HScVg6WuHMieeYhbnlHggC2rlQADb3lBv9qxo7Z6mNhy"], ["confirmed_at", "2019-09-03 05:03:15.152859"], ["name", "June Bugg"], ["email", "ivory@satterfieldwest.org"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:15.153662"], ["updated_at", "2019-09-03 05:03:15.153662"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ivory@satterfieldwest.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ivory@satterfieldwest.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-09-03 05:03:15.157720"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "javier@heidenreichkilback.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "javier@heidenreichkilback.info"], ["encrypted_password", "$2a$04$OF1qBNObX8RkAOuRSuIGhOgmYVpYbtY.qFOvUvAnQbIfx6JLCRaeC"], ["confirmation_token", "4JmMtavYiycBxzvrUeLp"], ["confirmation_sent_at", "2019-09-03 05:03:15.161684"], ["name", "Jaqueline Hyde"], ["email", "javier@heidenreichkilback.info"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:15.161621"], ["updated_at", "2019-09-03 05:03:15.161621"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"javier@heidenreichkilback.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "javier@heidenreichkilback.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cecelia@dietrich.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cecelia@dietrich.net"], ["encrypted_password", "$2a$04$joJiOL7SrlDyLOaIgvdND.GSFOuPHdsxiouEhuK9WgkFN9VqYvDYi"], ["confirmed_at", "2019-09-03 05:03:15.167342"], ["locked_at", "2019-09-03 05:03:15.167351"], ["name", "Rich Guy"], ["email", "cecelia@dietrich.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:15.168049"], ["updated_at", "2019-09-03 05:03:15.168049"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"cecelia@dietrich.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cecelia@dietrich.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lupe@collier.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lupe@collier.net"], ["encrypted_password", "$2a$04$bbPcdcYB5ZokPh5CyVKnaepGIpZiqadCt3hUYxEm7X.MvaMiAAs5W"], ["confirmed_at", "2019-09-03 05:03:15.174789"], ["name", "Anna Septic"], ["email", "lupe@collier.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:15.175651"], ["updated_at", "2019-09-03 05:03:15.175651"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lupe@collier.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lupe@collier.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alfonzo_harris@naderbarrows.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alfonzo_harris@naderbarrows.biz"], ["encrypted_password", "$2a$04$3Io/8TFE8WxYGb9Q6WnRl.40iFuyI0H/biSW6ZsJYHxfn20rfBCKO"], ["confirmed_at", "2019-09-03 05:03:15.183921"], ["name", "Taylor Maid"], ["email", "alfonzo_harris@naderbarrows.biz"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:15.184794"], ["updated_at", "2019-09-03 05:03:15.184794"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lVfSt1AMturdX07fFxXrwA\":{\"token\":\"$2a$12$OjixyW8me8WAybmufwVAyOX9zLBLWUmWawXl8OeHgZZFiYnGd3JEC\",\"expiry\":1568696595,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:15.186-05:00\"}}"], ["updated_at", "2019-09-03 05:03:15.372578"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "alfonzo_harris@naderbarrows.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-09-03 05:03:15.549654"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 176ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "karri_von@ledner.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "karri_von@ledner.name"], ["encrypted_password", "$2a$04$i5eh6t72rN5RDScSGWT6Ve7TyStY.UFxfL9/y7lDs0vPGWrtcFzee"], ["confirmed_at", "2019-09-03 05:03:15.556900"], ["name", "Perry Mecium"], ["email", "karri_von@ledner.name"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:15.557607"], ["updated_at", "2019-09-03 05:03:15.557607"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kristian_senger@yundtbode.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kristian_senger@yundtbode.net"], ["encrypted_password", "$2a$04$Rqf63A4l3pE8JtJqOtu6he1NqKDE5FkDnvz17XhEFDmutZJt3zaDC"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:03:15.561147"], ["name", "Bill Ding"], ["email", "kristian_senger@yundtbode.net"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:15.561766"], ["updated_at", "2019-09-03 05:03:15.561766"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kR-XIb1m6dCEkNnPl9lixg\":{\"token\":\"$2a$12$wenY1RAruu7nnm1.STXCEe2joVNqObh3wOpOqmD7yd7SZ4J5WI4JS\",\"expiry\":1568696595,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:15.564-05:00\"}}"], ["updated_at", "2019-09-03 05:03:15.743428"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kristian_senger@yundtbode.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$08aI3XekFzza.5JsIQWNWe6FPblRyu5tAkWb4We8brMR8JzGnrzcG"], ["updated_at", "2019-09-03 05:03:15.924808"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:03:15.925823"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 182ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lenny_grimes@bosco.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lenny_grimes@bosco.org"], ["encrypted_password", "$2a$04$MuRnI7dwbMhAMin7lvMWhODJsZfMYPohd0T11/HuvwrEf6.PP0YtC"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:03:15.930680"], ["name", "Rob Banks"], ["email", "lenny_grimes@bosco.org"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:15.931358"], ["updated_at", "2019-09-03 05:03:15.931358"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0GxCtPiUfPgJAdJKPJ6GtQ\":{\"token\":\"$2a$12$6/AdLIVJIohPJt6KG3TnvOHo7i9NYXWlvO6XZyiv.hVzOc7CG4i7u\",\"expiry\":1568696595,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:15.932-05:00\"}}"], ["updated_at", "2019-09-03 05:03:16.112491"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lenny_grimes@bosco.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$gdROGxH93Yi3/e03Qw9nHOE6cMOIL1AIzQ7HSwEWuhvcC0D7nEH3a"], ["updated_at", "2019-09-03 05:03:16.288217"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:03:16.289171"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 176ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ashley@reichelgoldner.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ashley@reichelgoldner.biz"], ["encrypted_password", "$2a$04$koYYlvm65ao9z7PCP1mg6e/rqI5/OilpHpY0JZABp..0Z/I5iimYm"], ["confirmed_at", "2019-09-03 05:03:16.296494"], ["name", "Jim Shorts"], ["email", "ashley@reichelgoldner.biz"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:16.297240"], ["updated_at", "2019-09-03 05:03:16.297240"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ziW_MY1cTpfZKYj-49OK8A\":{\"token\":\"$2a$12$Y4ltpuJCbOSle/1L/nk5HuxNcpBY88fUbUSKs6L2/fnKb4Bf4M68S\",\"expiry\":1568696596,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:16.298-05:00\"}}"], ["updated_at", "2019-09-03 05:03:16.478197"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ashley@reichelgoldner.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 180ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "darrick.pouros@koelpinmedhurst.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "darrick.pouros@koelpinmedhurst.info"], ["encrypted_password", "$2a$04$B2Q60Ltc4xavIQQ9FYAslOOHA7X6Wez40H97RM0banDW6fibGgGji"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:03:16.663645"], ["name", "Stan Still"], ["email", "darrick.pouros@koelpinmedhurst.info"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:16.664408"], ["updated_at", "2019-09-03 05:03:16.664408"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"XWDvwXbBnJksaufuJCy0ZQ\":{\"token\":\"$2a$12$VgFMaIYCZW4KOcu3CkGTS.kBiTTU.CfkpIVt7lDKgFtmqr6lvgjay\",\"expiry\":1568696596,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:16.665-05:00\"}}"], ["updated_at", "2019-09-03 05:03:16.846229"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "darrick.pouros@koelpinmedhurst.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$876yT6OEzFlwm.0MTeFb/OgPpqlBEjAcjCrZ.j1qy2fYykwxzc0.."], ["updated_at", "2019-09-03 05:03:17.023706"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:03:17.036942"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jadwiga_kirlin@carterhermann.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jadwiga_kirlin@carterhermann.info"], ["encrypted_password", "$2a$04$d4OW5N/I9bwMH1eodaN0hOgcPrEukWOMFl/WbtiREcAVEXcy0zcai"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:03:17.043506"], ["name", "Rick Kleiner"], ["email", "jadwiga_kirlin@carterhermann.info"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:17.044406"], ["updated_at", "2019-09-03 05:03:17.044406"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Qigi0qNAMDtER3WqexFi0w\":{\"token\":\"$2a$12$SoPAxG1f7OKhGipfZ8ic1.6B3JkqDciXeE8PoQQkLTNotpCNV30qm\",\"expiry\":1568696597,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:17.045-05:00\"}}"], ["updated_at", "2019-09-03 05:03:17.230897"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jadwiga_kirlin@carterhermann.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$hfzaXSKTEyUtg2mglQTuW.ourbCX3cj7/7TqSd1J75qHh.z/7.kQK"], ["updated_at", "2019-09-03 05:03:17.414281"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:03:17.415305"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 184ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marget_vandervort@zboncak.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "marget_vandervort@zboncak.io"], ["encrypted_password", "$2a$04$fwEn6EWX0qiO2tz5EsBpku1Ri06J4WjvaLW4bbwxwwyXsIcthudMC"], ["confirmed_at", "2019-09-03 05:03:17.423251"], ["name", "Anne Teak"], ["email", "marget_vandervort@zboncak.io"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:17.424350"], ["updated_at", "2019-09-03 05:03:17.424350"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TlWhxChydHfE1kz87k6d5g\":{\"token\":\"$2a$12$VjNp.ol079TEGlx0F.W38OwwW3chqkC9DQnWCuRsR3t..9lWOu9uK\",\"expiry\":1568696597,\"last_token\":null,\"updated_at\":\"2019-09-03T00:03:17.425-05:00\"}}"], ["updated_at", "2019-09-03 05:03:17.612652"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "marget_vandervort@zboncak.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$suZbFr63eWLgK8BI/U/HUuMUCzeqklLw8b3.UKJluVN4xhmA5mSXy"], ["updated_at", "2019-09-03 05:03:17.797763"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 186ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shawanna@bergnaum.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "shawanna@bergnaum.io"], ["encrypted_password", "$2a$04$8/y3YX2i1EygpZvfiugypORxPIUaFCeOujV/DceOe3kbfCAuUq2Ke"], ["confirmed_at", "2019-09-03 05:03:17.803932"], ["name", "Chris Mass"], ["email", "shawanna@bergnaum.io"], ["tokens", "{}"], ["created_at", "2019-09-03 05:03:17.804508"], ["updated_at", "2019-09-03 05:03:17.804508"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "victoria.emmerich@gottlieb.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "victoria.emmerich@gottlieb.io"], ["encrypted_password", "$2a$04$PvoDpccDshFu0F5riRPFSOX5bVgJQAkYWSpqYE1RCSRFXwp6HCy9i"], ["confirmed_at", "2019-09-03 05:03:21.042276"], ["name", "Alf Abet"], ["email", "victoria.emmerich@gottlieb.io"], ["created_at", "2019-09-03 05:03:21.044319"], ["updated_at", "2019-09-03 05:03:21.044319"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b6ddd9a5e27ef9ca13a74a326b01adf8726b8907223c3ba7e5afddef26869214"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b6ddd9a5e27ef9ca13a74a326b01adf8726b8907223c3ba7e5afddef26869214"], ["reset_password_sent_at", "2019-09-03 05:03:21.127870"], ["updated_at", "2019-09-03 05:03:21.128112"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22kgStkfWdWHyeMDxvWhkB%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-03 00:03:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"kgStkfWdWHyeMDxvWhkB\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b6ddd9a5e27ef9ca13a74a326b01adf8726b8907223c3ba7e5afddef26869214"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Sa7ICAJk4B2RTCAkHuYZFQ\":{\"token\":\"$2a$10$Arn/dx2eoA3bQ1y65RlKkengSzGVuknpR9Ej.3en5Hvx7gNJzdKD6\",\"expiry\":1568696601}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 05:03:21.199111"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=_SsS1Dm22-qfso-BAKwYyg&client=Sa7ICAJk4B2RTCAkHuYZFQ&client_id=Sa7ICAJk4B2RTCAkHuYZFQ&config=&expiry=1568696601&reset_password=true&token=_SsS1Dm22-qfso-BAKwYyg&uid=victoria.emmerich%40gottlieb.io Completed 302 Found in 59ms (ActiveRecord: 0.2ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "evelyne.ryan@spencerbarton.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "evelyne.ryan@spencerbarton.name"], ["encrypted_password", "$2a$04$7kDh96D4lEDnt1Md6v1w6umqFFFQplt5xf.UFOL.6ctPNkaSEwwSq"], ["confirmed_at", "2019-09-03 05:03:21.204879"], ["name", "Aaron Thetires"], ["email", "evelyne.ryan@spencerbarton.name"], ["created_at", "2019-09-03 05:03:21.205689"], ["updated_at", "2019-09-03 05:03:21.205689"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"evelyne.ryan@spencerbarton.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "evelyne.ryan@spencerbarton.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"aYk8U_zMWd66TnKDbdA-oA\":{\"token\":\"$2a$10$uilVYa4H5oLmdsbpMakvTOUFpWr.FfZ/J6bJKNSRsOXv9QmGJnYiu\",\"expiry\":1568696601,\"updated_at\":\"2019-09-03 05:03:21 UTC\"}}"], ["updated_at", "2019-09-03 05:03:21.264643"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 05:03:21.267611"], ["last_sign_in_at", "2019-09-03 05:03:21.267611"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:03:21.268001"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kamilah@stanton.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kamilah@stanton.net"], ["encrypted_password", "$2a$04$gJ2iN2ecs6.N94mAV0F7HuI7WcF/N4Wp9dLgxufuSb1IMDXCW07T."], ["confirmed_at", "2019-09-03 05:03:21.275391"], ["name", "Ivan Oder"], ["email", "kamilah@stanton.net"], ["created_at", "2019-09-03 05:03:21.276351"], ["updated_at", "2019-09-03 05:03:21.276351"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kamilah@stanton.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kamilah@stanton.net"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "belen.jerde@walshheaney.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "belen.jerde@walshheaney.co"], ["encrypted_password", "$2a$04$XyVqAqpv6cLmYhgYlQM/guVbbj7aEN5WdSDTmqn14MNetPE9vpip."], ["confirmation_token", "-2s4GRP_6A1pvp4x5AQz"], ["confirmation_sent_at", "2019-09-03 05:03:21.287520"], ["name", "Curt Zee"], ["email", "belen.jerde@walshheaney.co"], ["created_at", "2019-09-03 05:03:21.287415"], ["updated_at", "2019-09-03 05:03:21.287415"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"belen.jerde@walshheaney.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "belen.jerde@walshheaney.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joella@greenholt.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "joella@greenholt.org"], ["encrypted_password", "$2a$04$QmazQOVsroKXpnwx/iMF4uPOpvj52U3EcrcPUtltqMweXTxWquune"], ["confirmed_at", "2019-09-03 05:03:21.295342"], ["locked_at", "2019-09-03 05:03:21.295358"], ["name", "Quimby Ingmeen"], ["email", "joella@greenholt.org"], ["created_at", "2019-09-03 05:03:21.296457"], ["updated_at", "2019-09-03 05:03:21.296457"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"joella@greenholt.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "joella@greenholt.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "freddie.sauer@lemkevonrueden.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "freddie.sauer@lemkevonrueden.biz"], ["encrypted_password", "$2a$04$fAuxhjkUV4pm0iO7XIslLOZYyXQXgNrx9bTZyYI3n0iqLvThiNsLu"], ["confirmed_at", "2019-09-03 05:03:21.304993"], ["name", "Constance Noring"], ["email", "freddie.sauer@lemkevonrueden.biz"], ["created_at", "2019-09-03 05:03:21.306145"], ["updated_at", "2019-09-03 05:03:21.306145"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"freddie.sauer@lemkevonrueden.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "freddie.sauer@lemkevonrueden.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nieves_bins@thompson.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nieves_bins@thompson.co"], ["encrypted_password", "$2a$04$kJw9hxeBbdIcup/IzQCjEONU4sMH2tRw41Totb59BCib7h/FvOykO"], ["confirmed_at", "2019-09-03 05:03:21.315117"], ["name", "Sue Jeu"], ["email", "nieves_bins@thompson.co"], ["created_at", "2019-09-03 05:03:21.316060"], ["updated_at", "2019-09-03 05:03:21.316060"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"H3kVis5BKtZPvrLRQM5zXA\":{\"token\":\"$2a$10$3CupBvXaH7qoBO2Joa3oB.GfJRJXFdh4TLu7wVr08hAQOjFp28sJG\",\"expiry\":1568696601,\"updated_at\":\"2019-09-03 05:03:21 UTC\"}}"], ["updated_at", "2019-09-03 05:03:21.374547"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "nieves_bins@thompson.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-03 05:03:21.428035"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carol.daniel@runolfsdottirfranecki.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "carol.daniel@runolfsdottirfranecki.io"], ["encrypted_password", "$2a$04$h4Bnn7xPtVstFqkF8Z/HQ.tE2qeXMWrrpbFim3DczSn0CSNjDb3pm"], ["confirmed_at", "2019-09-03 05:03:21.434865"], ["name", "Claire Voyance"], ["email", "carol.daniel@runolfsdottirfranecki.io"], ["created_at", "2019-09-03 05:03:21.435635"], ["updated_at", "2019-09-03 05:03:21.435635"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "long@brakus.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "long@brakus.co"], ["encrypted_password", "$2a$04$7vT6Ac8Slpi5zvmD2QV17uJfsXrbrdS4KyEqPbBYtWOkwP.gWPeym"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:03:21.439592"], ["name", "Anna Conda"], ["email", "long@brakus.co"], ["created_at", "2019-09-03 05:03:21.440458"], ["updated_at", "2019-09-03 05:03:21.440458"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"sw0wp2-91c5555VZAT4kHg\":{\"token\":\"$2a$10$oj7.ehWNmgyE49KtThlKP.Uu2nQ476slUV723lEen/A4PFp6u/a2m\",\"expiry\":1568696601,\"updated_at\":\"2019-09-03 05:03:21 UTC\"}}"], ["updated_at", "2019-09-03 05:03:21.499911"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "long@brakus.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$0N5mHfFaj6e3gBeYVLz6SOAEzKF7QIYoadiljVPxyBJ0U/3anotz6"], ["updated_at", "2019-09-03 05:03:21.559608"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:03:21.560652"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "neomi@tromp.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "neomi@tromp.name"], ["encrypted_password", "$2a$04$gr0n96d6piu3MsvW1i2ZauWIlOOMSYiJRuSvn1fTHikQSMR.5JGd6"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:03:21.566014"], ["name", "Estelle Hertz"], ["email", "neomi@tromp.name"], ["created_at", "2019-09-03 05:03:21.566909"], ["updated_at", "2019-09-03 05:03:21.566909"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LliXsGDVL5sypQUCE-DFoA\":{\"token\":\"$2a$10$no82T.I5R/wMJbHQuq.FeenkEYXnWknVzesPWKbDJzbn2QByDOqLW\",\"expiry\":1568696601,\"updated_at\":\"2019-09-03 05:03:21 UTC\"}}"], ["updated_at", "2019-09-03 05:03:21.621194"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "neomi@tromp.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$sJZ27Fb5LI83.7NS53GV7O45OFyQ5baH/uAGR4PefllIZ/6VKaHAq"], ["updated_at", "2019-09-03 05:03:21.673638"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:03:21.674573"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "barbera@barrowskutch.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "barbera@barrowskutch.name"], ["encrypted_password", "$2a$04$xMBS87WcYWhq.yKzkwGOqOaD8yflehNG4WqMhS1fvMY6m/FSAnB3u"], ["confirmed_at", "2019-09-03 05:03:21.679981"], ["name", "Tom Katt"], ["email", "barbera@barrowskutch.name"], ["created_at", "2019-09-03 05:03:21.680826"], ["updated_at", "2019-09-03 05:03:21.680826"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lAaMoDP5RzFor1FKZo4tzQ\":{\"token\":\"$2a$10$3jiiMbLADT3IFxpNPvS8s.3Tab1XCLg6cOJp4BMn/72qRXvrkdLSm\",\"expiry\":1568696601,\"updated_at\":\"2019-09-03 05:03:21 UTC\"}}"], ["updated_at", "2019-09-03 05:03:21.736116"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "barbera@barrowskutch.name"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kenisha.schaefer@jakubowski.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kenisha.schaefer@jakubowski.com"], ["encrypted_password", "$2a$04$NJiDjWwHs3qspCRpkPPnreO4frm3vElTQ2b4JI4wpwBR0K/61OUKG"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:03:21.794113"], ["name", "Justin Tune"], ["email", "kenisha.schaefer@jakubowski.com"], ["created_at", "2019-09-03 05:03:21.794920"], ["updated_at", "2019-09-03 05:03:21.794920"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"_xQBYvrilWJ_5Y7BmANptg\":{\"token\":\"$2a$10$PHwr/MeGPLRPe39XDjBR/uDo530rv8D40/P8Bn7RaRpktliDrBjmi\",\"expiry\":1568696601,\"updated_at\":\"2019-09-03 05:03:21 UTC\"}}"], ["updated_at", "2019-09-03 05:03:21.850026"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kenisha.schaefer@jakubowski.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$5JJ0L/DMO/y4aAcxqXnw5.z8rY7X1FXdfyv.ZrwAfo8Q2YeKdbiA2"], ["updated_at", "2019-09-03 05:03:21.902555"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:03:21.903472"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ellie_bashirian@block.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ellie_bashirian@block.info"], ["encrypted_password", "$2a$04$JZNervTDBkDdujpBQZHxEu3aduWYEj5jo8ZwOm6JSkWKQF5AKy5XK"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:03:21.908324"], ["name", "Sue Jeu"], ["email", "ellie_bashirian@block.info"], ["created_at", "2019-09-03 05:03:21.909168"], ["updated_at", "2019-09-03 05:03:21.909168"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-TOTUhibj52NI2tVNBAxxQ\":{\"token\":\"$2a$10$0pFoVob9FbsSagj239HlxeFtmFIGCWw/88P2gSO6kztQJrlEPbhKG\",\"expiry\":1568696601,\"updated_at\":\"2019-09-03 05:03:21 UTC\"}}"], ["updated_at", "2019-09-03 05:03:21.977626"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ellie_bashirian@block.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$CS48cD2EpQSfZhtuYuKLxupQXdigPqjvL6.bTUGZX76NMoN9B0TNK"], ["updated_at", "2019-09-03 05:03:22.030282"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:03:22.031659"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.2ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "demetrius_mertz@gusikowskiturner.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "demetrius_mertz@gusikowskiturner.info"], ["encrypted_password", "$2a$04$/vGI2r2KkN9Zch8UfCVtm.vkrrX/I5IEZLcZrhjg.Dtps5V7dTnH."], ["confirmed_at", "2019-09-03 05:03:22.037941"], ["name", "Lou Stooth"], ["email", "demetrius_mertz@gusikowskiturner.info"], ["created_at", "2019-09-03 05:03:22.038727"], ["updated_at", "2019-09-03 05:03:22.038727"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"viEAqiRykOrtjkwQZTS8jw\":{\"token\":\"$2a$10$lUBOwRxt5hghsPS6Kuaw/.eXXWIhu9UP0UH2i5UgKRC8TxLTj8hUy\",\"expiry\":1568696602,\"updated_at\":\"2019-09-03 05:03:22 UTC\"}}"], ["updated_at", "2019-09-03 05:03:22.089428"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "demetrius_mertz@gusikowskiturner.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$PBtcznhoMhk0ryi6eizgZeICbn4JrKfgQqntWzXTG4U0ViaF5pr/m"], ["updated_at", "2019-09-03 05:03:22.141422"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tajuana_rippin@goldner.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tajuana_rippin@goldner.com"], ["encrypted_password", "$2a$04$iWyjNeWIUzyaehR9E78OleFKSVED9nkBCLGujMF6AON5fDGN/O.9u"], ["confirmed_at", "2019-09-03 05:03:22.148205"], ["name", "Terry Bull"], ["email", "tajuana_rippin@goldner.com"], ["created_at", "2019-09-03 05:03:22.149084"], ["updated_at", "2019-09-03 05:03:22.149084"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (1.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ricardo_altenwerth@grahamsanford.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ricardo_altenwerth@grahamsanford.co"], ["encrypted_password", "$2a$04$fdXVR.Tl3zRGPJyQglEdAOzOvat3nWu3gGJm/EJkkm.tcYrvGqJUu"], ["confirmed_at", "2019-09-03 05:03:25.622690"], ["name", "Ali Katt"], ["email", "ricardo_altenwerth@grahamsanford.co"], ["created_at", "2019-09-03 05:03:25.624412"], ["updated_at", "2019-09-03 05:03:25.624412"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0140b2843454ef42dd6bbdb2e9d78b510cb3bb6b0be654708df50f916636ee52"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "0140b2843454ef42dd6bbdb2e9d78b510cb3bb6b0be654708df50f916636ee52"], ["reset_password_sent_at", "2019-09-03 05:03:25.724135"], ["updated_at", "2019-09-03 05:03:25.724308"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22yHACie8LEFcSUj9Yf8d8%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-03 00:03:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"yHACie8LEFcSUj9Yf8d8\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0140b2843454ef42dd6bbdb2e9d78b510cb3bb6b0be654708df50f916636ee52"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EL1FUk2waOEvlppzwgDHug\":{\"token\":\"$2a$10$mGoKUx/r7cXItxtq2nnJze6AhZymJFTulNDUH.LAjDckPSHUO1UCK\",\"expiry\":1568696605}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 05:03:25.798778"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=MB7lnDuQ49HpoZiA2Ph6QA&client=EL1FUk2waOEvlppzwgDHug&client_id=EL1FUk2waOEvlppzwgDHug&config=&expiry=1568696605&reset_password=true&token=MB7lnDuQ49HpoZiA2Ph6QA&uid=ricardo_altenwerth%40grahamsanford.co Completed 302 Found in 62ms (ActiveRecord: 0.3ms | Allocations: 11632) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "roselle@wisozkbashirian.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "roselle@wisozkbashirian.com"], ["encrypted_password", "$2a$04$Ebi4n3G9amnRrwm7EtsDTucDc.Hx4Lck7vFLxtn7g9u3O8auSFZ5O"], ["confirmed_at", "2019-09-03 05:03:25.805446"], ["name", "Rita Booke"], ["email", "roselle@wisozkbashirian.com"], ["created_at", "2019-09-03 05:03:25.806400"], ["updated_at", "2019-09-03 05:03:25.806400"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"roselle@wisozkbashirian.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "roselle@wisozkbashirian.com"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Ch66m3ZxbfVfVWsO32Vl-w\":{\"token\":\"$2a$10$3n4TSdZEbeldbPvJT85xKuldNfhRP.WHdTELoKsy0RHD2CkxVOwoS\",\"expiry\":1568696605,\"updated_at\":\"2019-09-03 05:03:25 UTC\"}}"], ["updated_at", "2019-09-03 05:03:25.872755"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-09-03 05:03:25.876399"], ["last_sign_in_at", "2019-09-03 05:03:25.876399"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-09-03 05:03:25.876631"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 67ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 3209) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "harvey@hilpertsenger.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "harvey@hilpertsenger.org"], ["encrypted_password", "$2a$04$dfwJdvEPQNn3ify1P3lwHelG2m6G5Gb7Aku4QnZSzgIOXM7iH6yd2"], ["confirmed_at", "2019-09-03 05:03:25.884464"], ["name", "Cara Van"], ["email", "harvey@hilpertsenger.org"], ["created_at", "2019-09-03 05:03:25.885547"], ["updated_at", "2019-09-03 05:03:25.885547"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"harvey@hilpertsenger.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "harvey@hilpertsenger.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1988) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ima.pacocha@lindgren.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ima.pacocha@lindgren.net"], ["encrypted_password", "$2a$04$1jEDmv5lOnFstsrTGYsVUu9ZwKhDbg4XNC2sRZgghe2x5KmDM7PAe"], ["confirmation_token", "NXg4JM96u5jqdMchff4i"], ["confirmation_sent_at", "2019-09-03 05:03:25.897184"], ["name", "Doris Schutt"], ["email", "ima.pacocha@lindgren.net"], ["created_at", "2019-09-03 05:03:25.897088"], ["updated_at", "2019-09-03 05:03:25.897088"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ima.pacocha@lindgren.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ima.pacocha@lindgren.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1342) TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mireille.haag@schultz.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mireille.haag@schultz.org"], ["encrypted_password", "$2a$04$Z6i2mcOInE/IrMrtXF66l.O6nxy58ggo.rStfvF3Jlg3ovJpKdmNm"], ["confirmed_at", "2019-09-03 05:03:25.905699"], ["locked_at", "2019-09-03 05:03:25.905716"], ["name", "Phil Rupp"], ["email", "mireille.haag@schultz.org"], ["created_at", "2019-09-03 05:03:25.907433"], ["updated_at", "2019-09-03 05:03:25.907433"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"mireille.haag@schultz.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mireille.haag@schultz.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1360) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "delpha_kreiger@schinner.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "delpha_kreiger@schinner.biz"], ["encrypted_password", "$2a$04$fwlXr2l80FoyR2IkUgFaSunEVFv1Jq709Z2nijG5yfIsDH5vCCYuC"], ["confirmed_at", "2019-09-03 05:03:25.916670"], ["name", "Oscar Ruitt"], ["email", "delpha_kreiger@schinner.biz"], ["created_at", "2019-09-03 05:03:25.917746"], ["updated_at", "2019-09-03 05:03:25.917746"], ["auth_available", 0]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"delpha_kreiger@schinner.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "delpha_kreiger@schinner.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1339) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "heriberto_grant@wiza.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "heriberto_grant@wiza.co"], ["encrypted_password", "$2a$04$yRe1HK7XnKbDLKDufzChaupaUhm7Efyby52E9nge8EaiSDImXPy.O"], ["confirmed_at", "2019-09-03 05:03:25.927991"], ["name", "Liv Long"], ["email", "heriberto_grant@wiza.co"], ["created_at", "2019-09-03 05:03:25.929026"], ["updated_at", "2019-09-03 05:03:25.929026"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jsG9reGgJDS1kEFGOopxIA\":{\"token\":\"$2a$10$Dwou6HihMT/zRojNs6wIXeFgB4emaeAzl7taZZB0lqOjWNs40ZZ86\",\"expiry\":1568696605,\"updated_at\":\"2019-09-03 05:03:25 UTC\"}}"], ["updated_at", "2019-09-03 05:03:25.991340"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "heriberto_grant@wiza.co"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-09-03 05:03:26.051370"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 1810) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 939) TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "huey_schinner@dickinson.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "huey_schinner@dickinson.net"], ["encrypted_password", "$2a$04$2wBR8UWiA8J7quDiJrc2CuHYt45YEyx7WXgLzT.1gEmCnAhp8O5WS"], ["confirmed_at", "2019-09-03 05:03:26.059900"], ["name", "Tish Hughes"], ["email", "huey_schinner@dickinson.net"], ["created_at", "2019-09-03 05:03:26.060771"], ["updated_at", "2019-09-03 05:03:26.060771"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "preston@hodkiewiczgoodwin.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "preston@hodkiewiczgoodwin.name"], ["encrypted_password", "$2a$04$0t6nLk7I2dBnKXcj/sW76.oSJUyxf3jQHCLCtpnAopF5M/0AgWYwq"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:03:26.065140"], ["name", "Hy Lowe"], ["email", "preston@hodkiewiczgoodwin.name"], ["created_at", "2019-09-03 05:03:26.065968"], ["updated_at", "2019-09-03 05:03:26.065968"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"M9SCAz3DoA7bl4Ofhc7GVA\":{\"token\":\"$2a$10$nWvADrJx1O0MK.8We8QVB.DPsHAieTUUscZbyTPAmQ0RyjCf7Pi9K\",\"expiry\":1568696606,\"updated_at\":\"2019-09-03 05:03:26 UTC\"}}"], ["updated_at", "2019-09-03 05:03:26.124766"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "preston@hodkiewiczgoodwin.name"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Khy/bAUS9/HXMVdsoReekemYnYSHlAui15.eTedLXOmQhclnPMg2C"], ["updated_at", "2019-09-03 05:03:26.182752"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:03:26.183851"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2742) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lesli.herman@jast.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lesli.herman@jast.name"], ["encrypted_password", "$2a$04$wg8Fy/BiCnuayHH5g/qSYu0Reahedblen0c6g1u69TlAVRsMOIZwO"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:03:26.188447"], ["name", "Reid Enright"], ["email", "lesli.herman@jast.name"], ["created_at", "2019-09-03 05:03:26.189074"], ["updated_at", "2019-09-03 05:03:26.189074"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OtDs7sIFIEEUiTG9Njg-9Q\":{\"token\":\"$2a$10$nLk7kJYbFGMJNqKtLt5Dv.Xv52QvGLC0EO5HL72L7QqzWKSO5HvFq\",\"expiry\":1568696606,\"updated_at\":\"2019-09-03 05:03:26 UTC\"}}"], ["updated_at", "2019-09-03 05:03:26.239437"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lesli.herman@jast.name"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$scpIivRgB8dWXaJIE.gFL.C6ca2bTXv9eMXX2pb8JdFIct4z1ErsO"], ["updated_at", "2019-09-03 05:03:26.299486"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:03:26.300841"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 2723) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tamela@watsica.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tamela@watsica.biz"], ["encrypted_password", "$2a$04$1olfC.0uRDzlhKTyk3FjAevb5VP.YyKXKL4S/A8CzmJbFvqdAyZY."], ["confirmed_at", "2019-09-03 05:03:26.307876"], ["name", "Art Major"], ["email", "tamela@watsica.biz"], ["created_at", "2019-09-03 05:03:26.308798"], ["updated_at", "2019-09-03 05:03:26.308798"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OVF9KpEE2VyRc5nwfpTKHQ\":{\"token\":\"$2a$10$0BiBmicO755TRqnq7pKkuuUx60ocjFkCkhTlI2spYKGDX23VAHxF2\",\"expiry\":1568696606,\"updated_at\":\"2019-09-03 05:03:26 UTC\"}}"], ["updated_at", "2019-09-03 05:03:26.369859"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tamela@watsica.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2416) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "monica@schiller.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "monica@schiller.co"], ["encrypted_password", "$2a$04$M90dSrPnnia7.mALsZEbZe.syRMFUiKXeFAYsevG5hA6n.daHGdwW"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:03:26.429766"], ["name", "Justin Credible"], ["email", "monica@schiller.co"], ["created_at", "2019-09-03 05:03:26.430459"], ["updated_at", "2019-09-03 05:03:26.430459"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YPq8mYH7i2jEr19hMt7iAg\":{\"token\":\"$2a$10$AiZYWbozAknQ1a.yUoug2.bswsvKYuc0.5ZizI9V3BxbaFRO4IFNy\",\"expiry\":1568696606,\"updated_at\":\"2019-09-03 05:03:26 UTC\"}}"], ["updated_at", "2019-09-03 05:03:26.482125"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "monica@schiller.co"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$bXjRFnMTg8zwMTkS4mqHR.aX3xxJ59mtGxJQHEKjQS.5N7ZZfbVIG"], ["updated_at", "2019-09-03 05:03:26.533531"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:03:26.534539"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2723) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeanette.bradtke@schumm.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jeanette.bradtke@schumm.info"], ["encrypted_password", "$2a$04$bhx4HMhIVzvmPQR/xxQQ8eN7bhQsvb6VCVe.2678EOl/bVde2DYRy"], ["allow_password_change", 1], ["confirmed_at", "2019-09-03 05:03:26.538977"], ["name", "Owen Money"], ["email", "jeanette.bradtke@schumm.info"], ["created_at", "2019-09-03 05:03:26.539548"], ["updated_at", "2019-09-03 05:03:26.539548"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gimpjPaOq0yqxfcJZSTrHg\":{\"token\":\"$2a$10$O.L09bds6gN1tA3Id.J1mew/TXeavGjEy2/JSoc6AzdT1YCLuCJ/C\",\"expiry\":1568696606,\"updated_at\":\"2019-09-03 05:03:26 UTC\"}}"], ["updated_at", "2019-09-03 05:03:26.591294"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jeanette.bradtke@schumm.info"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$2Z9sXsuN8KKA0txn2qdwKuKTK16lKqVK4Y2kUf89JEHXd0t.N098i"], ["updated_at", "2019-09-03 05:03:26.651575"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-09-03 05:03:26.652909"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2728) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fernande.bradtke@mcdermottoreilly.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "fernande.bradtke@mcdermottoreilly.net"], ["encrypted_password", "$2a$04$L68CzI.To7XgGtbBYFKK7.FSyaLWVhfy09Z5IpM/fm54kTBb017QS"], ["confirmed_at", "2019-09-03 05:03:26.659399"], ["name", "Dinah Might"], ["email", "fernande.bradtke@mcdermottoreilly.net"], ["created_at", "2019-09-03 05:03:26.660149"], ["updated_at", "2019-09-03 05:03:26.660149"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"1SJfSLnmWVnER_ncDbaRtg\":{\"token\":\"$2a$10$/t.k/7tV8YLPw0RKpZf.0e7Tz/ktj6oP5tE0/ZMsoFvd7i9I8qsjy\",\"expiry\":1568696606,\"updated_at\":\"2019-09-03 05:03:26 UTC\"}}"], ["updated_at", "2019-09-03 05:03:26.715170"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "fernande.bradtke@mcdermottoreilly.net"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$RVk1lfbtKd0dN5zja2jGKO5UtJTz2p8fjxUGSildinbF3dz4uarsG"], ["updated_at", "2019-09-03 05:03:26.774703"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2527) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alia@torphy.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alia@torphy.co"], ["encrypted_password", "$2a$04$YAyV9oe4SyOaOGPZJyl1eOZkabBs4kSTQkLfvmGxf07Ki4RwHnWYa"], ["confirmed_at", "2019-09-03 05:03:26.781933"], ["name", "I. Ball"], ["email", "alia@torphy.co"], ["created_at", "2019-09-03 05:03:26.782780"], ["updated_at", "2019-09-03 05:03:26.782780"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-03 00:03:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1145) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kathe.reinger@sipechulist.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kathe.reinger@sipechulist.org"], ["encrypted_password", "$2a$04$mz69wgv3pAn9iSjgSH0X7u1UdvkdWuqTPbuj7yyle8ixBhiTAOIgC"], ["confirmed_at", "2019-09-03 05:03:39.521670"], ["name", "Lon Moore"], ["email", "kathe.reinger@sipechulist.org"], ["created_at", "2019-09-03 05:03:39.523619"], ["updated_at", "2019-09-03 05:03:39.523619"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "61320dbd73c5a19b49e301b689654d27f11cd4e35f4d344bd9200d68f776c005"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "61320dbd73c5a19b49e301b689654d27f11cd4e35f4d344bd9200d68f776c005"], ["reset_password_sent_at", "2019-09-03 05:03:39.602908"], ["updated_at", "2019-09-03 05:03:39.603148"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22U_h52n6Roxy7Mw6rUVya%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-03 00:03:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"U_h52n6Roxy7Mw6rUVya\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "61320dbd73c5a19b49e301b689654d27f11cd4e35f4d344bd9200d68f776c005"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"6L5KXN7uxkNn4q_DL7dzaA\":{\"token\":\"$2a$10$UbJF75U.KmF.FNyx7ON77el7udce.8tNAWIpVmSz1FhkvvgT6J0U6\",\"expiry\":1568696619}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 05:03:39.668924"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=JqJ0-YUDx8An5oDMzwptsQ&client=6L5KXN7uxkNn4q_DL7dzaA&client_id=6L5KXN7uxkNn4q_DL7dzaA&config=&expiry=1568696619&reset_password=true&token=JqJ0-YUDx8An5oDMzwptsQ&uid=kathe.reinger%40sipechulist.org Completed 302 Found in 56ms (ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kiesha@mccullough.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kiesha@mccullough.net"], ["encrypted_password", "$2a$04$SU4UPlS8EIxlQhWne03bhuqTOOkhWMtScJZDjoGiV97FBniMampAy"], ["confirmed_at", "2019-09-03 05:06:27.819927"], ["name", "Doug Graves"], ["email", "kiesha@mccullough.net"], ["created_at", "2019-09-03 05:06:27.821818"], ["updated_at", "2019-09-03 05:06:27.821818"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f09297739608c2face4062129781aa1ba42f53f1dfcdb45a6d47a144879ce8f6"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f09297739608c2face4062129781aa1ba42f53f1dfcdb45a6d47a144879ce8f6"], ["reset_password_sent_at", "2019-09-03 05:06:27.905705"], ["updated_at", "2019-09-03 05:06:27.905957"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22zeZkSY48ccNbBHwZ2zWJ%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-03 00:06:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"zeZkSY48ccNbBHwZ2zWJ\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f09297739608c2face4062129781aa1ba42f53f1dfcdb45a6d47a144879ce8f6"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"W97aHFr6ubfiIkR763rjnw\":{\"token\":\"$2a$10$jvh3VqbLXZX7vGcZXtxEFe3oky0X02VL3XBf1s6Ucp6oyLMZ2Vu7K\",\"expiry\":1568696787}}"], ["allow_password_change", 1], ["updated_at", "2019-09-03 05:06:27.972799"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=-v19WLwGb28R1NOzMsezKQ&client=W97aHFr6ubfiIkR763rjnw&client_id=W97aHFr6ubfiIkR763rjnw&config=&expiry=1568696787&reset_password=true&token=-v19WLwGb28R1NOzMsezKQ&uid=kiesha%40mccullough.net Completed 302 Found in 55ms (ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ila.sanford@jerde.co"], ["provider", "email"], ["LIMIT", 1]] User Create (2.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ila.sanford@jerde.co"], ["encrypted_password", "$2a$04$Ja9Dl44d8ls9l0iQpj.YmuzF55KR85PGA6dgS/gvU4abLj2NIAreq"], ["confirmed_at", "2019-09-09 00:20:08.718162"], ["name", "Beau Vine"], ["email", "ila.sanford@jerde.co"], ["created_at", "2019-09-09 00:20:08.720823"], ["updated_at", "2019-09-09 00:20:08.720823"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3d91245c933c0344c8124a62a5bb1d5e31b8b69ca007690f1a6d11d5b0505954"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "3d91245c933c0344c8124a62a5bb1d5e31b8b69ca007690f1a6d11d5b0505954"], ["reset_password_sent_at", "2019-09-09 00:20:08.800153"], ["updated_at", "2019-09-09 00:20:08.800601"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22-zp1qSZ99nZixyoTfZpW%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 19:20:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"-zp1qSZ99nZixyoTfZpW\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3d91245c933c0344c8124a62a5bb1d5e31b8b69ca007690f1a6d11d5b0505954"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DRp66-UrWH_ru-CUCAwo9g\":{\"token\":\"$2a$10$0r9cSBGTs/n7iNM4Kv/Amut8WcymB/ckhPhyEv1WKI6MhuVq2u15O\",\"expiry\":1569198008}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 00:20:08.881808"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=PaOXrgF-ohVJgIs6straDQ&client=DRp66-UrWH_ru-CUCAwo9g&client_id=DRp66-UrWH_ru-CUCAwo9g&config=&expiry=1569198008&reset_password=true&token=PaOXrgF-ohVJgIs6straDQ&uid=ila.sanford%40jerde.co Completed 302 Found in 58ms (ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kristie@luettgenklocko.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kristie@luettgenklocko.co"], ["encrypted_password", "$2a$04$cNd6aRZXgVn7f7u6YYY7ieaTyrqOjmBDpaQZYcfQ/9jDjMB0yx2WS"], ["confirmed_at", "2019-09-09 00:20:42.116063"], ["name", "Charity Case"], ["email", "kristie@luettgenklocko.co"], ["created_at", "2019-09-09 00:20:42.117917"], ["updated_at", "2019-09-09 00:20:42.117917"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "8c6d8aa7dc26eb02208e11ea49c5bfed3c572ade880a7e1f1188786d4bf2ee23"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "8c6d8aa7dc26eb02208e11ea49c5bfed3c572ade880a7e1f1188786d4bf2ee23"], ["reset_password_sent_at", "2019-09-09 00:20:42.205403"], ["updated_at", "2019-09-09 00:20:42.205635"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%228CV9L6brK4X5PzCdiezw%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 19:20:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"8CV9L6brK4X5PzCdiezw\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "8c6d8aa7dc26eb02208e11ea49c5bfed3c572ade880a7e1f1188786d4bf2ee23"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"XAPvfTh4eznEIjXhLW80Sw\":{\"token\":\"$2a$10$4N2ixA1/uCnPQ34gQJQl/OfpHqNYTxTODEt18F5UxBA694NT7B6s.\",\"expiry\":1569198042}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 00:20:42.265173"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=PMo3zdaY38_U6U8PyPtXyQ&client=XAPvfTh4eznEIjXhLW80Sw&client_id=XAPvfTh4eznEIjXhLW80Sw&config=&expiry=1569198042&reset_password=true&token=PMo3zdaY38_U6U8PyPtXyQ&uid=kristie%40luettgenklocko.co Completed 302 Found in 50ms (ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "teisha.waters@anderson.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "teisha.waters@anderson.io"], ["encrypted_password", "$2a$04$8lP3c3vL0SAETsC.jefPR.5PNhtmSBI6Na2Z9gVPNSnl/N3Nklspa"], ["confirmed_at", "2019-09-09 00:23:46.066018"], ["name", "Ben Down"], ["email", "teisha.waters@anderson.io"], ["created_at", "2019-09-09 00:23:46.067852"], ["updated_at", "2019-09-09 00:23:46.067852"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "911372542f24ebfd5497cf5766fddbebf23e5b0db749b035d1b819a692809e90"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "911372542f24ebfd5497cf5766fddbebf23e5b0db749b035d1b819a692809e90"], ["reset_password_sent_at", "2019-09-09 00:23:46.149186"], ["updated_at", "2019-09-09 00:23:46.149513"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22sSU9ySsby8z1FvKwgRdB%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 19:23:46 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"sSU9ySsby8z1FvKwgRdB\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "911372542f24ebfd5497cf5766fddbebf23e5b0db749b035d1b819a692809e90"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"68sZyuXDSKJ5ZQCesoBsqQ\":{\"token\":\"$2a$10$EWxkecvPZw8RYZzyltxq2eIOKrAt2MIpQ6Sl00DR.KrwPsgP47fPq\",\"expiry\":1569198226}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 00:23:46.209938"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=61uS1fXhWkvgE6JfOnNl6w&client=68sZyuXDSKJ5ZQCesoBsqQ&client_id=68sZyuXDSKJ5ZQCesoBsqQ&config=&expiry=1569198226&reset_password=true&token=61uS1fXhWkvgE6JfOnNl6w&uid=teisha.waters%40anderson.io Completed 302 Found in 50ms (ActiveRecord: 0.2ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nickolas.krajcik@cainlueilwitz.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nickolas.krajcik@cainlueilwitz.net"], ["encrypted_password", "$2a$04$d89I6EjR/QfiCws35QKNFeapYAMV.X.0XxW/3RVrzhlaOi8yuJugq"], ["confirmed_at", "2019-09-09 00:23:54.175925"], ["name", "Anita Bathe"], ["email", "nickolas.krajcik@cainlueilwitz.net"], ["created_at", "2019-09-09 00:23:54.177775"], ["updated_at", "2019-09-09 00:23:54.177775"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "28241c353574296df197e9dd654013a3b2ac8cc5c5d2597f48fd478dbaf10995"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "28241c353574296df197e9dd654013a3b2ac8cc5c5d2597f48fd478dbaf10995"], ["reset_password_sent_at", "2019-09-09 00:23:54.256602"], ["updated_at", "2019-09-09 00:23:54.256828"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%228DUSjC4PT_shRX9LegkQ%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 19:23:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"8DUSjC4PT_shRX9LegkQ\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "28241c353574296df197e9dd654013a3b2ac8cc5c5d2597f48fd478dbaf10995"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Lc1S0ijH--95aqBkipJHyA\":{\"token\":\"$2a$10$bmsY23po1wrWLHREiEJaH.zTZ.UzdiFvd16bFbCR7Swjcigd9kPI2\",\"expiry\":1569198234}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 00:23:54.322222"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=F6L4KC_Nka-CsOpq0MvN8A&client=Lc1S0ijH--95aqBkipJHyA&client_id=Lc1S0ijH--95aqBkipJHyA&config=&expiry=1569198234&reset_password=true&token=F6L4KC_Nka-CsOpq0MvN8A&uid=nickolas.krajcik%40cainlueilwitz.net Completed 302 Found in 55ms (ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brandie_langworth@denesik.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "brandie_langworth@denesik.biz"], ["encrypted_password", "$2a$04$oEhJvv9yt.vyvxrJ5oLld.B7plgTzPxHq9Cttxtxgt2RTsaYdaH.W"], ["confirmed_at", "2019-09-09 00:24:40.834060"], ["name", "Colin Allcars"], ["email", "brandie_langworth@denesik.biz"], ["created_at", "2019-09-09 00:24:40.835912"], ["updated_at", "2019-09-09 00:24:40.835912"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "69a9fc9d616fda6621f06cce6f261bef7faaba9572989371573b6368e1fe236c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "69a9fc9d616fda6621f06cce6f261bef7faaba9572989371573b6368e1fe236c"], ["reset_password_sent_at", "2019-09-09 00:24:40.914633"], ["updated_at", "2019-09-09 00:24:40.914862"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22wGPMCGX8Aypfq7_QyzYW%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 19:24:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"wGPMCGX8Aypfq7_QyzYW\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "69a9fc9d616fda6621f06cce6f261bef7faaba9572989371573b6368e1fe236c"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kGGtE_7qWkA7XFzO1ylxrQ\":{\"token\":\"$2a$10$TlrdkKVze4tV4JAC09BdmeQLwP1Q8YcVRqG4XpgAx4Y/vcSsghf6O\",\"expiry\":1569198280}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 00:24:40.979177"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=IMe6GZOK0NnqkWDgNAPDbA&client=kGGtE_7qWkA7XFzO1ylxrQ&client_id=kGGtE_7qWkA7XFzO1ylxrQ&config=&expiry=1569198280&reset_password=true&token=IMe6GZOK0NnqkWDgNAPDbA&uid=brandie_langworth%40denesik.biz Completed 302 Found in 53ms (ActiveRecord: 0.2ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "burton@mulleranderson.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "burton@mulleranderson.name"], ["encrypted_password", "$2a$04$U48sZ2tTEyV5f0ZKAybiUuTA1f7k8/Yb0Aj7FKUFXH3tEq1O9AiP2"], ["confirmed_at", "2019-09-09 00:25:53.484709"], ["name", "Moe Skeeto"], ["email", "burton@mulleranderson.name"], ["created_at", "2019-09-09 00:25:53.486567"], ["updated_at", "2019-09-09 00:25:53.486567"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b6e8b388c5cbd8d9267de65d0907fcaab317db11cca3c698cb3e5e2fc45ec882"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b6e8b388c5cbd8d9267de65d0907fcaab317db11cca3c698cb3e5e2fc45ec882"], ["reset_password_sent_at", "2019-09-09 00:25:53.572087"], ["updated_at", "2019-09-09 00:25:53.572317"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22ZzPZVdENacpszbjC98yk%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 19:25:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"ZzPZVdENacpszbjC98yk\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b6e8b388c5cbd8d9267de65d0907fcaab317db11cca3c698cb3e5e2fc45ec882"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"s6aUbaaQPNNdxQMVjyG0wg\":{\"token\":\"$2a$10$09e8h1YCl.8pA1C2DM2Re.cTw64fa64Fs38FxzYzkR.O92gV10eGu\",\"expiry\":1569198353}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 00:25:53.633499"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=lQMR7o9pd2W0sJ4qBwviqw&client=s6aUbaaQPNNdxQMVjyG0wg&client_id=s6aUbaaQPNNdxQMVjyG0wg&config=&expiry=1569198353&reset_password=true&token=lQMR7o9pd2W0sJ4qBwviqw&uid=burton%40mulleranderson.name Completed 302 Found in 51ms (ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "liberty@gusikowski.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "liberty@gusikowski.name"], ["encrypted_password", "$2a$04$TR2zM9RI7ormMfb/Qmhuf.qFvFRGvrOXY5hxPfvQbAeUIpb1nijv6"], ["confirmed_at", "2019-09-09 00:26:05.278154"], ["name", "Ewan Whatarmy"], ["email", "liberty@gusikowski.name"], ["created_at", "2019-09-09 00:26:05.280030"], ["updated_at", "2019-09-09 00:26:05.280030"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7a927af4ede85931218dd29743411b294cfdd254bb4cf08d909fc70df0e6ad84"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7a927af4ede85931218dd29743411b294cfdd254bb4cf08d909fc70df0e6ad84"], ["reset_password_sent_at", "2019-09-09 00:26:05.366485"], ["updated_at", "2019-09-09 00:26:05.366715"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22Tzvf3cmUh_1ufxszsnPL%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 19:26:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"Tzvf3cmUh_1ufxszsnPL\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7a927af4ede85931218dd29743411b294cfdd254bb4cf08d909fc70df0e6ad84"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"wC_P7OhfMANvX_2Ki0LX-Q\":{\"token\":\"$2a$10$xyxYq7k2a8olGGVSXdOA9e9bF6CD3puELm9a.rKMFSjitXxPRsOV2\",\"expiry\":1569198365}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 00:26:05.430730"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=u0nb8SbcWxG-m1roAmSidQ&client=wC_P7OhfMANvX_2Ki0LX-Q&client_id=wC_P7OhfMANvX_2Ki0LX-Q&config=&expiry=1569198365&reset_password=true&token=u0nb8SbcWxG-m1roAmSidQ&uid=liberty%40gusikowski.name Completed 302 Found in 53ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "giovanni@funkmiller.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "giovanni@funkmiller.biz"], ["encrypted_password", "$2a$04$zNQZHZt2aN0v15byk7aJvOGbaDek7e/CB/xkC1HEWf6hiMEbIXDVC"], ["confirmed_at", "2019-09-09 00:28:21.689057"], ["name", "Leo Tarred"], ["email", "giovanni@funkmiller.biz"], ["created_at", "2019-09-09 00:28:21.690949"], ["updated_at", "2019-09-09 00:28:21.690949"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "doug.king@tremblay.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "doug.king@tremblay.info"], ["encrypted_password", "$2a$04$McKcufWFMrTrZ6gfGTmDp.5V7XxPHaDB0HRLj7qW7n4/34BHmr8lu"], ["confirmed_at", "2019-09-09 00:28:37.648906"], ["name", "Paige Turner"], ["email", "doug.king@tremblay.info"], ["created_at", "2019-09-09 00:28:37.650902"], ["updated_at", "2019-09-09 00:28:37.650902"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "509913bc877dc533924da8bd0d4f2a17ab088cbbe2a62d40627474d58d1c321d"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "509913bc877dc533924da8bd0d4f2a17ab088cbbe2a62d40627474d58d1c321d"], ["reset_password_sent_at", "2019-09-09 00:28:37.736205"], ["updated_at", "2019-09-09 00:28:37.736447"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22DC2CrM2oJzmQVerzKkA5%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 19:28:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"DC2CrM2oJzmQVerzKkA5\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "509913bc877dc533924da8bd0d4f2a17ab088cbbe2a62d40627474d58d1c321d"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"eUOe_F3jsnIyPFZCYeGpRQ\":{\"token\":\"$2a$10$1JNuRaHTkZUFrATcecdO4.eftwNG3G5A42pRZLjeC8B68n.WE0iXy\",\"expiry\":1569198517}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 00:28:37.797112"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=PpaGaaFkBzwooatL69_l9g&client=eUOe_F3jsnIyPFZCYeGpRQ&client_id=eUOe_F3jsnIyPFZCYeGpRQ&config=&expiry=1569198517&reset_password=true&token=PpaGaaFkBzwooatL69_l9g&uid=doug.king%40tremblay.info Completed 302 Found in 51ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marjory_gutkowski@hane.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marjory_gutkowski@hane.name"], ["encrypted_password", "$2a$04$pGQbAERYtGfzojXmAro9.OhtNe4gpCSuE9LZ5jVc8XdXF5/lNAjO."], ["confirmed_at", "2019-09-09 00:39:03.208788"], ["name", "Penny Whistler"], ["email", "marjory_gutkowski@hane.name"], ["created_at", "2019-09-09 00:39:03.210725"], ["updated_at", "2019-09-09 00:39:03.210725"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "99bde8e6890f2c4d67c36516f2f6c235f352f23bb56913a3b302bf31ec41885b"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "99bde8e6890f2c4d67c36516f2f6c235f352f23bb56913a3b302bf31ec41885b"], ["reset_password_sent_at", "2019-09-09 00:39:03.294854"], ["updated_at", "2019-09-09 00:39:03.295091"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22cGWhxmLuWzADfnadS6TQ%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 19:39:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"cGWhxmLuWzADfnadS6TQ\",\n redirectUrl: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "99bde8e6890f2c4d67c36516f2f6c235f352f23bb56913a3b302bf31ec41885b"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"8Ixx9DceqfoIAFDhc7559A\":{\"token\":\"$2a$10$B05eyGdxL0W6TLw8d50vKOS3htoxSImCFagTVHDj0iJoWWZZBZNBK\",\"expiry\":1569199143}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 00:39:03.357398"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"8Ixx9DceqfoIAFDhc7559A\":{\"token\":\"$2a$10$B05eyGdxL0W6TLw8d50vKOS3htoxSImCFagTVHDj0iJoWWZZBZNBK\",\"expiry\":1569199143},\"NO8314dsYUPnsnLb7P39dg\":{\"token\":\"$2a$10$.47Ycjm3WX9o27dvqQAtm.yzMEZYwEuBxsjyXXUjcXnAezlzAJtOu\",\"expiry\":1569199143,\"updated_at\":\"2019-09-09 00:39:03 UTC\"}}"], ["updated_at", "2019-09-09 00:39:03.400746"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 95ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "buster_kub@howe.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "buster_kub@howe.net"], ["encrypted_password", "$2a$04$z3QHT.KjCVQx2u0DNInJyeJAzE4Ov9.pdozsBtH8gZ/OVPF7pJSPG"], ["confirmed_at", "2019-09-09 00:41:25.461711"], ["name", "Rita Story"], ["email", "buster_kub@howe.net"], ["created_at", "2019-09-09 00:41:25.463536"], ["updated_at", "2019-09-09 00:41:25.463536"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "668e71f81a99c1284865df24d668ed139f7a06fe3e839681682fea1612b2e45e"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "668e71f81a99c1284865df24d668ed139f7a06fe3e839681682fea1612b2e45e"], ["reset_password_sent_at", "2019-09-09 00:41:25.549509"], ["updated_at", "2019-09-09 00:41:25.549773"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22TebDQRXQ7qa9zEucofV2invalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 19:41:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"TebDQRXQ7qa9zEucofV2invalid\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d625eba068ebe340fa649e92ede12d1cf20d14a189a8df6aa673d216e7ac7da1"], ["LIMIT", 1]] Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lane_hyatt@dietrich.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lane_hyatt@dietrich.biz"], ["encrypted_password", "$2a$04$F2Qwcer8y5FfC0tYR5BEFOVGyAp/X7flTmzCQHYOH4TQHkUnE0/Ma"], ["confirmed_at", "2019-09-09 00:41:34.382082"], ["name", "Harry Beard"], ["email", "lane_hyatt@dietrich.biz"], ["created_at", "2019-09-09 00:41:34.384028"], ["updated_at", "2019-09-09 00:41:34.384028"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b1a5c165338524af246fec34fc12e8792c7b2d7bced12c9ad0ff8681fc0fa255"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b1a5c165338524af246fec34fc12e8792c7b2d7bced12c9ad0ff8681fc0fa255"], ["reset_password_sent_at", "2019-09-09 00:41:34.467560"], ["updated_at", "2019-09-09 00:41:34.467798"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22GkzG5BzxeHT4aGbzTkcR%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 19:41:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"GkzG5BzxeHT4aGbzTkcR\",\n redirectUrl: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b1a5c165338524af246fec34fc12e8792c7b2d7bced12c9ad0ff8681fc0fa255"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TmX3bFPNq9fZ-1ixnn1e2g\":{\"token\":\"$2a$10$ueKl36n50ocBmDI46gm9QuwArRPukng2sJ2m5C3dUyIw0WOizHGoq\",\"expiry\":1569199294}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 00:41:34.529080"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TmX3bFPNq9fZ-1ixnn1e2g\":{\"token\":\"$2a$10$ueKl36n50ocBmDI46gm9QuwArRPukng2sJ2m5C3dUyIw0WOizHGoq\",\"expiry\":1569199294},\"tjVZBhxoFyMCJYgiqnSKmQ\":{\"token\":\"$2a$10$fpGxK2dP4yD.rTc25/nNKO84AtDjGSud73hMzsWOtsiCUjqKUb7i.\",\"expiry\":1569199294,\"updated_at\":\"2019-09-09 00:41:34 UTC\"}}"], ["updated_at", "2019-09-09 00:41:34.573008"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 95ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lou@sauer.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lou@sauer.co"], ["encrypted_password", "$2a$04$SxcUaypdpojvBZNN9j5hHOXXKnb.VabFImlkbpU.ALlyPEqADp9DW"], ["confirmed_at", "2019-09-09 00:41:34.579079"], ["name", "Will Power"], ["email", "lou@sauer.co"], ["created_at", "2019-09-09 00:41:34.579724"], ["updated_at", "2019-09-09 00:41:34.579724"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "01d189d2d8203e6e943333528c8b601124c3c83a12b8a079bbf84f6f12f9515b"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "01d189d2d8203e6e943333528c8b601124c3c83a12b8a079bbf84f6f12f9515b"], ["reset_password_sent_at", "2019-09-09 00:41:34.581501"], ["updated_at", "2019-09-09 00:41:34.581656"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22WPu4A2G3_3yrCvHno55B%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 19:41:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"WPu4A2G3_3yrCvHno55B\",\n redirectUrl: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "01d189d2d8203e6e943333528c8b601124c3c83a12b8a079bbf84f6f12f9515b"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"16usGW4IFN0wmiyIL7ZWAA\":{\"token\":\"$2a$10$8yKXn7AM5xtB/tmk009TB.sMIbJdZrk433eBSM.L52zjpUW/rmJgi\",\"expiry\":1569199294}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 00:41:34.628432"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"16usGW4IFN0wmiyIL7ZWAA\":{\"token\":\"$2a$10$8yKXn7AM5xtB/tmk009TB.sMIbJdZrk433eBSM.L52zjpUW/rmJgi\",\"expiry\":1569199294},\"Joi4VqEbbjWb9fxLcSu-4Q\":{\"token\":\"$2a$10$7uUoLXS05BaTbwJwBcpAZuGJhoZqoK78.3ZgpHlxUyiQ7ytzQb51K\",\"expiry\":1569199294,\"updated_at\":\"2019-09-09 00:41:34 UTC\"}}"], ["updated_at", "2019-09-09 00:41:34.676356"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 94ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "melony@rippin.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "melony@rippin.io"], ["encrypted_password", "$2a$04$ggWlAQsCJeqxmFyeXlo5O.Bkg3RfTbxsNxq7SrSJr8IYRBn5Vg/Rq"], ["confirmed_at", "2019-09-09 00:41:34.715052"], ["name", "Harry Beard"], ["email", "melony@rippin.io"], ["created_at", "2019-09-09 00:41:34.715887"], ["updated_at", "2019-09-09 00:41:34.715887"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "85a838e4ee608beadbf5751233902bfd083973b85633b66140c83f009c61a100"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "85a838e4ee608beadbf5751233902bfd083973b85633b66140c83f009c61a100"], ["reset_password_sent_at", "2019-09-09 00:41:34.717174"], ["updated_at", "2019-09-09 00:41:34.717368"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22Av3yCuikrQ8tvj2ivioHinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 19:41:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"Av3yCuikrQ8tvj2ivioHinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "94590b18bd89339c1648a5d7afdbf6874951ef59ef4baa80a42d88a6d2a04a63"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "haie@champlin.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "haie@champlin.info"], ["encrypted_password", "$2a$04$QG312WkJGZsmKm1WbTPqfeqZTHiWoaKFQUeLDtIDMWOfgoZ2ajbpm"], ["confirmed_at", "2019-09-09 01:03:29.538319"], ["name", "Lily Pond"], ["email", "haie@champlin.info"], ["created_at", "2019-09-09 01:03:29.540167"], ["updated_at", "2019-09-09 01:03:29.540167"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "92152d562aeae27473e5bd7af36baf1bed172850ae671a1a597742aeec6578fd"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "92152d562aeae27473e5bd7af36baf1bed172850ae671a1a597742aeec6578fd"], ["reset_password_sent_at", "2019-09-09 01:03:29.618912"], ["updated_at", "2019-09-09 01:03:29.619106"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22z_aEfnw8hPpxZVzMN7na%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:03:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"z_aEfnw8hPpxZVzMN7na\",\n redirectUrl: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "92152d562aeae27473e5bd7af36baf1bed172850ae671a1a597742aeec6578fd"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9AEYISlgWF_-STpi24gM2A\":{\"token\":\"$2a$10$JabuJQcq08dH6Ji2ji3Ute.IbLMbFLWA5rYXG5XkhKOXS6IQ8gcnK\",\"expiry\":1569200609}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 01:03:29.677835"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9AEYISlgWF_-STpi24gM2A\":{\"token\":\"$2a$10$JabuJQcq08dH6Ji2ji3Ute.IbLMbFLWA5rYXG5XkhKOXS6IQ8gcnK\",\"expiry\":1569200609},\"g3bWcXUcHmZRH9Wwh-1CUw\":{\"token\":\"$2a$10$1g25fM5181B/0JJ2uBA.LunD5dkt5mV92KIsHNRVtMd2tcuOZ93sS\",\"expiry\":1569200609,\"updated_at\":\"2019-09-09 01:03:29 UTC\"}}"], ["updated_at", "2019-09-09 01:03:29.720363"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 92ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marisol.price@adams.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marisol.price@adams.org"], ["encrypted_password", "$2a$04$wLx.FcM/XWZI1bKdo8GU2.uaRo5LoOwJ58.S5vl1lUAiQ5Ag4apCm"], ["confirmed_at", "2019-09-09 01:03:29.727149"], ["name", "Oscar Ruitt"], ["email", "marisol.price@adams.org"], ["created_at", "2019-09-09 01:03:29.738256"], ["updated_at", "2019-09-09 01:03:29.738256"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ade4317945cccebea9d7a4c4a42bf502432acbf216cdc29fe2a5adb937a623a5"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "ade4317945cccebea9d7a4c4a42bf502432acbf216cdc29fe2a5adb937a623a5"], ["reset_password_sent_at", "2019-09-09 01:03:29.740769"], ["updated_at", "2019-09-09 01:03:29.740957"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22BfBo1jez4WMHhqtRzuJf%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:03:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"BfBo1jez4WMHhqtRzuJf\",\n redirectUrl: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ade4317945cccebea9d7a4c4a42bf502432acbf216cdc29fe2a5adb937a623a5"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CMCtPcZxC0FyNDkJX6hcaw\":{\"token\":\"$2a$10$aXSJziIzzR8PNUyeIktgru/RxmFmIVjYlZFOTSaXfLDsb93AwsDya\",\"expiry\":1569200609}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 01:03:29.794281"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CMCtPcZxC0FyNDkJX6hcaw\":{\"token\":\"$2a$10$aXSJziIzzR8PNUyeIktgru/RxmFmIVjYlZFOTSaXfLDsb93AwsDya\",\"expiry\":1569200609},\"Wf6xuOtezL0pxBKW9BOxaw\":{\"token\":\"$2a$10$qzN3qaF4gbs.ToVBSnz3ueTPZRJLMrNM4OX.Y7OYyPmG8paxz1E06\",\"expiry\":1569200609,\"updated_at\":\"2019-09-09 01:03:29 UTC\"}}"], ["updated_at", "2019-09-09 01:03:29.842828"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 101ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "virgilio@predovic.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "virgilio@predovic.info"], ["encrypted_password", "$2a$04$UW/gN4yIeHhsqGLx9VHqMeUy0IAPPhzcWBgE0P.Lbi3aK7q7kt1xy"], ["confirmed_at", "2019-09-09 01:03:29.865772"], ["name", "Max Little"], ["email", "virgilio@predovic.info"], ["created_at", "2019-09-09 01:03:29.866555"], ["updated_at", "2019-09-09 01:03:29.866555"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ff5e13da5e2785c2301444a6235dca81f1fd0eec3cb29e2e03670b775b3ef6be"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "ff5e13da5e2785c2301444a6235dca81f1fd0eec3cb29e2e03670b775b3ef6be"], ["reset_password_sent_at", "2019-09-09 01:03:29.867737"], ["updated_at", "2019-09-09 01:03:29.867913"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22-2A96wigZaTb-SZMJxsTinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:03:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"-2A96wigZaTb-SZMJxsTinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2a1ab5a22af005a8b8dbe29ce26cbe00c4f88148041472f838518e67806f4fff"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marin@gorczanylabadie.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marin@gorczanylabadie.info"], ["encrypted_password", "$2a$04$HX8DKPAAdMPXyQIOnaSwVOgE8lrrN1X5vU9hhlieFgz2wAKcQoVCu"], ["confirmed_at", "2019-09-09 01:04:31.037081"], ["name", "Missy Sippy"], ["email", "marin@gorczanylabadie.info"], ["created_at", "2019-09-09 01:04:31.038981"], ["updated_at", "2019-09-09 01:04:31.038981"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5c5781a87f0e8b8865e9b9699e0d835010e6dc47ae9e38d53b56a078c522772f"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "5c5781a87f0e8b8865e9b9699e0d835010e6dc47ae9e38d53b56a078c522772f"], ["reset_password_sent_at", "2019-09-09 01:04:31.122116"], ["updated_at", "2019-09-09 01:04:31.122344"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22a8yvLZQUr1CUNvAXYUvn%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:04:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"a8yvLZQUr1CUNvAXYUvn\",\n redirectUrl: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5c5781a87f0e8b8865e9b9699e0d835010e6dc47ae9e38d53b56a078c522772f"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LlJ_dtuOmrhdqbx9VNvIbA\":{\"token\":\"$2a$10$RvYhROEUm0gf4m2BuJu1r.xjc7/jTk3xp/lFAQLgc8ufSGof1xo/i\",\"expiry\":1569200671}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 01:04:31.197284"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LlJ_dtuOmrhdqbx9VNvIbA\":{\"token\":\"$2a$10$RvYhROEUm0gf4m2BuJu1r.xjc7/jTk3xp/lFAQLgc8ufSGof1xo/i\",\"expiry\":1569200671},\"9Lmkc_Hz6gND9AYwTej6ZQ\":{\"token\":\"$2a$10$Mr/6DpccAg6otaXnsqKZTOL0s9EYXS.iNzmWlu3M9lQbJ5TsZqTFe\",\"expiry\":1569200671,\"updated_at\":\"2019-09-09 01:04:31 UTC\"}}"], ["updated_at", "2019-09-09 01:04:31.241426"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 109ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jackson.bashirian@marks.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jackson.bashirian@marks.io"], ["encrypted_password", "$2a$04$93R/SCNP.EDOqTbkKqJWkuBurjbouYV1DkEe6QUe4JHzyGv5meGjW"], ["confirmed_at", "2019-09-09 01:04:31.247726"], ["name", "Sandy Beech"], ["email", "jackson.bashirian@marks.io"], ["created_at", "2019-09-09 01:04:31.248378"], ["updated_at", "2019-09-09 01:04:31.248378"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b4f26c89a2f4e5db3625f5c76d233ba8c7d9614675e0c519f416d3e9c50e2927"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b4f26c89a2f4e5db3625f5c76d233ba8c7d9614675e0c519f416d3e9c50e2927"], ["reset_password_sent_at", "2019-09-09 01:04:31.250241"], ["updated_at", "2019-09-09 01:04:31.250400"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22XyCyuXNG5cVKqqv9CaJt%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:04:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"XyCyuXNG5cVKqqv9CaJt\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b4f26c89a2f4e5db3625f5c76d233ba8c7d9614675e0c519f416d3e9c50e2927"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Qfv-43wJlWx4UB8CYjWV0Q\":{\"token\":\"$2a$10$U4gPzWd5D6CmwbPzJea/T.ZwqILV3wzQK0Ru4gW2TXWIUsUYsyAOO\",\"expiry\":1569200671}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 01:04:31.301241"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=c9On52C7K_GAxTrw2GCITA&client=Qfv-43wJlWx4UB8CYjWV0Q&client_id=Qfv-43wJlWx4UB8CYjWV0Q&config=&expiry=1569200671&reset_password=true&token=c9On52C7K_GAxTrw2GCITA&uid=jackson.bashirian%40marks.io Completed 302 Found in 50ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jei_sipes@jakubowski.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jei_sipes@jakubowski.name"], ["encrypted_password", "$2a$04$TiW.f/Z5BekLHCISD.Vts.Dhns1iwt5OVmBf8pL3K4nSQ3mDkfRtq"], ["confirmed_at", "2019-09-09 01:04:31.307415"], ["name", "Emile Eaton"], ["email", "jei_sipes@jakubowski.name"], ["created_at", "2019-09-09 01:04:31.308200"], ["updated_at", "2019-09-09 01:04:31.308200"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ef0163f2031c0b9c07251ce95d5e91dcdbd7cf1f2117cf70f81a8419f3a0941f"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "ef0163f2031c0b9c07251ce95d5e91dcdbd7cf1f2117cf70f81a8419f3a0941f"], ["reset_password_sent_at", "2019-09-09 01:04:31.309347"], ["updated_at", "2019-09-09 01:04:31.309510"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%228VMJgHXfJxW41jmzX8vFinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:04:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"8VMJgHXfJxW41jmzX8vFinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "17363335fba0440f981b98bf6b96b6416b85ae64abff94b68ed41a34accf8ff2"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cheryll.nicolas@paucek.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cheryll.nicolas@paucek.io"], ["encrypted_password", "$2a$04$ulJBBDb2okZQTPvr0.Ck1.AqhG6e34YdcEyMlJtK6uw6bCVqKzyC."], ["confirmed_at", "2019-09-09 01:12:31.422973"], ["name", "Maurice Minor"], ["email", "cheryll.nicolas@paucek.io"], ["created_at", "2019-09-09 01:12:31.424990"], ["updated_at", "2019-09-09 01:12:31.424990"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cebe2aa05ddae76bfa73268cc2740e92b4570c77ceaf84f148b4fd61c374742c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "cebe2aa05ddae76bfa73268cc2740e92b4570c77ceaf84f148b4fd61c374742c"], ["reset_password_sent_at", "2019-09-09 01:12:31.507674"], ["updated_at", "2019-09-09 01:12:31.507960"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22tn4ZGn1-8Ms8ExQS5JFX%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:12:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"tn4ZGn1-8Ms8ExQS5JFX\",\n redirectUrl: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cebe2aa05ddae76bfa73268cc2740e92b4570c77ceaf84f148b4fd61c374742c"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"W8AIlyL2OUNuz96AXdNdWw\":{\"token\":\"$2a$10$CYZvpky7L3MUmsuz0Sj0Duz/v/eppLU7Mxh6b42rgAInSD.kCVX.K\",\"expiry\":1569201151}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 01:12:31.573577"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"W8AIlyL2OUNuz96AXdNdWw\":{\"token\":\"$2a$10$CYZvpky7L3MUmsuz0Sj0Duz/v/eppLU7Mxh6b42rgAInSD.kCVX.K\",\"expiry\":1569201151},\"_w-gcGm7IMuptdjcXTO-7g\":{\"token\":\"$2a$10$X7aFQYrK93ThOQu5pk5CE.FktlFm3DZVYZRmOaua2PwAgrtkV/cQO\",\"expiry\":1569201151,\"updated_at\":\"2019-09-09 01:12:31 UTC\"}}"], ["updated_at", "2019-09-09 01:12:31.617863"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 98ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "karl@balistreri.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "karl@balistreri.io"], ["encrypted_password", "$2a$04$9Krlu8daDkeaUHomjbwt4u2ND6nK2oR7HBU4g.UEb0pTXoSVAXMHK"], ["confirmed_at", "2019-09-09 01:12:31.627018"], ["name", "Zoltan Pepper"], ["email", "karl@balistreri.io"], ["created_at", "2019-09-09 01:12:31.628077"], ["updated_at", "2019-09-09 01:12:31.628077"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "53e2d5376c806a9adcfd277292c1dced004c6289283d0c11837b871ad87a127e"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "53e2d5376c806a9adcfd277292c1dced004c6289283d0c11837b871ad87a127e"], ["reset_password_sent_at", "2019-09-09 01:12:31.642620"], ["updated_at", "2019-09-09 01:12:31.642854"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22DKfVRPzYFU5jEf6-WKwF%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:12:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"DKfVRPzYFU5jEf6-WKwF\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "53e2d5376c806a9adcfd277292c1dced004c6289283d0c11837b871ad87a127e"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gTRfkn-Q6YL1hLBLZJj2zA\":{\"token\":\"$2a$10$yqyF7jDZoSmOYrixXzDNBe.s7n9jCvvvZxAxVpPT5jYzhrx48c6lW\",\"expiry\":1569201151}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 01:12:31.698271"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=db56xQer0PBe9dFEeThsxA&client=gTRfkn-Q6YL1hLBLZJj2zA&client_id=gTRfkn-Q6YL1hLBLZJj2zA&config=&expiry=1569201151&reset_password=true&token=db56xQer0PBe9dFEeThsxA&uid=karl%40balistreri.io Completed 302 Found in 55ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "julienne@trantowvonrueden.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "julienne@trantowvonrueden.info"], ["encrypted_password", "$2a$04$TlkOwZNjB2DJQQ2IukwiBu5BRODdb4thT53Ej9hTSo2t6U4wyBNHC"], ["confirmed_at", "2019-09-08 15:12:31"], ["name", "Polly Ester"], ["email", "julienne@trantowvonrueden.info"], ["created_at", "2019-09-08 15:12:31"], ["updated_at", "2019-09-08 15:12:31"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7014ba334f1dbc32f97f1d2b1c0874aadff1d864b02a1f576fdf9783b57549f0"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7014ba334f1dbc32f97f1d2b1c0874aadff1d864b02a1f576fdf9783b57549f0"], ["reset_password_sent_at", "2019-09-08 15:12:31"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22hqfG7X4XxuuRc5th-oyh%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:12:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"hqfG7X4XxuuRc5th-oyh\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7014ba334f1dbc32f97f1d2b1c0874aadff1d864b02a1f576fdf9783b57549f0"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kenisha_lueilwitz@corwin.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kenisha_lueilwitz@corwin.biz"], ["encrypted_password", "$2a$04$JyEXl/7HsWuF.e2VbcZ11uIU8C/ASpXwkDcgyDD779dSrG84Yx2Tu"], ["confirmed_at", "2019-09-09 01:12:43.143357"], ["name", "Rory Storm"], ["email", "kenisha_lueilwitz@corwin.biz"], ["created_at", "2019-09-09 01:12:43.144710"], ["updated_at", "2019-09-09 01:12:43.144710"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "786f9d4eac71820282accc9216324299cff2716bba595aa948285f66e62da7e0"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "786f9d4eac71820282accc9216324299cff2716bba595aa948285f66e62da7e0"], ["reset_password_sent_at", "2019-09-09 01:12:43.146402"], ["updated_at", "2019-09-09 01:12:43.146642"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22axS-j2TQBdBRcSkvMKZcinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:12:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"axS-j2TQBdBRcSkvMKZcinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e5b4eaafa432ec3f2154c13be62f8d4e5933d71fafbac5c0752c39af8e2e72d7"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ali_olson@blandamuller.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ali_olson@blandamuller.net"], ["encrypted_password", "$2a$04$5GoMxvv4Qb2D723c6CHoseXVqv6CJmguOc7RKZvl.P.m1kTEXhZlm"], ["confirmed_at", "2019-09-08 15:13:36"], ["name", "Jean Poole"], ["email", "ali_olson@blandamuller.net"], ["created_at", "2019-09-08 15:13:36"], ["updated_at", "2019-09-08 15:13:36"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5d2c6fab5837205d31e6f844f78c63411e8a59b551de09b56aa743e83aac9b9a"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "5d2c6fab5837205d31e6f844f78c63411e8a59b551de09b56aa743e83aac9b9a"], ["reset_password_sent_at", "2019-09-08 15:13:36"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22PQEZJjyN6GWsqX2nwfQY%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:13:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"PQEZJjyN6GWsqX2nwfQY\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5d2c6fab5837205d31e6f844f78c63411e8a59b551de09b56aa743e83aac9b9a"], ["LIMIT", 1]] Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ruthe@bayer.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ruthe@bayer.name"], ["encrypted_password", "$2a$04$qA46C4.U2znrejX8D7zJSeBf4akH.dVfuFnoCf6Phyrn4zYxDR3ce"], ["confirmed_at", "2019-09-09 01:13:45.155702"], ["name", "Rusty Irons"], ["email", "ruthe@bayer.name"], ["created_at", "2019-09-09 01:13:45.157616"], ["updated_at", "2019-09-09 01:13:45.157616"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "45d47f499b02016bd5a6f5873f1229b16622c1b2719941f3f887c4b7aa695a34"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "45d47f499b02016bd5a6f5873f1229b16622c1b2719941f3f887c4b7aa695a34"], ["reset_password_sent_at", "2019-09-09 01:13:45.237168"], ["updated_at", "2019-09-09 01:13:45.237427"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%226H6EXaGyZkWYS-B5MCXG%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:13:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"6H6EXaGyZkWYS-B5MCXG\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "45d47f499b02016bd5a6f5873f1229b16622c1b2719941f3f887c4b7aa695a34"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"JKy-harv5-w94Wx3ZU6qmA\":{\"token\":\"$2a$10$vrV/N7QsIM7F1KZm6iAYcexsxw137DWT.dx.4hoakbgINs2djiCYG\",\"expiry\":1569201225}}"], ["allow_password_change", 1], ["updated_at", "2019-09-09 01:13:45.303710"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=v-wYEAZTb1fSNHlluQeBCQ&client=JKy-harv5-w94Wx3ZU6qmA&client_id=JKy-harv5-w94Wx3ZU6qmA&config=&expiry=1569201225&reset_password=true&token=v-wYEAZTb1fSNHlluQeBCQ&uid=ruthe%40bayer.name Completed 302 Found in 54ms (ActiveRecord: 0.2ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "daniel@armstrongorn.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "daniel@armstrongorn.name"], ["encrypted_password", "$2a$04$F74A3VwIyhlvIVeBEQ3/f.jzTlTWpGD75vaxsqk5jF4MlOaN54nEO"], ["confirmed_at", "2019-09-08 15:14:12"], ["name", "Elmer Sklue"], ["email", "daniel@armstrongorn.name"], ["created_at", "2019-09-08 15:14:12"], ["updated_at", "2019-09-08 15:14:12"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cab5c01fb2255c5479ff041beb804f274d4b15b182fee12ce041680b2ae7e458"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "cab5c01fb2255c5479ff041beb804f274d4b15b182fee12ce041680b2ae7e458"], ["reset_password_sent_at", "2019-09-08 15:14:12"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%2297AZNJRxZ_HeB4DQjjzf%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:14:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"97AZNJRxZ_HeB4DQjjzf\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cab5c01fb2255c5479ff041beb804f274d4b15b182fee12ce041680b2ae7e458"], ["LIMIT", 1]] Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'millicent_smitham@gutkowski.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.0ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "I. Pullem"], ["email", "millicent_smitham@gutkowski.co"], ["encrypted_password", "$2a$04$flOmGiJRfKKUepHJYI.oI.7OkGzG5PlQt/O.NpcPMYhxxLzBJUIcS"], ["confirmed_at", "2019-09-08 15:14:47.000000"], ["uid", "millicent_smitham@gutkowski.co"], ["created_at", "2019-09-08 15:14:47.000000"], ["updated_at", "2019-09-08 15:14:47.000000"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "8ecdc32a0a742dc08fc8708f81817c1052801ac02a19b8c80392fd93901835e1"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "8ecdc32a0a742dc08fc8708f81817c1052801ac02a19b8c80392fd93901835e1"], ["reset_password_sent_at", "2019-09-08 15:14:47.000000"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22CoEGzMS4stcSBh5L8bxF%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:14:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"CoEGzMS4stcSBh5L8bxF\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "8ecdc32a0a742dc08fc8708f81817c1052801ac02a19b8c80392fd93901835e1"]] Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gene_kemmer@tremblay.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gene_kemmer@tremblay.net"], ["encrypted_password", "$2a$04$9gv3syg2CFKa2rQl3NI7q.W0xbnsO4irio8sllX9/47HByTVuJb0q"], ["confirmed_at", "2019-09-08 15:14:51"], ["name", "Bess Twishes"], ["email", "gene_kemmer@tremblay.net"], ["tokens", "{}"], ["created_at", "2019-09-08 15:14:51"], ["updated_at", "2019-09-08 15:14:51"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5ced0b98dfe1484d1c17be2be32e468f8b3abc692a361c044b40c109c208b4ab"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "5ced0b98dfe1484d1c17be2be32e468f8b3abc692a361c044b40c109c208b4ab"], ["reset_password_sent_at", "2019-09-08 15:14:51"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22YWiLhiizyWD7xUojRWcy%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:14:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"YWiLhiizyWD7xUojRWcy\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5ced0b98dfe1484d1c17be2be32e468f8b3abc692a361c044b40c109c208b4ab"], ["LIMIT", 1]] Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "valeria.wolff@bechtelarbeer.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "valeria.wolff@bechtelarbeer.org"], ["encrypted_password", "$2a$04$cPVlBfwkEqw5VJokilpGJudFIP1ga1QUBROcphp0hUd9DHxGWn7ye"], ["confirmed_at", "2019-09-08 15:14:54"], ["name", "Lisa Honda"], ["email", "valeria.wolff@bechtelarbeer.org"], ["created_at", "2019-09-08 15:14:54"], ["updated_at", "2019-09-08 15:14:54"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e84f147b70a753b197619e157a10378f8a0123590c2caee3faf3e4ec295841e3"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "e84f147b70a753b197619e157a10378f8a0123590c2caee3faf3e4ec295841e3"], ["reset_password_sent_at", "2019-09-08 15:14:54"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22WeyhWnwzN1DBMxwD15EW%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:14:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"WeyhWnwzN1DBMxwD15EW\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e84f147b70a753b197619e157a10378f8a0123590c2caee3faf3e4ec295841e3"], ["LIMIT", 1]] Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "thao@smith.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "thao@smith.io"], ["encrypted_password", "$2a$04$RX94XjLat6eNXFbzSyhbW.VNIEDpm/FPQMGbbsb7axbajUxQ2pvVe"], ["confirmed_at", "2019-09-08 15:14:58"], ["name", "Jaqueline Hyde"], ["email", "thao@smith.io"], ["tokens", "{}"], ["created_at", "2019-09-08 15:14:58"], ["updated_at", "2019-09-08 15:14:58"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f20aee03c02fed02c87ea4f51f674cba671924e20d64250d0f6d7b722ec4ee74"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f20aee03c02fed02c87ea4f51f674cba671924e20d64250d0f6d7b722ec4ee74"], ["reset_password_sent_at", "2019-09-08 15:14:58"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22_xgxwrsKCc3Fyk_yzsHC%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:14:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"_xgxwrsKCc3Fyk_yzsHC\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f20aee03c02fed02c87ea4f51f674cba671924e20d64250d0f6d7b722ec4ee74"], ["LIMIT", 1]] Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ricky@rolfson.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ricky@rolfson.name"], ["encrypted_password", "$2a$04$VrGPu7Hd1tfh1hX8VyT9/O9C3Q.6IVykcCOxKAljJHppY3W5.woyC"], ["confirmed_at", "2019-09-08 15:15:01"], ["name", "Ty Knotts"], ["email", "ricky@rolfson.name"], ["created_at", "2019-09-08 15:15:01"], ["updated_at", "2019-09-08 15:15:01"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e0fdbc2eef98e30069ed089a2d2b198cf206fac2ac65d96167c68b9e132da04d"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "e0fdbc2eef98e30069ed089a2d2b198cf206fac2ac65d96167c68b9e132da04d"], ["reset_password_sent_at", "2019-09-08 15:15:01"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22p9fpHmzrHcnday-v1sP_%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:15:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"p9fpHmzrHcnday-v1sP_\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e0fdbc2eef98e30069ed089a2d2b198cf206fac2ac65d96167c68b9e132da04d"], ["LIMIT", 1]] Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "evie@casper.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "evie@casper.com"], ["encrypted_password", "$2a$04$WevhEncWGnU3R4JDhrkat.f9vMAdV9KAc8sRth6YTbQ1KiRnGY0te"], ["confirmed_at", "2019-09-08 15:15:05"], ["name", "Harry Beard"], ["email", "evie@casper.com"], ["tokens", "{}"], ["created_at", "2019-09-08 15:15:05"], ["updated_at", "2019-09-08 15:15:05"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a4df06b837ad03f4e9a72a70ce1e2d41728977f15a4b15ef6dbe581a02ce72ee"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "a4df06b837ad03f4e9a72a70ce1e2d41728977f15a4b15ef6dbe581a02ce72ee"], ["reset_password_sent_at", "2019-09-08 15:15:05"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22AqMUqDTZhJVL-tXvP-6h%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:15:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"AqMUqDTZhJVL-tXvP-6h\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a4df06b837ad03f4e9a72a70ce1e2d41728977f15a4b15ef6dbe581a02ce72ee"], ["LIMIT", 1]] Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kenya.feeney@mayertreichert.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kenya.feeney@mayertreichert.org"], ["encrypted_password", "$2a$04$XoO6fLsScWvCrzVdt1MmFOrPdq7esvvdAv5VKDp3AzXRAL3fut9Xu"], ["confirmed_at", "2019-09-08 15:15:08"], ["name", "Minnie Skurt"], ["email", "kenya.feeney@mayertreichert.org"], ["created_at", "2019-09-08 15:15:08"], ["updated_at", "2019-09-08 15:15:08"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5f96cd78d49e45c27da5eef7853700ce5cc9880d9e3db5dc1019f0635453824e"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "5f96cd78d49e45c27da5eef7853700ce5cc9880d9e3db5dc1019f0635453824e"], ["reset_password_sent_at", "2019-09-08 15:15:08"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22sf6bUZFMHRAxqWCXAoyZ%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:15:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"sf6bUZFMHRAxqWCXAoyZ\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5f96cd78d49e45c27da5eef7853700ce5cc9880d9e3db5dc1019f0635453824e"], ["LIMIT", 1]] Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (1.0ms) SELECT sqlite_version(*)  (0.9ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "john_marks@lemke.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "john_marks@lemke.com"], ["encrypted_password", "$2a$04$jwEB38YDgcPWNe.vwYnxUOo232BIqHkvYS4hO1Pz/qsnekieqz2WS"], ["confirmed_at", "2019-09-08 15:15:12"], ["name", "Sue Yu"], ["email", "john_marks@lemke.com"], ["created_at", "2019-09-08 15:15:12"], ["updated_at", "2019-09-08 15:15:12"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4c2347f10e1d7c18516796191ad96119d0be7d6b3baffe815dbeeae517460fca"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "4c2347f10e1d7c18516796191ad96119d0be7d6b3baffe815dbeeae517460fca"], ["reset_password_sent_at", "2019-09-08 15:15:12"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%2298LFiLhtBTdb6t21XYb_%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-08 20:15:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"98LFiLhtBTdb6t21XYb_\",\n redirectUrl: \"https://google.com\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4c2347f10e1d7c18516796191ad96119d0be7d6b3baffe815dbeeae517460fca"], ["LIMIT", 1]] Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 11744) TRANSACTION (0.3ms) rollback transaction  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marlon.halvorson@leannonbauch.net"], ["provider", "email"], ["LIMIT", 1]] User Create (4.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marlon.halvorson@leannonbauch.net"], ["encrypted_password", "$2a$04$DKFTsszE6EYJZM43fM5Wj.yheVKzgAmJTNuXSdlXqEN39q58YyOqa"], ["confirmed_at", "2019-09-12 03:30:52.109479"], ["name", "Hare Brain"], ["email", "marlon.halvorson@leannonbauch.net"], ["created_at", "2019-09-12 03:30:52.113079"], ["updated_at", "2019-09-12 03:30:52.113079"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d2e13c6463e68fbbcbc60330f00e7fe2dc7ee956e59123414ec95eec84c8b843"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "d2e13c6463e68fbbcbc60330f00e7fe2dc7ee956e59123414ec95eec84c8b843"], ["reset_password_sent_at", "2019-09-12 03:31:35.880465"], ["updated_at", "2019-09-12 03:31:35.880705"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (2.9ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 150.4ms Sent mail to marlon.halvorson@leannonbauch.net (8.3ms) Date: Wed, 11 Sep 2019 22:31:36 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: marlon.halvorson@leannonbauch.net Message-ID: <5d79bc18924c_11fa63feb27c32010149c@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: marlon.halvorson@leannonbauch.net provider: email redirect-url: https://google.com client-config: default

Hello world marlon.halvorson@leannonbauch.net!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "801fd550ff601bbf9fa476d99ab119e49a427cddf47c33e07e781e5a0cc3d35d"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.6ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "801fd550ff601bbf9fa476d99ab119e49a427cddf47c33e07e781e5a0cc3d35d"], ["reset_password_sent_at", "2019-09-12 03:35:28.211507"], ["updated_at", "2019-09-12 03:35:28.211821"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22Uymr6shvsQ__TMsTz1Pt%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-11 22:35:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"Uymr6shvsQ__TMsTz1Pt\",\n redirectUrl: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "801fd550ff601bbf9fa476d99ab119e49a427cddf47c33e07e781e5a0cc3d35d"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"p6PtsRKTM_VisrKqtIsQMw\":{\"token\":\"$2a$10$9.Zhw9xyioyqZraZiPAl3unilFAlUcIS3/ggYQllhkZlu5bY.AP1G\",\"expiry\":1569468928}}"], ["allow_password_change", 1], ["updated_at", "2019-09-12 03:35:28.340482"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"p6PtsRKTM_VisrKqtIsQMw\":{\"token\":\"$2a$10$9.Zhw9xyioyqZraZiPAl3unilFAlUcIS3/ggYQllhkZlu5bY.AP1G\",\"expiry\":1569468928},\"F32xnmHRchTgN5V9izilFw\":{\"token\":\"$2a$10$R6Uwznx7lja6tE3TNLTg3u5n1iSzsr9D3NCToIs39Xnm.qJvyUgQ2\",\"expiry\":1569468928,\"updated_at\":\"2019-09-12 03:35:28 UTC\"}}"], ["updated_at", "2019-09-12 03:35:28.383947"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 140ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jonah_renner@effertzskiles.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jonah_renner@effertzskiles.net"], ["encrypted_password", "$2a$04$3OU9sIAODCd6t9IxpuyuA.i2K77bogKT0ZPSbN2NEJ1SDyq0SlKge"], ["confirmed_at", "2019-09-12 03:35:38.801993"], ["name", "Pete Zaria"], ["email", "jonah_renner@effertzskiles.net"], ["created_at", "2019-09-12 03:35:38.804555"], ["updated_at", "2019-09-12 03:35:38.804555"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f89245cbd9abac7dab3a27629e7cca815f91cc65ec30f3786fef762d1fcb86f8"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f89245cbd9abac7dab3a27629e7cca815f91cc65ec30f3786fef762d1fcb86f8"], ["reset_password_sent_at", "2019-09-12 03:35:38.892993"], ["updated_at", "2019-09-12 03:35:38.893233"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (0.3ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 4.5ms User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d2f178d230ee4e4c2db1e24fda14f6599ba161895a85f70f114dbccff27edf9c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "d2f178d230ee4e4c2db1e24fda14f6599ba161895a85f70f114dbccff27edf9c"], ["reset_password_sent_at", "2019-09-12 03:36:05.441259"], ["updated_at", "2019-09-12 03:36:05.441602"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22goJuvpYCTqvXyc2dJHni%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-11 22:36:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"goJuvpYCTqvXyc2dJHni\",\n redirectUrl: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d2f178d230ee4e4c2db1e24fda14f6599ba161895a85f70f114dbccff27edf9c"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"wtmSytct3As6-zWMQr2wuw\":{\"token\":\"$2a$10$d0BsPUhHVhm2lgdXFQnPpuE6ajowuiZ7hh.HxtwCDMtwycjAFuYzu\",\"expiry\":1569468965}}"], ["allow_password_change", 1], ["updated_at", "2019-09-12 03:36:05.525861"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"wtmSytct3As6-zWMQr2wuw\":{\"token\":\"$2a$10$d0BsPUhHVhm2lgdXFQnPpuE6ajowuiZ7hh.HxtwCDMtwycjAFuYzu\",\"expiry\":1569468965},\"LmkTUaxKIS24QfpZLAnpFQ\":{\"token\":\"$2a$10$hSSCDxj7gDSrm4BC5fQCy.zsWAqX69A1unhf0wwP58TKBAhbuM7lC\",\"expiry\":1569468965,\"updated_at\":\"2019-09-12 03:36:05 UTC\"}}"], ["updated_at", "2019-09-12 03:36:05.580554"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 123ms (Views: 0.2ms | ActiveRecord: 0.5ms)  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mose@simonis.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mose@simonis.net"], ["encrypted_password", "$2a$04$pWax4L5MZZwBIm46qQjM1OlzmzeeTUiiDvzYpy5j//kjqJKAzHqz6"], ["confirmed_at", "2019-09-12 03:36:11.792988"], ["name", "Hammond Eggs"], ["email", "mose@simonis.net"], ["created_at", "2019-09-12 03:36:11.795340"], ["updated_at", "2019-09-12 03:36:11.795340"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "aaca562b8a0aa832b7b558f8d7d58d922fe33d52725a747d427d5f283057f6eb"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "aaca562b8a0aa832b7b558f8d7d58d922fe33d52725a747d427d5f283057f6eb"], ["reset_password_sent_at", "2019-09-12 03:36:11.881700"], ["updated_at", "2019-09-12 03:36:11.881956"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.7ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 135.8ms Sent mail to mose@simonis.net (6.1ms) Date: Wed, 11 Sep 2019 22:36:12 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: mose@simonis.net Message-ID: <5d79bd2c5925_1207b3fd78202e0102446@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: mose@simonis.net provider: email redirect-url: https://google.com client-config: default

Hello mose@simonis.net!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d86cf40e26880dd430a069a6cf5911e156167152b9988f235d1099fc106c7358"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "d86cf40e26880dd430a069a6cf5911e156167152b9988f235d1099fc106c7358"], ["reset_password_sent_at", "2019-09-12 03:37:06.116513"], ["updated_at", "2019-09-12 03:37:06.116860"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++mutation+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22fuMyzs5KYxtdiz3vxt4p%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++authenticable+%7B+email+%7D%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-09-11 22:37:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userCheckPasswordToken(\n resetPasswordToken: \"fuMyzs5KYxtdiz3vxt4p\",\n redirectUrl: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d86cf40e26880dd430a069a6cf5911e156167152b9988f235d1099fc106c7358"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3NWIeIwx46R4AfZCjPrFnA\":{\"token\":\"$2a$10$x22aPx17u/vyLySzrWzXFeFlFbyoNjc65QpBNE3SantnSVSVKWBjW\",\"expiry\":1569469026}}"], ["allow_password_change", 1], ["updated_at", "2019-09-12 03:37:06.219732"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) SAVEPOINT active_record_1 User Update (0.7ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3NWIeIwx46R4AfZCjPrFnA\":{\"token\":\"$2a$10$x22aPx17u/vyLySzrWzXFeFlFbyoNjc65QpBNE3SantnSVSVKWBjW\",\"expiry\":1569469026},\"BWX74FZ8huy_2ROS7OnwiA\":{\"token\":\"$2a$10$F.ULBWDd7fGAByVCpU3MduWQ0pNutbiMTMJsxPuUfBWTul6zb/m5K\",\"expiry\":1569469026,\"updated_at\":\"2019-09-12 03:37:06 UTC\"}}"], ["updated_at", "2019-09-12 03:37:06.268051"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 148ms (Views: 14.9ms | ActiveRecord: 2.1ms)  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leida.collins@schambergergerhold.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "leida.collins@schambergergerhold.io"], ["encrypted_password", "$2a$04$Ag2JiSeEIN8W7LUA1j/Z2uV99fScSjTb8X5TZPvC4whfRB/xZyBG6"], ["confirmed_at", "2019-09-12 03:44:32.542390"], ["name", "Marlon Fisher"], ["email", "leida.collins@schambergergerhold.io"], ["created_at", "2019-09-12 03:44:32.544300"], ["updated_at", "2019-09-12 03:44:32.544300"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 22:44:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"leida.collins@schambergergerhold.io\",\n redirectUrl: \"http://vandervort.biz/delbert\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "leida.collins@schambergergerhold.io"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7a06b8522eec926dc7279acf31471d9dbd4060d7c04bd14ce8aa211cc98b00e9"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7a06b8522eec926dc7279acf31471d9dbd4060d7c04bd14ce8aa211cc98b00e9"], ["reset_password_sent_at", "2019-09-12 03:44:32.653773"], ["updated_at", "2019-09-12 03:44:32.654053"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.3ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 116.4ms Sent mail to leida.collins@schambergergerhold.io (3.3ms) Date: Wed, 11 Sep 2019 22:44:32 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: leida.collins@schambergergerhold.io Message-ID: <5d79bf20bcd9f_122453fc7be82ffd08ba@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: leida.collins@schambergergerhold.io provider: email redirect-url: http://vandervort.biz/delbert client-config: default

Hello leida.collins@schambergergerhold.io!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 213ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vaughn_jones@rooblang.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "vaughn_jones@rooblang.net"], ["encrypted_password", "$2a$04$/8SQwebwDQUWzVxjncc6.uG.guC7F7z9irulseZmMIKuNMLkER/Oq"], ["confirmed_at", "2019-09-12 03:50:57.405194"], ["name", "Midas Well"], ["email", "vaughn_jones@rooblang.net"], ["created_at", "2019-09-12 03:50:57.407119"], ["updated_at", "2019-09-12 03:50:57.407119"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 22:50:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"vaughn_jones@rooblang.net\",\n redirectUrl: \"http://larsonstehr.name/wilfred\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "vaughn_jones@rooblang.net"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "434becf96f50cd25fbfc720de95a6205150cac52d226c86088a0c189a85c3a2c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "434becf96f50cd25fbfc720de95a6205150cac52d226c86088a0c189a85c3a2c"], ["reset_password_sent_at", "2019-09-12 03:50:57.515278"], ["updated_at", "2019-09-12 03:50:57.515562"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.8ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 132.9ms Sent mail to vaughn_jones@rooblang.net (3.4ms) Date: Wed, 11 Sep 2019 22:50:57 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: vaughn_jones@rooblang.net Message-ID: <5d79c0a19f22c_123593feccb032008767ec@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: vaughn_jones@rooblang.net provider: email redirect-url: http://larsonstehr.name/wilfred client-config: default

Hello vaughn_jones@rooblang.net!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 232ms (Views: 0.2ms | ActiveRecord: 0.6ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ruben@gottlieb.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ruben@gottlieb.net"], ["encrypted_password", "$2a$04$1k/jmIp6Iljr2XMQGaOQOOgenyrS7auPSRzMgo44SY5CzTv1NnMKm"], ["confirmed_at", "2019-09-12 03:52:49.942602"], ["name", "Colleen Cardd"], ["email", "ruben@gottlieb.net"], ["created_at", "2019-09-12 03:52:49.944549"], ["updated_at", "2019-09-12 03:52:49.944549"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 22:52:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"ruben@gottlieb.net\",\n redirectUrl: \"http://stoltenbergfarrell.org/halina\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "ruben@gottlieb.net"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "488469f7d1a1a796362419f0aabafc2e2f209c4f89c1533650246e018f62ae24"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "488469f7d1a1a796362419f0aabafc2e2f209c4f89c1533650246e018f62ae24"], ["reset_password_sent_at", "2019-09-12 03:52:50.048378"], ["updated_at", "2019-09-12 03:52:50.048666"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.8ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 123.5ms Sent mail to ruben@gottlieb.net (3.3ms) Date: Wed, 11 Sep 2019 22:52:50 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: ruben@gottlieb.net Message-ID: <5d79c1122ac85_1253e3fdadcc2e01010782@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: ruben@gottlieb.net provider: email redirect-url: http://stoltenbergfarrell.org/halina client-config: default

Hello ruben@gottlieb.net!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 219ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "perla_gottlieb@leuschkeroob.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "perla_gottlieb@leuschkeroob.org"], ["encrypted_password", "$2a$04$RU2oUZSsZbKMq1uSM8C2VeSdh6HuCpgN0nwE.gY8fRV8NG5Js0Toi"], ["confirmed_at", "2019-09-12 03:55:02.876485"], ["name", "Kay Neine"], ["email", "perla_gottlieb@leuschkeroob.org"], ["created_at", "2019-09-12 03:55:02.878363"], ["updated_at", "2019-09-12 03:55:02.878363"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 22:55:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"perla_gottlieb@leuschkeroob.org\",\n redirectUrl: \"http://schulist.info/evita\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "perla_gottlieb@leuschkeroob.org"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b5f33e7774eaae7fb810bd0a309c58c9aa153ad9556587e33dfd2d820f6a0deb"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b5f33e7774eaae7fb810bd0a309c58c9aa153ad9556587e33dfd2d820f6a0deb"], ["reset_password_sent_at", "2019-09-12 03:55:02.983825"], ["updated_at", "2019-09-12 03:55:02.984103"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.3ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 113.4ms Sent mail to perla_gottlieb@leuschkeroob.org (3.2ms) Date: Wed, 11 Sep 2019 22:55:03 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: perla_gottlieb@leuschkeroob.org Message-ID: <5d79c19718896_1259c3fefa942ffd0902a6@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: perla_gottlieb@leuschkeroob.org provider: email redirect-url: http://schulist.info/evita client-config: default

Hello perla_gottlieb@leuschkeroob.org!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 210ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 22:57:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"raymond_hermiston@hegmann.co\"\n name: \"Darron Wilderman\"\n password: \"0eSu4eXjCvPvRv8\"\n passwordConfirmation: \"0eSu4eXjCvPvRv8\"\n confirmSuccessUrl: \"http://kohlerbarrows.io/michaele.stanton\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "raymond_hermiston@hegmann.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "raymond_hermiston@hegmann.co"], ["encrypted_password", "$2a$04$tDu7gZR7DNb.UgBYZ0eKJOfIP.QuCtaWCT/UO0yQZqSyNX6PQmVoK"], ["confirmation_token", "jmpCDYx6B_SrS-oTWVsZ"], ["confirmation_sent_at", "2019-09-12 03:57:12.189181"], ["name", "Darron Wilderman"], ["email", "raymond_hermiston@hegmann.co"], ["created_at", "2019-09-12 03:57:12.189076"], ["updated_at", "2019-09-12 03:57:12.189076"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/confirmation_instructions.html.erb (1.2ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 126.6ms Sent mail to raymond_hermiston@hegmann.co (3.3ms) Date: Wed, 11 Sep 2019 22:57:12 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: raymond_hermiston@hegmann.co Message-ID: <5d79c2184de59_125f03ffc4003201069948@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://kohlerbarrows.io/michaele.stanton

Welcome raymond_hermiston@hegmann.co!

You can confirm your account email through the link below:

Confirm my account

Completed 200 OK in 153ms (Views: 0.2ms | ActiveRecord: 0.6ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 22:57:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Lashonda Carter DDS\"\n password: \"FaOn0zNb\"\n passwordConfirmation: \"FaOn0zNb\"\n confirmSuccessUrl: \"http://thiel.org/coreen\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.0ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "norbert@hayeshirthe.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "norbert@hayeshirthe.info"], ["encrypted_password", "$2a$04$f9nllpaKFDgEA/gjBNTesOp9njWFV8LsUIzGPAY95sUfwiPm8ITsi"], ["confirmed_at", "2019-09-12 03:58:53.505258"], ["name", "Trina Woods"], ["email", "norbert@hayeshirthe.info"], ["created_at", "2019-09-12 03:58:53.507171"], ["updated_at", "2019-09-12 03:58:53.507171"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 22:58:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"norbert@hayeshirthe.info\",\n redirectUrl: \"http://kuvalis.io/imelda_streich\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "norbert@hayeshirthe.info"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7d1f5e600f73999fa7a2ce23f0407d55315aa2390a68025ae1a83dedfc7282a0"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7d1f5e600f73999fa7a2ce23f0407d55315aa2390a68025ae1a83dedfc7282a0"], ["reset_password_sent_at", "2019-09-12 03:58:53.612894"], ["updated_at", "2019-09-12 03:58:53.613181"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.5ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 115.8ms Sent mail to norbert@hayeshirthe.info (3.2ms) Date: Wed, 11 Sep 2019 22:58:53 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: norbert@hayeshirthe.info Message-ID: <5d79c27db2c0e_126413fd9e402e0105947a@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: norbert@hayeshirthe.info provider: email redirect-url: http://kuvalis.io/imelda_streich client-config: default

Hello norbert@hayeshirthe.info!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 213ms (Views: 0.3ms | ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "basil@bashirian.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "basil@bashirian.net"], ["encrypted_password", "$2a$04$cKyz6Jy7CAaTh8ETIuoUVetY3qKzhOnFqoylAH7rNPVTDelxQ.IwW"], ["confirmed_at", "2019-09-12 04:00:03.353483"], ["name", "Peg Legge"], ["email", "basil@bashirian.net"], ["created_at", "2019-09-12 04:00:03.355540"], ["updated_at", "2019-09-12 04:00:03.355540"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:00:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"basil@bashirian.net\",\n redirectUrl: \"http://barton.name/dorris_funk\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "basil@bashirian.net"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3f23a8a7d40eff463f4d5b3abab387737aa43096f050f1402bd7a222c4e86dee"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "3f23a8a7d40eff463f4d5b3abab387737aa43096f050f1402bd7a222c4e86dee"], ["reset_password_sent_at", "2019-09-12 04:00:03.453414"], ["updated_at", "2019-09-12 04:00:03.453672"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.3ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 113.0ms Sent mail to basil@bashirian.net (3.3ms) Date: Wed, 11 Sep 2019 23:00:03 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: basil@bashirian.net Message-ID: <5d79c2c38b21d_1268e3fc46903201050517@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: basil@bashirian.net provider: email redirect-url: http://barton.name/dorris_funk client-config: default

Hello basil@bashirian.net!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 203ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "noble@vonzboncak.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "noble@vonzboncak.io"], ["encrypted_password", "$2a$04$DAqH1.6vZzYVKuJHPlAfVeY7PBVQKyM6tMIeg3.KoC3PNZBDPTja2"], ["confirmed_at", "2019-09-12 04:00:26.391623"], ["name", "Phil Graves"], ["email", "noble@vonzboncak.io"], ["created_at", "2019-09-12 04:00:26.393518"], ["updated_at", "2019-09-12 04:00:26.393518"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:00:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"noble@vonzboncak.io\",\n redirectUrl: \"http://renner.biz/skye_heel\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "noble@vonzboncak.io"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "74d9523c1dde96818ee7d67766d93504d16e09c0a11a7d96b9e1b7bdc221fa43"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "74d9523c1dde96818ee7d67766d93504d16e09c0a11a7d96b9e1b7bdc221fa43"], ["reset_password_sent_at", "2019-09-12 04:00:26.501699"], ["updated_at", "2019-09-12 04:00:26.501990"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.8ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 130.1ms Sent mail to noble@vonzboncak.io (3.2ms) Date: Wed, 11 Sep 2019 23:00:26 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: noble@vonzboncak.io Message-ID: <5d79c2da9b1bd_126c83ff24882ffd0734c5@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: noble@vonzboncak.io provider: email redirect-url: http://renner.biz/skye_heel client-config: default

Hello noble@vonzboncak.io!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 229ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "reginald.connelly@kautzer.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "reginald.connelly@kautzer.net"], ["encrypted_password", "$2a$04$xWz2qRqpfnX3HEb9EhSf8OgeYOmoOvf.cDt/RX/2vXc1CGSUTp8za"], ["confirmed_at", "2019-09-12 04:00:49.366155"], ["name", "Royal Payne"], ["email", "reginald.connelly@kautzer.net"], ["created_at", "2019-09-12 04:00:49.368121"], ["updated_at", "2019-09-12 04:00:49.368121"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:00:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"reginald.connelly@kautzer.net\",\n redirectUrl: \"http://jones.info/rex_bartell\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "reginald.connelly@kautzer.net"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7df0ac624ed0e757f01530fcdd58aac4d751e7a2e74b5b692d97790d2b208c2a"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7df0ac624ed0e757f01530fcdd58aac4d751e7a2e74b5b692d97790d2b208c2a"], ["reset_password_sent_at", "2019-09-12 04:00:49.473609"], ["updated_at", "2019-09-12 04:00:49.473884"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.4ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 121.9ms Sent mail to reginald.connelly@kautzer.net (3.3ms) Date: Wed, 11 Sep 2019 23:00:49 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: reginald.connelly@kautzer.net Message-ID: <5d79c2f192392_126fe3fef1b83200828241@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: reginald.connelly@kautzer.net provider: email redirect-url: http://jones.info/rex_bartell client-config: default

Hello reginald.connelly@kautzer.net!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 219ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eliseo@reinger.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "eliseo@reinger.co"], ["encrypted_password", "$2a$04$tKV4et.ETyz3A5m8Yxu66O334f2im.rVYrSCc6o7.kUU0E3eZZFti"], ["confirmed_at", "2019-09-12 04:02:04.551279"], ["name", "Ilene East"], ["email", "eliseo@reinger.co"], ["created_at", "2019-09-12 04:02:04.553156"], ["updated_at", "2019-09-12 04:02:04.553156"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:02:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"eliseo@reinger.co\",\n redirectUrl: \"http://schiller.biz/danika.king\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "eliseo@reinger.co"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0458bfeec97dac175c745d4b00e6e6bb29979184666c8bd932fa3b9b1dd52a9f"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "0458bfeec97dac175c745d4b00e6e6bb29979184666c8bd932fa3b9b1dd52a9f"], ["reset_password_sent_at", "2019-09-12 04:02:04.663011"], ["updated_at", "2019-09-12 04:02:04.663286"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.4ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 111.3ms Sent mail to eliseo@reinger.co (3.2ms) Date: Wed, 11 Sep 2019 23:02:04 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: eliseo@reinger.co Message-ID: <5d79c33cbdd81_127463fd84403200817788@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: eliseo@reinger.co provider: email redirect-url: http://schiller.biz/danika.king client-config: default

Hello eliseo@reinger.co!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 213ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alonzo_schmeler@hintz.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alonzo_schmeler@hintz.com"], ["encrypted_password", "$2a$04$DbyC0J8jaZug9Yezddi1Iu8PNAeRit/2PvanrKDE0z9ZwkVC2Yhr2"], ["confirmed_at", "2019-09-12 04:02:51.040449"], ["name", "Russell Sprout"], ["email", "alonzo_schmeler@hintz.com"], ["created_at", "2019-09-12 04:02:51.042396"], ["updated_at", "2019-09-12 04:02:51.042396"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:02:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"alonzo_schmeler@hintz.com\",\n redirectUrl: \"http://goyette.co/logan\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "alonzo_schmeler@hintz.com"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "fd956bbb25fcf50cc59aee1137b38576a714a45b1b6748187dd565fbe2ad1c62"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "fd956bbb25fcf50cc59aee1137b38576a714a45b1b6748187dd565fbe2ad1c62"], ["reset_password_sent_at", "2019-09-12 04:02:51.149469"], ["updated_at", "2019-09-12 04:02:51.149751"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.4ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 118.6ms Sent mail to alonzo_schmeler@hintz.com (3.3ms) Date: Wed, 11 Sep 2019 23:02:51 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: alonzo_schmeler@hintz.com Message-ID: <5d79c36b42469_1277d3fc647032008744dd@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: alonzo_schmeler@hintz.com provider: email redirect-url: http://goyette.co/logan client-config: default

Hello alonzo_schmeler@hintz.com!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 217ms (Views: 0.2ms | ActiveRecord: 0.5ms)  (1.7ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.3ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marlene@ryan.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marlene@ryan.name"], ["encrypted_password", "$2a$04$3QWPWRCidNb.itfWeNM2IuDPLUyoeq1J.o5Re86oYndydsMXCk/6e"], ["confirmed_at", "2019-09-12 04:05:44.237557"], ["name", "Carrie Oakey"], ["email", "marlene@ryan.name"], ["created_at", "2019-09-12 04:05:44.240265"], ["updated_at", "2019-09-12 04:05:44.240265"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:05:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"marlene@ryan.name\",\n redirectUrl: \"http://grimesrohan.name/grayce.schoen\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "marlene@ryan.name"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4041cfbd82ae7317d487117901dafd96611cdb810c8a54e8188953e8882ce60b"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "4041cfbd82ae7317d487117901dafd96611cdb810c8a54e8188953e8882ce60b"], ["reset_password_sent_at", "2019-09-12 04:05:44.357403"], ["updated_at", "2019-09-12 04:05:44.357684"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.5ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 128.0ms Sent mail to marlene@ryan.name (3.6ms) Date: Wed, 11 Sep 2019 23:05:44 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: marlene@ryan.name Message-ID: <5d79c41877705_127fb3fecaa032010485dc@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: marlene@ryan.name provider: email redirect-url: http://grimesrohan.name/grayce.schoen client-config: default

Hello marlene@ryan.name!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 231ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (1.8ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leeanna_altenwerth@mayert.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "leeanna_altenwerth@mayert.io"], ["encrypted_password", "$2a$04$6yPOIudFtAZudJhx6PYH7O0KBYuN2XTsI0oJj7jxbjqsWkb34fiBK"], ["confirmed_at", "2019-09-12 04:09:16.287888"], ["name", "Chuck Roast"], ["email", "leeanna_altenwerth@mayert.io"], ["created_at", "2019-09-12 04:09:16.289819"], ["updated_at", "2019-09-12 04:09:16.289819"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:09:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"leeanna_altenwerth@mayert.io\",\n redirectUrl: \"http://lueilwitz.com/mike.weinat\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "leeanna_altenwerth@mayert.io"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "13dc49e7869df30a04b080867130b508bf60a9a9841f83ae82a693701b53e27b"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "13dc49e7869df30a04b080867130b508bf60a9a9841f83ae82a693701b53e27b"], ["reset_password_sent_at", "2019-09-12 04:09:16.400392"], ["updated_at", "2019-09-12 04:09:16.400733"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.7ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 131.2ms Sent mail to leeanna_altenwerth@mayert.io (3.3ms) Date: Wed, 11 Sep 2019 23:09:16 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: leeanna_altenwerth@mayert.io Message-ID: <5d79c4ec82adb_1288a3fda2d42ffd045dc@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: leeanna_altenwerth@mayert.io provider: email redirect-url: http://lueilwitz.com/mike.weinat client-config: default

Hello leeanna_altenwerth@mayert.io!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 233ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (1.7ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jennifer_gibson@gaylord.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jennifer_gibson@gaylord.info"], ["encrypted_password", "$2a$04$HMcMtDaocv6G8Qr1QsFaK.RYCV73eh5eU1o/z9pp8RTp7W0F6/M6G"], ["confirmed_at", "2019-09-12 04:10:19.401979"], ["name", "Kerry Oki"], ["email", "jennifer_gibson@gaylord.info"], ["created_at", "2019-09-12 04:10:19.404094"], ["updated_at", "2019-09-12 04:10:19.404094"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:10:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"jennifer_gibson@gaylord.info\",\n redirectUrl: \"http://tremblayhauck.io/nelson.wolff\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "jennifer_gibson@gaylord.info"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "765194d5db1812003c208cc8d19cf519c212cd0a9343fd1cbf3b930ef2724ea9"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "765194d5db1812003c208cc8d19cf519c212cd0a9343fd1cbf3b930ef2724ea9"], ["reset_password_sent_at", "2019-09-12 04:10:19.512828"], ["updated_at", "2019-09-12 04:10:19.513147"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:15:46 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"bryon@blickcummings.org\"\n name: \"Margarita Kautzer\"\n password: \"2mXkHdDmZ4\"\n passwordConfirmation: \"2mXkHdDmZ4\"\n confirmSuccessUrl: \"http://green.name/glenn\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bryon@blickcummings.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bryon@blickcummings.org"], ["encrypted_password", "$2a$04$xs6NJBc761sNYgWl2eAPAeUG6PxUOysuZZJn2f0/FMeD3aXXllYNG"], ["confirmation_token", "gdXydMxUTsogisNuKa4C"], ["confirmation_sent_at", "2019-09-12 04:15:46.346794"], ["name", "Margarita Kautzer"], ["email", "bryon@blickcummings.org"], ["created_at", "2019-09-12 04:15:46.346658"], ["updated_at", "2019-09-12 04:15:46.346658"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/confirmation_instructions.html.erb (1.8ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 145.4ms Sent mail to bryon@blickcummings.org (4.8ms) Date: Wed, 11 Sep 2019 23:15:46 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: bryon@blickcummings.org Message-ID: <5d79c67279419_129923fe0e603200870586@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://green.name/glenn

Welcome bryon@blickcummings.org!

You can confirm your account email through the link below:

Confirm my account

Completed 200 OK in 179ms (Views: 0.2ms | ActiveRecord: 0.7ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "luci@terry.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "luci@terry.name"], ["encrypted_password", "$2a$04$Dvykh.5j4bx5pLfe7KGU6uxTErlGPli9bPcR0ROiV1dS2fyAnRSH6"], ["confirmed_at", "2019-09-12 04:19:10.908194"], ["name", "Freida Convict"], ["email", "luci@terry.name"], ["created_at", "2019-09-12 04:19:10.910133"], ["updated_at", "2019-09-12 04:19:10.910133"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:19:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"luci@terry.name\",\n redirectUrl: \"http://andersonbraun.biz/jona.carroll\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "luci@terry.name"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "603f8e5c36ccc36a98e980df4c843dc7bdaf4e592e25ef31a0be7fc83170ca57"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "603f8e5c36ccc36a98e980df4c843dc7bdaf4e592e25ef31a0be7fc83170ca57"], ["reset_password_sent_at", "2019-09-12 04:19:11.024482"], ["updated_at", "2019-09-12 04:19:11.024758"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.4ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 127.9ms Sent mail to luci@terry.name (3.6ms) Date: Wed, 11 Sep 2019 23:19:11 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: luci@terry.name Message-ID: <5d79c73f26137_12a153fedc3c2e020299c1@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: luci@terry.name provider: email redirect-url: http://andersonbraun.biz/jona.carroll client-config: default

Hello luci@terry.name!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 233ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "louetta@wildermanyost.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "louetta@wildermanyost.info"], ["encrypted_password", "$2a$04$bsV0Ignw1dohu2xhUcOsveF11eURNq4tfdxdC7OLb.IO.xtY2RqjS"], ["confirmed_at", "2019-09-12 04:23:31.651064"], ["name", "Milton Yermouth"], ["email", "louetta@wildermanyost.info"], ["created_at", "2019-09-12 04:23:31.654406"], ["updated_at", "2019-09-12 04:23:31.654406"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:23:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"louetta@wildermanyost.info\",\n redirectUrl: \"http://klockodaniel.net/hermelinda_lockman\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "louetta@wildermanyost.info"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f6aaf3aa9dc73064eabe9f1ce759a99a8506096f3860f1ec673c61509e3e30e9"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f6aaf3aa9dc73064eabe9f1ce759a99a8506096f3860f1ec673c61509e3e30e9"], ["reset_password_sent_at", "2019-09-12 04:23:31.779902"], ["updated_at", "2019-09-12 04:23:31.780178"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (2.5ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 139.2ms Sent mail to louetta@wildermanyost.info (5.5ms) Date: Wed, 11 Sep 2019 23:23:31 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: louetta@wildermanyost.info Message-ID: <5d79c843e191e_12ae73fe5ddc2ffd079544@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: louetta@wildermanyost.info provider: email redirect-url: http://klockodaniel.net/hermelinda_lockman client-config: default

Hello louetta@wildermanyost.info!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 246ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (1.1ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "garret.ankunding@lefflerwintheiser.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "garret.ankunding@lefflerwintheiser.co"], ["encrypted_password", "$2a$04$fl6FWMXMX9uNowm0ewPgp.N1/7JfJuov1VVwUeaH.XzinUmxqlmrK"], ["confirmed_at", "2019-09-12 04:25:55.247131"], ["name", "Chris Cross"], ["email", "garret.ankunding@lefflerwintheiser.co"], ["created_at", "2019-09-12 04:25:55.249404"], ["updated_at", "2019-09-12 04:25:55.249404"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:25:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"garret.ankunding@lefflerwintheiser.co\",\n redirectUrl: \"http://schimmel.org/ronda\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "garret.ankunding@lefflerwintheiser.co"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a1cc6df5a812d64a6b41987a99f06d25581f2c91a0ad778e62bc93a914bfed2a"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "a1cc6df5a812d64a6b41987a99f06d25581f2c91a0ad778e62bc93a914bfed2a"], ["reset_password_sent_at", "2019-09-12 04:25:55.368926"], ["updated_at", "2019-09-12 04:25:55.369448"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.8ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 138.2ms Sent mail to garret.ankunding@lefflerwintheiser.co (4.8ms) Date: Wed, 11 Sep 2019 23:25:55 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: garret.ankunding@lefflerwintheiser.co Message-ID: <5d79c8d37cea5_12b503fedc0c3201025289@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: garret.ankunding@lefflerwintheiser.co provider: email redirect-url: http://schimmel.org/ronda client-config: default

Hello garret.ankunding@lefflerwintheiser.co!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 240ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (1.1ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shelton@kreiger.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shelton@kreiger.com"], ["encrypted_password", "$2a$04$VFvPoG6pWxrib8EMZiNXEOXhGLw6WI9is5BjM7qxVYtZe7lxUXwmy"], ["confirmed_at", "2019-09-12 04:27:45.219292"], ["name", "Estelle Hertz"], ["email", "shelton@kreiger.com"], ["created_at", "2019-09-12 04:27:45.221620"], ["updated_at", "2019-09-12 04:27:45.221620"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:27:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"shelton@kreiger.com\",\n redirectUrl: \"http://cartwright.info/erick\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "shelton@kreiger.com"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "140c265b87d0f9562c9a54eb495bcb842532126ff75901163de25d396a768d32"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "140c265b87d0f9562c9a54eb495bcb842532126ff75901163de25d396a768d32"], ["reset_password_sent_at", "2019-09-12 04:27:45.348461"], ["updated_at", "2019-09-12 04:27:45.348733"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.8ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 134.2ms Sent mail to shelton@kreiger.com (4.9ms) Date: Wed, 11 Sep 2019 23:27:45 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: shelton@kreiger.com Message-ID: <5d79c94176e4c_12ba73fe684432010276a0@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: shelton@kreiger.com provider: email redirect-url: http://cartwright.info/erick client-config: default

Hello shelton@kreiger.com!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 241ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rolf@cormierstroman.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rolf@cormierstroman.com"], ["encrypted_password", "$2a$04$th7bwMfZLyO1CEMYKWSy2Om20g.upKvGI2NWvPR0/MEiORFCnDfiS"], ["confirmed_at", "2019-09-12 04:32:14.712709"], ["name", "Milton Yermouth"], ["email", "rolf@cormierstroman.com"], ["created_at", "2019-09-12 04:32:14.714849"], ["updated_at", "2019-09-12 04:32:14.714849"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:32:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"rolf@cormierstroman.com\",\n redirectUrl: \"http://schmelerhirthe.name/leonardo\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "rolf@cormierstroman.com"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cb852e1f680d7409dc3c535261ff8ce68a9c30087138c67722268d9949bc9153"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "cb852e1f680d7409dc3c535261ff8ce68a9c30087138c67722268d9949bc9153"], ["reset_password_sent_at", "2019-09-12 04:32:14.814819"], ["updated_at", "2019-09-12 04:32:14.815089"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.4ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 128.9ms Sent mail to rolf@cormierstroman.com (3.4ms) Date: Wed, 11 Sep 2019 23:32:14 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: rolf@cormierstroman.com Message-ID: <5d79ca4ee73d3_12c2e3fc439c3202062343@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: rolf@cormierstroman.com provider: email redirect-url: http://schmelerhirthe.name/leonardo client-config: default

Hello rolf@cormierstroman.com!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 221ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mellia@senger.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mellia@senger.co"], ["encrypted_password", "$2a$04$EKJ6rDAob3w9JuDsiG5RvORpCNydxqP0L1cANBys4e8rZNRgcDtcm"], ["confirmed_at", "2019-09-12 04:36:04.621819"], ["name", "Bill Loney"], ["email", "mellia@senger.co"], ["created_at", "2019-09-12 04:36:04.623704"], ["updated_at", "2019-09-12 04:36:04.623704"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:36:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"mellia@senger.co\",\n redirectUrl: \"http://herzog.name/jeanmarie.mcclure\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "mellia@senger.co"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "9158fe1204f82ad95548c4b0d36d525649cc591c51e5fd3d610995c8ce20a55d"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "9158fe1204f82ad95548c4b0d36d525649cc591c51e5fd3d610995c8ce20a55d"], ["reset_password_sent_at", "2019-09-12 04:36:04.732263"], ["updated_at", "2019-09-12 04:36:04.732543"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.3ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 116.8ms Sent mail to mellia@senger.co (3.3ms) Date: Wed, 11 Sep 2019 23:36:04 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: mellia@senger.co Message-ID: <5d79cb34d0211_12caf3ff32ac2bfd427f9@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: mellia@senger.co provider: email redirect-url: http://herzog.name/jeanmarie.mcclure client-config: default

Hello mellia@senger.co!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 215ms (Views: 0.2ms | ActiveRecord: 0.5ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bennie@murray.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bennie@murray.io"], ["encrypted_password", "$2a$04$WlZWse08t48MTGN5tSWj/.1jAaU4zSycWhHMH.B4r23fjnZm97Tny"], ["confirmed_at", "2019-09-12 04:36:45.479319"], ["name", "Mel Function"], ["email", "bennie@murray.io"], ["created_at", "2019-09-12 04:36:45.481302"], ["updated_at", "2019-09-12 04:36:45.481302"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:36:45 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"bennie@murray.io\",\n redirectUrl: \"http://farrell.io/reynaldo.ankunding\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "bennie@murray.io"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "935b91324ff7c5d76ac5358894c12c6f2eb3bd9a43dc3afdfd4557061966095f"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "935b91324ff7c5d76ac5358894c12c6f2eb3bd9a43dc3afdfd4557061966095f"], ["reset_password_sent_at", "2019-09-12 04:36:45.590067"], ["updated_at", "2019-09-12 04:36:45.590408"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (2.0ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 142.5ms Sent mail to bennie@murray.io (5.1ms) Date: Wed, 11 Sep 2019 23:36:45 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: bennie@murray.io Message-ID: <5d79cb5db413e_12d053fcb0701dfd0813bd@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: bennie@murray.io provider: email redirect-url: http://farrell.io/reynaldo.ankunding client-config: default

Hello bennie@murray.io!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 243ms (Views: 0.2ms | ActiveRecord: 0.5ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lizzette_legros@rosenbaum.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lizzette_legros@rosenbaum.org"], ["encrypted_password", "$2a$04$e2cv6Wy.wLoOgDhwbiMyWeE2UgMcNuTIl3PI2FsoaZIfTWcm4tz92"], ["confirmed_at", "2019-09-12 04:39:18.713669"], ["name", "Barry Shmelly"], ["email", "lizzette_legros@rosenbaum.org"], ["created_at", "2019-09-12 04:39:18.715628"], ["updated_at", "2019-09-12 04:39:18.715628"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-09-11 23:39:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"lizzette_legros@rosenbaum.org\",\n redirectUrl: \"http://macejkovic.com/earlene.brown\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "lizzette_legros@rosenbaum.org"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7b1a43ac074e3e7849891893599d13bfa2ad99632f7e13933da6ab60efd45bd7"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7b1a43ac074e3e7849891893599d13bfa2ad99632f7e13933da6ab60efd45bd7"], ["reset_password_sent_at", "2019-09-12 04:39:18.817362"], ["updated_at", "2019-09-12 04:39:18.817655"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/devise/mailer/reset_password_instructions.html.erb (1.9ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 132.9ms Sent mail to lizzette_legros@rosenbaum.org (3.3ms) Date: Wed, 11 Sep 2019 23:39:18 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: lizzette_legros@rosenbaum.org Message-ID: <5d79cbf6e8d3c_12d743fe71e8320085673e@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: lizzette_legros@rosenbaum.org provider: email redirect-url: http://macejkovic.com/earlene.brown client-config: default

Hello lizzette_legros@rosenbaum.org!

Someone has requested a link to change your password. You can do this through the link below.

Change my password

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

Completed 200 OK in 226ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.5ms) rollback transaction  (1.9ms) SELECT sqlite_version(*)  (0.7ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (1.4ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.6ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT sqlite_version(*)  (0.0ms) SELECT sqlite_version(*)  (0.1ms) DROP TABLE IF EXISTS "admins"  (2.1ms) CREATE TABLE "admins" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar DEFAULT 'email' NOT NULL, "uid" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "allow_password_change" boolean DEFAULT 0, "confirmation_token" varchar, "confirmed_at" datetime, "confirmation_sent_at" datetime, "unconfirmed_email" varchar, "email" varchar, "tokens" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (1.0ms) CREATE UNIQUE INDEX "index_admins_on_confirmation_token" ON "admins" ("confirmation_token")  (0.9ms) CREATE UNIQUE INDEX "index_admins_on_email" ON "admins" ("email")  (0.8ms) CREATE UNIQUE INDEX "index_admins_on_reset_password_token" ON "admins" ("reset_password_token")  (0.8ms) CREATE UNIQUE INDEX "index_admins_on_uid_and_provider" ON "admins" ("uid", "provider")  (0.1ms) DROP TABLE IF EXISTS "users"  (0.8ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar DEFAULT 'email' NOT NULL, "uid" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "allow_password_change" boolean DEFAULT 0, "remember_created_at" datetime, "confirmation_token" varchar, "confirmed_at" datetime, "confirmation_sent_at" datetime, "unconfirmed_email" varchar, "failed_attempts" integer DEFAULT 0 NOT NULL, "unlock_token" varchar, "locked_at" datetime, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "last_sign_in_ip" varchar, "current_sign_in_ip" varchar, "sign_in_count" integer, "name" varchar, "email" varchar, "tokens" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "auth_available" boolean DEFAULT 1 NOT NULL)  (0.9ms) CREATE UNIQUE INDEX "index_users_on_confirmation_token" ON "users" ("confirmation_token")  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.9ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.9ms) CREATE UNIQUE INDEX "index_users_on_uid_and_provider" ON "users" ("uid", "provider")  (0.8ms) CREATE UNIQUE INDEX "index_users_on_unlock_token" ON "users" ("unlock_token")  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (20190916012505)  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES (20190815114303), (20190824215150);   (0.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2019-10-13 18:26:15.481020"], ["updated_at", "2019-10-13 18:26:15.481020"]]  (0.6ms) commit transaction ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] ActiveRecord::InternalMetadata Load (0.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]  (0.0ms) begin transaction ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "57154208ee7495295e769c5f6bfd92938bc9f0c3"], ["created_at", "2019-10-13 18:26:15.483602"], ["updated_at", "2019-10-13 18:26:15.483602"]]  (0.5ms) commit transaction  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "effie_kovacek@sanford.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "effie_kovacek@sanford.io"], ["encrypted_password", "$2a$04$ClqfLj8VM6bxCvpqgOGG1uk8C0rAnLgVVADweqXHbDHiTKP/ymhWa"], ["confirmed_at", "2019-10-13 18:26:16.170747"], ["name", "Harrison Fire"], ["email", "effie_kovacek@sanford.io"], ["created_at", "2019-10-13 18:26:16.172037"], ["updated_at", "2019-10-13 18:26:16.172037"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"effie_kovacek@sanford.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "effie_kovacek@sanford.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Qehz2TN9Kf0flYu6iOCdHA\":{\"token\":\"$2a$10$/iorQM9ykxD7A0WZgx3ZQOrSFjRQ861JwrwBmCI1SPWUyGCRNkX0C\",\"expiry\":1572200776,\"updated_at\":\"2019-10-13 18:26:16 UTC\"}}"], ["updated_at", "2019-10-13 18:26:16.243529"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 18:26:16.246483"], ["last_sign_in_at", "2019-10-13 18:26:16.246483"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 18:26:16.246678"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 18371) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "johnna@heel.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "johnna@heel.net"], ["encrypted_password", "$2a$04$XnHeEoB.f9t0eTjbIl2kf.FET1vl0fG9KGYLLN/Q/K0O.7XuIdAYS"], ["confirmed_at", "2019-10-13 18:26:16.254003"], ["name", "Oren Jellow"], ["email", "johnna@heel.net"], ["created_at", "2019-10-13 18:26:16.254828"], ["updated_at", "2019-10-13 18:26:16.254828"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"johnna@heel.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "johnna@heel.net"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2042)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "abraham.gibson@brakus.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "abraham.gibson@brakus.org"], ["encrypted_password", "$2a$04$WXuE5UJzB8neEotA5Cn7I.qGexCRqPfDPtQA7VXQobl1ucdgCwf9m"], ["confirmation_token", "MRKWWeCX1SxzBhUaxKpX"], ["confirmation_sent_at", "2019-10-13 18:26:16.264292"], ["name", "Candy Baskett"], ["email", "abraham.gibson@brakus.org"], ["created_at", "2019-10-13 18:26:16.264215"], ["updated_at", "2019-10-13 18:26:16.264215"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"abraham.gibson@brakus.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "abraham.gibson@brakus.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1363)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "pete@okon.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "pete@okon.io"], ["encrypted_password", "$2a$04$1UhPcl0.NXeSLBYScxEXQufmrzIjF2eSqz9BNZsT4cab0KBFcudxq"], ["confirmed_at", "2019-10-13 18:26:16.270451"], ["locked_at", "2019-10-13 18:26:16.270461"], ["name", "Barry Cade"], ["email", "pete@okon.io"], ["created_at", "2019-10-13 18:26:16.271162"], ["updated_at", "2019-10-13 18:26:16.271162"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"pete@okon.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "pete@okon.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1381)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "quinton@koepp.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "quinton@koepp.co"], ["encrypted_password", "$2a$04$YbgG3Stn9jipZMOnHLXmH.EcrI07hoyzGHbLRl/Gi/7pVOu/u3kDC"], ["confirmed_at", "2019-10-13 18:26:16.277226"], ["name", "Val Crow"], ["email", "quinton@koepp.co"], ["created_at", "2019-10-13 18:26:16.277913"], ["updated_at", "2019-10-13 18:26:16.277913"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"quinton@koepp.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "quinton@koepp.co"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 1359)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "ida@ortiz.co"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "ida@ortiz.co"], ["encrypted_password", "$2a$04$RA4JHiWbadSXyujiav59Aea8VtfopMZYPqMgR4NW4vkOVfvfdttnS"], ["confirmed_at", "2019-10-13 18:26:16.295476"], ["email", "ida@ortiz.co"], ["created_at", "2019-10-13 18:26:16.296815"], ["updated_at", "2019-10-13 18:26:16.296815"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"ida@ortiz.co\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "ida@ortiz.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"faKCGjrEHd4jKvCdXHZqxA\":{\"token\":\"$2a$10$xCQBOQ/fNwnMjV0Uk6/TL.F2zBkFCcXtPaE.IRIdD9CZ3vxu/0Ozy\",\"expiry\":1572200776,\"updated_at\":\"2019-10-13 18:26:16 UTC\"}}"], ["updated_at", "2019-10-13 18:26:16.352267"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2401)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chelsey@gerlach.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "chelsey@gerlach.net"], ["encrypted_password", "$2a$04$.vakk0UtYbxZu/CKwP/AEu5QQW4QOyCRbSUERif7O0/2YeU/EQu22"], ["confirmed_at", "2019-10-13 18:26:16.359136"], ["name", "Claire Annette"], ["email", "chelsey@gerlach.net"], ["created_at", "2019-10-13 18:26:16.360335"], ["updated_at", "2019-10-13 18:26:16.360335"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Bf7iCsBEhzW8ChkryQoSLw\":{\"token\":\"$2a$10$MA1rxsvUke0BiIWcHpERYu1ta60TBD0YtVw9.1i7zdjGGgTJthXpe\",\"expiry\":1572200776,\"updated_at\":\"2019-10-13 18:26:16 UTC\"}}"], ["updated_at", "2019-10-13 18:26:16.409013"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "chelsey@gerlach.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 18:26:16.456974"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1896) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "katerine@gulgowskilangosh.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "katerine@gulgowskilangosh.co"], ["encrypted_password", "$2a$04$2uxJ99ncB5OXFR3SYECQi.uhyMeI0ZT4iHNfpcygIk8WOw2IunPyK"], ["confirmed_at", "2019-10-13 18:26:16.467177"], ["name", "Hope Ferterbest"], ["email", "katerine@gulgowskilangosh.co"], ["created_at", "2019-10-13 18:26:16.468156"], ["updated_at", "2019-10-13 18:26:16.468156"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "kevin@sanford.com"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "kevin@sanford.com"], ["encrypted_password", "$2a$04$aOsqbLWVAB0Uj57GPYI.q.5TRdvRsXuQAcQ53A9Mt1mgdKFmwIxBC"], ["confirmed_at", "2019-10-13 18:26:16.473076"], ["email", "kevin@sanford.com"], ["created_at", "2019-10-13 18:26:16.474263"], ["updated_at", "2019-10-13 18:26:16.474263"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"lQ2ltHltB0Uh0YUDE2CBmA\":{\"token\":\"$2a$10$gBjMvnra5z2u.K2wqbM5e.2uIaEvoTsT7a17lo34CD.lJFAiMGPY.\",\"expiry\":1572200776,\"updated_at\":\"2019-10-13 18:26:16 UTC\"}}"], ["updated_at", "2019-10-13 18:26:16.525637"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "kevin@sanford.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 18:26:16.574319"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 1825) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "je@douglas.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "je@douglas.io"], ["encrypted_password", "$2a$04$5Xzu4.OiijZUAjKg8bwNxe0MHUw1IxSjFpmk9FFzp/RENszI19J4."], ["confirmed_at", "2019-10-13 18:26:16.581757"], ["name", "Candy Barr"], ["email", "je@douglas.io"], ["created_at", "2019-10-13 18:26:16.582737"], ["updated_at", "2019-10-13 18:26:16.582737"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"je@douglas.io\",\n redirectUrl: \"http://reichel.net/chana\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "je@douglas.io"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2d13b8ce4d965ee1c0ff170c6ddd6646955ad4755e62f6dd0a68c447e688cfaa"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "2d13b8ce4d965ee1c0ff170c6ddd6646955ad4755e62f6dd0a68c447e688cfaa"], ["reset_password_sent_at", "2019-10-13 18:26:16.665021"], ["updated_at", "2019-10-13 18:26:16.665178"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.5ms | Allocations: 1281) Devise::Mailer#reset_password_instructions: processed outbound mail in 119.1ms Delivered mail 5da36c48c046c_c8553fea4502ffd4676eb@Marios-MacBook-Pro.local.mail (4.0ms) Date: Sun, 13 Oct 2019 13:26:16 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: je@douglas.io Message-ID: <5da36c48c046c_c8553fea4502ffd4676eb@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: je@douglas.io provider: email redirect-url: http://reichel.net/chana client-config: default

Hello je@douglas.io!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 205ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 67723) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Freichel.net%2Fchana&variables%5Btoken%5D=JXxUxAE7CKjJH1iuTvzv" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://reichel.net/chana", "token"=>"JXxUxAE7CKjJH1iuTvzv"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2d13b8ce4d965ee1c0ff170c6ddd6646955ad4755e62f6dd0a68c447e688cfaa"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"cykImWg43jGkRZ63reJw0A\":{\"token\":\"$2a$10$T3SOvDm90tzhUfaqdtctTOccLlVY8/AgXmtgz/yolcxUMN7yNXWkW\",\"expiry\":1572200776}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 18:26:16.834623"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://reichel.net/chana?access-token=x_1t4cJdqsEylryC_jAMJA&client=cykImWg43jGkRZ63reJw0A&client_id=cykImWg43jGkRZ63reJw0A&config=&expiry=1572200776&reset_password=true&token=x_1t4cJdqsEylryC_jAMJA&uid=je%40douglas.io Completed 302 Found in 44ms (ActiveRecord: 0.2ms | Allocations: 2145) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://leuschke.net/shaunte.trantow\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"tisa@gutmann.name\"\n name: \"Dr. Walker Tromp\"\n password: \"UqA97oUaQ6v9Y\"\n passwordConfirmation: \"UqA97oUaQ6v9Y\"\n confirmSuccessUrl: \"http://wolff.com/noelle\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tisa@gutmann.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tisa@gutmann.name"], ["encrypted_password", "$2a$04$zHYpZRxYKGfbYIhYFIaAIuW.a4U7.YoKZuSENNBZ/0Eb3CrtykALq"], ["confirmation_token", "awoxk4pf-27hdqhYD7Mw"], ["confirmation_sent_at", "2019-10-13 18:26:16.846303"], ["name", "Dr. Walker Tromp"], ["email", "tisa@gutmann.name"], ["created_at", "2019-10-13 18:26:16.846243"], ["updated_at", "2019-10-13 18:26:16.846243"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.6ms | Allocations: 583) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.7ms Delivered mail 5da36c48cf595_c8553fea4502ffd46773e@Marios-MacBook-Pro.local.mail (1.0ms) Date: Sun, 13 Oct 2019 13:26:16 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: tisa@gutmann.name Message-ID: <5da36c48cf595_c8553fea4502ffd46773e@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://wolff.com/noelle

Welcome tisa@gutmann.name!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 5462)  (0.0ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fwolff.com%2Fnoelle&variables%5Btoken%5D=awoxk4pf-27hdqhYD7Mw" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://wolff.com/noelle", "token"=>"awoxk4pf-27hdqhYD7Mw"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "awoxk4pf-27hdqhYD7Mw"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 18:26:16.855960"], ["updated_at", "2019-10-13 18:26:16.856193"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://wolff.com/noelle?account_confirmation_success=true Completed 302 Found in 6ms (ActiveRecord: 0.4ms | Allocations: 2178) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.6ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Elden Gerhold\"\n password: \"VuAoNwHg4E\"\n passwordConfirmation: \"VuAoNwHg4E\"\n confirmSuccessUrl: \"http://heel.info/delicia_satterfield\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.2ms | Allocations: 2710)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "adrianna@gleason.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "adrianna@gleason.name"], ["encrypted_password", "$2a$04$G0qlY5eihWwW7usKYqX6C.oCK32UCA0Nbj/Hl8bbmJXqI0Mmbevpe"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 18:26:16.882384"], ["name", "Ali Gator"], ["email", "adrianna@gleason.name"], ["created_at", "2019-10-13 18:26:16.883452"], ["updated_at", "2019-10-13 18:26:16.883452"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"zAbVRGwCHJMGBQDLpzmmfA\":{\"token\":\"$2a$10$d5o1DBqu.vGU0MTMQXrdVO5qLLlJFDSHC9SQ6zHg3udMy1Nf9KjXC\",\"expiry\":1572200776,\"updated_at\":\"2019-10-13 18:26:16 UTC\"}}"], ["updated_at", "2019-10-13 18:26:16.940122"], ["id", 1]]  (0.5ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "adrianna@gleason.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$YGFSpkLtfX7Iro.ym.l8JOiXuNftjiffVRmZwn/5rmN5zqqhJHdMa"], ["updated_at", "2019-10-13 18:26:16.992978"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.4ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 18:26:16.994393"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.7ms | Allocations: 2882) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "blaine_skiles@fadel.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "blaine_skiles@fadel.org"], ["encrypted_password", "$2a$04$bluHyZue7WT4L48pADdumO7ZMFYMiYYs4Rp7M4YQ0qC7S02N6ExIu"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 18:26:17.001961"], ["name", "Russell Ingleaves"], ["email", "blaine_skiles@fadel.org"], ["created_at", "2019-10-13 18:26:17.003149"], ["updated_at", "2019-10-13 18:26:17.003149"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KUYmnMi6qrc2tDDiIQp-gQ\":{\"token\":\"$2a$10$/AZ862nVF6nlQ1JCg6zFpOlj.2U0BEH2oVF2NoTH/.plajNPS9EyO\",\"expiry\":1572200777,\"updated_at\":\"2019-10-13 18:26:17 UTC\"}}"], ["updated_at", "2019-10-13 18:26:17.050705"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "blaine_skiles@fadel.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$3MzMiXZVI.NvwjkrtIrXb.YRSUbBY1XSXsChza65ZsE3NkCRHQImS"], ["updated_at", "2019-10-13 18:26:17.105783"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 18:26:17.107153"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "adolfo.schmitt@ryanstamm.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "adolfo.schmitt@ryanstamm.io"], ["encrypted_password", "$2a$04$/EuWHj13WEcRS8PPoVafYupj1xb6FYbMKzV9hhFCKHLLLtBVeQx3u"], ["confirmed_at", "2019-10-13 18:26:17.117706"], ["name", "Lina Ginster"], ["email", "adolfo.schmitt@ryanstamm.io"], ["created_at", "2019-10-13 18:26:17.119306"], ["updated_at", "2019-10-13 18:26:17.119306"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yrgAaVQVz-kJsXxIENO69Q\":{\"token\":\"$2a$10$NcKcOir48mrUjouPImuaeOlmmqVrTz5LD7CZi3BmbsgbRm0q9ltGK\",\"expiry\":1572200777,\"updated_at\":\"2019-10-13 18:26:17 UTC\"}}"], ["updated_at", "2019-10-13 18:26:17.168765"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "adolfo.schmitt@ryanstamm.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2360) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "paige@volkman.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "paige@volkman.biz"], ["encrypted_password", "$2a$04$VPTJSsRGEtg2lTxakZr3iuYyiu6Vl3Mjs1JArMmArtBmwva60M6vm"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 18:26:17.225922"], ["name", "Bill Dollar"], ["email", "paige@volkman.biz"], ["created_at", "2019-10-13 18:26:17.226991"], ["updated_at", "2019-10-13 18:26:17.226991"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"HMM4TnRGl7SuBbg26-xNvQ\":{\"token\":\"$2a$10$K.Xq26HjTOwHmLHGCVfAHeuzH1M7PduTXkao4pFd8SPRQ1zKnQT9y\",\"expiry\":1572200777,\"updated_at\":\"2019-10-13 18:26:17 UTC\"}}"], ["updated_at", "2019-10-13 18:26:17.273558"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "paige@volkman.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$famfPtUqjVDD5BmDI2X7JuxB3W77p.42wr4qeVGxkzMH5DtPLB3Tu"], ["updated_at", "2019-10-13 18:26:17.323231"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 18:26:17.324355"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "laverna@erdmangleichner.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "laverna@erdmangleichner.name"], ["encrypted_password", "$2a$04$1eK3JEgyGXI5DjB1TfhvV.mrw87gcdRBQ3KC5LWTUiSNR0jPusluu"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 18:26:17.331756"], ["name", "Rusty Fossat"], ["email", "laverna@erdmangleichner.name"], ["created_at", "2019-10-13 18:26:17.333097"], ["updated_at", "2019-10-13 18:26:17.333097"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OFiuJTbBu8pOM1NeBe2U3A\":{\"token\":\"$2a$10$FYJmyLqPPCBF69Q5FYnhzeAU0VBsH132IRRf/ffYB9xXAO963ECa6\",\"expiry\":1572200777,\"updated_at\":\"2019-10-13 18:26:17 UTC\"}}"], ["updated_at", "2019-10-13 18:26:17.381838"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "laverna@erdmangleichner.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Iql20LavFVUheyQq5TW5LebNo7WEr53LRGQDjQeiCs1ApA0IJq/Xi"], ["updated_at", "2019-10-13 18:26:17.431551"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 18:26:17.432693"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sparkle_daniel@huelsondricka.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sparkle_daniel@huelsondricka.name"], ["encrypted_password", "$2a$04$xcjkgnJ4R3sXYyOGSxRlter4prbUK1OMRdXSIABqqUt/c5vF25rYu"], ["confirmed_at", "2019-10-13 18:26:17.438876"], ["name", "Diane Toluvia"], ["email", "sparkle_daniel@huelsondricka.name"], ["created_at", "2019-10-13 18:26:17.439628"], ["updated_at", "2019-10-13 18:26:17.439628"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"AHQFBzXtAGLBwepbK1Lwiw\":{\"token\":\"$2a$10$PXY5JIok7mW1wAuG9X8qtegYruNyKaTfISyh1vjYgg/f/RXqxsFn2\",\"expiry\":1572200777,\"updated_at\":\"2019-10-13 18:26:17 UTC\"}}"], ["updated_at", "2019-10-13 18:26:17.485193"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sparkle_daniel@huelsondricka.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$WQFaXNE/dneJ7oxVaecqtu/TObbRRfkgV3pLTGRRvnW1sPTDgSSn6"], ["updated_at", "2019-10-13 18:26:17.536121"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2643) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "giovanna@westswift.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "giovanna@westswift.co"], ["encrypted_password", "$2a$04$YLrodUKTYLAFhTqsipc7veBErtJuooyj4Flc39FBZpKd3HFM3/Ig6"], ["confirmed_at", "2019-10-13 18:26:17.543555"], ["name", "Noah Lott"], ["email", "giovanna@westswift.co"], ["created_at", "2019-10-13 18:26:17.544490"], ["updated_at", "2019-10-13 18:26:17.544490"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "maxima@bodemcdermott.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "maxima@bodemcdermott.org"], ["encrypted_password", "$2a$04$qeWbMyRupuIP73KDYW/sbuA.ktSvnBuMYiGSewADT7gAufv352k6m"], ["confirmed_at", "2019-10-13 18:26:17.551752"], ["name", "Lily Pond"], ["email", "maxima@bodemcdermott.org"], ["created_at", "2019-10-13 18:26:17.552531"], ["updated_at", "2019-10-13 18:26:17.552531"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a50422b627e3cafc9a637b4cd7ebd124f9923ca1c4b2073efd0e5c3c62a737e5"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "a50422b627e3cafc9a637b4cd7ebd124f9923ca1c4b2073efd0e5c3c62a737e5"], ["reset_password_sent_at", "2019-10-13 18:26:17.553878"], ["updated_at", "2019-10-13 18:26:17.553978"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22j2_zxyfeCkPfGxodZc67%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 13:26:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"j2_zxyfeCkPfGxodZc67\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a50422b627e3cafc9a637b4cd7ebd124f9923ca1c4b2073efd0e5c3c62a737e5"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KXmPu9SWobCqIcRyne3WuA\":{\"token\":\"$2a$10$Q8MQitsnUan9dleWjvidKu1Lf/Tzms8P7PM6p8as6/zWK7KJGRK..\",\"expiry\":1572200777}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 18:26:17.604945"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KXmPu9SWobCqIcRyne3WuA\":{\"token\":\"$2a$10$Q8MQitsnUan9dleWjvidKu1Lf/Tzms8P7PM6p8as6/zWK7KJGRK..\",\"expiry\":1572200777},\"xW_XpjgRFwQIGmBmomnpQw\":{\"token\":\"$2a$10$UqwkMNR.CafltjsMCPhebuGD9vrtO71vNyBGfh3wuCTMKlHYLUlFe\",\"expiry\":1572200777,\"updated_at\":\"2019-10-13 18:26:17 UTC\"}}"], ["updated_at", "2019-10-13 18:26:17.651247"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 96ms (Views: 0.3ms | ActiveRecord: 0.4ms | Allocations: 2656)  (0.5ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elbert@erdman.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "elbert@erdman.co"], ["encrypted_password", "$2a$04$EzDsxJVaWvsFCzHCsIgWYepY52Z60DlVvMaQQDZLlOo/m1TzD5IM2"], ["confirmed_at", "2019-10-13 18:26:17.657674"], ["name", "Evan Keel"], ["email", "elbert@erdman.co"], ["created_at", "2019-10-13 18:26:17.658730"], ["updated_at", "2019-10-13 18:26:17.658730"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f547ec9787b78ec29f9c44da594f722d64653f40b6ed9c48babc41ed77d476fd"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f547ec9787b78ec29f9c44da594f722d64653f40b6ed9c48babc41ed77d476fd"], ["reset_password_sent_at", "2019-10-13 18:26:17.660416"], ["updated_at", "2019-10-13 18:26:17.660511"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22Lg8LMMtXoExhtBapemC1%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 13:26:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"Lg8LMMtXoExhtBapemC1\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f547ec9787b78ec29f9c44da594f722d64653f40b6ed9c48babc41ed77d476fd"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EVvJeMN0K4r50LVd3l2Z3w\":{\"token\":\"$2a$10$AVJWQSSLkBmUwHL2wbHNu.ys/Oc5UcH/.DMrKUTe15Mn7w4eWcsIu\",\"expiry\":1572200777}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 18:26:17.716569"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=qfFh2u0TeoaFPV2f10efWQ&client=EVvJeMN0K4r50LVd3l2Z3w&client_id=EVvJeMN0K4r50LVd3l2Z3w&config=&expiry=1572200777&reset_password=true&token=qfFh2u0TeoaFPV2f10efWQ&uid=elbert%40erdman.co Completed 302 Found in 54ms (ActiveRecord: 0.3ms | Allocations: 1916) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tanja@kunzebins.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tanja@kunzebins.co"], ["encrypted_password", "$2a$04$fcqdOe7BCF.7ckGEa06wqeKMwsj1odTy7I3hQ5lQYbTe8NE9Cal6."], ["confirmed_at", "2019-10-13 08:26:17"], ["name", "Art Painter"], ["email", "tanja@kunzebins.co"], ["created_at", "2019-10-13 08:26:17"], ["updated_at", "2019-10-13 08:26:17"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1d410a0959b3395b3c25ed6825b83dbda8d3dcb07109f41fe072de0cdd363840"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "1d410a0959b3395b3c25ed6825b83dbda8d3dcb07109f41fe072de0cdd363840"], ["reset_password_sent_at", "2019-10-13 08:26:17"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22ya2nimdc9PU9spUJihNt%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 13:26:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"ya2nimdc9PU9spUJihNt\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1d410a0959b3395b3c25ed6825b83dbda8d3dcb07109f41fe072de0cdd363840"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1269)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "annita@blandaherman.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "annita@blandaherman.io"], ["encrypted_password", "$2a$04$4Xva/T8L3V0S7ewYLYAV4eJh/rNS8EmakE.FoJjkiOA.nQsHyEkMS"], ["confirmed_at", "2019-10-13 18:26:17.755742"], ["name", "Candy Baskett"], ["email", "annita@blandaherman.io"], ["created_at", "2019-10-13 18:26:17.756586"], ["updated_at", "2019-10-13 18:26:17.756586"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d4e447f63fa54662f11bc6301bbe1456b96abb16282085b4a84e90c543145b3a"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "d4e447f63fa54662f11bc6301bbe1456b96abb16282085b4a84e90c543145b3a"], ["reset_password_sent_at", "2019-10-13 18:26:17.758005"], ["updated_at", "2019-10-13 18:26:17.758119"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%2226q8Az4et2Qo2Ri7ydVxinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 13:26:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"26q8Az4et2Qo2Ri7ydVxinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "247ef1d438261b0f6e116a3c4e2e0ddac1c063c688db8048b7c5b4a3dfb1ff75"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "scott@hermiston.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "scott@hermiston.org"], ["encrypted_password", "$2a$04$pWagWMj4B0OWZlH0P6nReu4eSM/jzrWaSBlQ5Lt8pqXfGOVuH2kOu"], ["confirmation_token", "sFYGP8F1sFox8zhkzY-d"], ["confirmation_sent_at", "2019-10-13 18:26:17.765969"], ["name", "Sid Down"], ["email", "scott@hermiston.org"], ["created_at", "2019-10-13 18:26:17.765875"], ["updated_at", "2019-10-13 18:26:17.765875"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.5ms | Allocations: 408) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.5ms Delivered mail 5da36c49bbdbb_c8553fea4502ffd4678c1@Marios-MacBook-Pro.local.mail (1.3ms) Date: Sun, 13 Oct 2019 13:26:17 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: scott@hermiston.org Message-ID: <5da36c49bbdbb_c8553fea4502ffd4678c1@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome scott@hermiston.org!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22sFYGP8F1sFox8zhkzY-d%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Freilly.name%2Fcedric%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 13:26:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"sFYGP8F1sFox8zhkzY-d\"\n redirectUrl: \"http://reilly.name/cedric\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "sFYGP8F1sFox8zhkzY-d"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 18:26:17.774097"], ["updated_at", "2019-10-13 18:26:17.774328"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://reilly.name/cedric?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms | Allocations: 1790) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sal_pouros@blandamueller.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sal_pouros@blandamueller.net"], ["encrypted_password", "$2a$04$9uIkf0N9zb5AlcPg0joNMuwJ7QjQCPGCFsp3DZD8xObmmTow0M4YC"], ["confirmation_token", "ayA6Q8KRpFHy_-qMXE2U"], ["confirmation_sent_at", "2019-10-13 18:26:17.780906"], ["name", "Jimmy DeLocke"], ["email", "sal_pouros@blandamueller.net"], ["created_at", "2019-10-13 18:26:17.780798"], ["updated_at", "2019-10-13 18:26:17.780798"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22ayA6Q8KRpFHy_-qMXE2U-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Flittel.info%2Fclaudio_parisian%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 13:26:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"ayA6Q8KRpFHy_-qMXE2U-invalid\"\n redirectUrl: \"http://littel.info/claudio_parisian\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "ayA6Q8KRpFHy_-qMXE2U-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "da6e08369d8ddc137759b5e1f684d26a6c4d6f04d052361a749f8132e69b5bfc"], ["LIMIT", 1]] Completed 200 OK in 88ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2009) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "abram.stracke@kulas.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "abram.stracke@kulas.net"], ["encrypted_password", "$2a$04$IgGLVQgMr5/DiUeAb.P5U.b9HlH3.4yFvSTf/Qpv3FBx2vQi3Fn1G"], ["confirmed_at", "2019-10-13 18:26:17.875625"], ["name", "Justin Tune"], ["email", "abram.stracke@kulas.net"], ["created_at", "2019-10-13 18:26:17.876333"], ["updated_at", "2019-10-13 18:26:17.876333"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"AiA-kqx9ZJio8xdPN2Qz4w\":{\"token\":\"$2a$10$DdQxFYDOZNr.eROuxR3a3ubauEhHhiN3dArAw5SZtp1/o3iu5QZPa\",\"expiry\":1572200777,\"updated_at\":\"2019-10-13 18:26:17 UTC\"}}"], ["updated_at", "2019-10-13 18:26:17.924701"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 13:26:17 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "abram.stracke@kulas.net"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 9655)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deshawn_daniel@mcclureparker.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "deshawn_daniel@mcclureparker.com"], ["encrypted_password", "$2a$04$npLflDXTaHe0ieHg6JzpJu8RuC5MkyxAl3Wr.L6hWoQhAblna2QmO"], ["confirmed_at", "2019-10-13 18:26:17.983258"], ["name", "Justin Tune"], ["email", "deshawn_daniel@mcclureparker.com"], ["created_at", "2019-10-13 18:26:17.984107"], ["updated_at", "2019-10-13 18:26:17.984107"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 13:26:17 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.2ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "catina.heidenreich@lind.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "catina.heidenreich@lind.org"], ["encrypted_password", "$2a$04$pndSWUM0d7XpGTyKZuRCu.mrp15O.MURJqXlpy6fU38LmDX1VYJYq"], ["confirmed_at", "2019-10-13 18:26:31.668728"], ["name", "Rhoda Booke"], ["email", "catina.heidenreich@lind.org"], ["created_at", "2019-10-13 18:26:31.669984"], ["updated_at", "2019-10-13 18:26:31.669984"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"catina.heidenreich@lind.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "catina.heidenreich@lind.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"e0MSXjRIBAkZEAc6VkjF6g\":{\"token\":\"$2a$10$IsLZndjIxyYWv9ehHQw7u.Su.//mjXx7HfynHuCrBK.khnU9rL/Lq\",\"expiry\":1572200791,\"updated_at\":\"2019-10-13 18:26:31 UTC\"}}"], ["updated_at", "2019-10-13 18:26:31.733485"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 18:26:31.736302"], ["last_sign_in_at", "2019-10-13 18:26:31.736302"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 18:26:31.736502"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 18371) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rodrigo@barrowsbeer.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rodrigo@barrowsbeer.io"], ["encrypted_password", "$2a$04$goPqfJreOKRK6Xg3ZTgjQu5MJbh4iSouxsdL1vPGIflwwkocPbkdu"], ["confirmed_at", "2019-10-13 18:26:31.744798"], ["name", "Robin Banks"], ["email", "rodrigo@barrowsbeer.io"], ["created_at", "2019-10-13 18:26:31.745560"], ["updated_at", "2019-10-13 18:26:31.745560"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rodrigo@barrowsbeer.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rodrigo@barrowsbeer.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2042)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bryce@schowalter.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bryce@schowalter.org"], ["encrypted_password", "$2a$04$RG.V3j0vyDuQM3ekg1Bah.UwkiDOGtSlMFHKF/uQGI1hijKy8klaC"], ["confirmation_token", "FYzEyyzZxyck15zHu7Mo"], ["confirmation_sent_at", "2019-10-13 18:26:31.757111"], ["name", "Jane Linkfence"], ["email", "bryce@schowalter.org"], ["created_at", "2019-10-13 18:26:31.757024"], ["updated_at", "2019-10-13 18:26:31.757024"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"bryce@schowalter.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bryce@schowalter.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1362)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tyson_labadie@murazik.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tyson_labadie@murazik.org"], ["encrypted_password", "$2a$04$4NlpZzZtn2W.kEFmFB2ZXutp3b8nOZUubma6wKf9wHgwxYzzrEOE6"], ["confirmed_at", "2019-10-13 18:26:31.764285"], ["locked_at", "2019-10-13 18:26:31.764324"], ["name", "Billy Rubin"], ["email", "tyson_labadie@murazik.org"], ["created_at", "2019-10-13 18:26:31.766432"], ["updated_at", "2019-10-13 18:26:31.766432"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tyson_labadie@murazik.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tyson_labadie@murazik.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lawanna@weber.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lawanna@weber.name"], ["encrypted_password", "$2a$04$Zz1sT899ZgPKCn42BDN1U.49RtqhIMxeURCVhlCFS7nzVsMZXZb5K"], ["confirmed_at", "2019-10-13 18:26:31.775934"], ["name", "Marco DeStinkshun"], ["email", "lawanna@weber.name"], ["created_at", "2019-10-13 18:26:31.777285"], ["updated_at", "2019-10-13 18:26:31.777285"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lawanna@weber.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lawanna@weber.name"], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 1359)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "jarvis.hane@lubowitzkonopelski.io"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jarvis.hane@lubowitzkonopelski.io"], ["encrypted_password", "$2a$04$b19Ypuh.tfBpAaFVNelLoOs2dwEPww5O85.0WYffs879wXCHPHlGm"], ["confirmed_at", "2019-10-13 18:26:31.800188"], ["email", "jarvis.hane@lubowitzkonopelski.io"], ["created_at", "2019-10-13 18:26:31.801982"], ["updated_at", "2019-10-13 18:26:31.801982"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"jarvis.hane@lubowitzkonopelski.io\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "jarvis.hane@lubowitzkonopelski.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"dF9gV0B93lfgMH0VA3c7Ng\":{\"token\":\"$2a$10$jmcX.2zUMFa/zzFf41t8uOp/j0F/MqeQmqFDL/hh.g0JVL/jlxv7K\",\"expiry\":1572200791,\"updated_at\":\"2019-10-13 18:26:31 UTC\"}}"], ["updated_at", "2019-10-13 18:26:31.862955"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2404)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "georgianna.heel@daugherty.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "georgianna.heel@daugherty.biz"], ["encrypted_password", "$2a$04$oHsmezubdhvyE4cxlzHTNeF5PftfV7eTb1Z.OfemKd0T4c1t6sDmm"], ["confirmed_at", "2019-10-13 18:26:31.868663"], ["name", "Jade Stone"], ["email", "georgianna.heel@daugherty.biz"], ["created_at", "2019-10-13 18:26:31.869614"], ["updated_at", "2019-10-13 18:26:31.869614"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BGrrlXeqAxYAuFmFDq-4oQ\":{\"token\":\"$2a$10$xYH8m7hPyZrWRclMAqyY/.htjrxmZD.axSJihgT95n8.Ca9zzMpUq\",\"expiry\":1572200791,\"updated_at\":\"2019-10-13 18:26:31 UTC\"}}"], ["updated_at", "2019-10-13 18:26:31.919831"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "georgianna.heel@daugherty.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 18:26:31.967927"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1898) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "samuel_davis@veum.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "samuel_davis@veum.info"], ["encrypted_password", "$2a$04$mDAbA60wfBZbN0jqUd8B1udQqk.Xz6O.cNlryOzXIu69MlQS5Y8cq"], ["confirmed_at", "2019-10-13 18:26:31.975034"], ["name", "Marcus Absent"], ["email", "samuel_davis@veum.info"], ["created_at", "2019-10-13 18:26:31.975797"], ["updated_at", "2019-10-13 18:26:31.975797"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "gavin_mohr@parisian.com"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "gavin_mohr@parisian.com"], ["encrypted_password", "$2a$04$BUg4vUl8Ck/kJjvBWH5nTex.lmvJEfWkp1fF9JnSnjPsBX6cHISOC"], ["confirmed_at", "2019-10-13 18:26:31.979698"], ["email", "gavin_mohr@parisian.com"], ["created_at", "2019-10-13 18:26:31.980552"], ["updated_at", "2019-10-13 18:26:31.980552"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"LY13eOC2t9-XcKNcZUKnSA\":{\"token\":\"$2a$10$nbUfL7ZvhwekXz6RChwxeeeNGcJ1jKnOS8pV0vwtHeRdZj./qzZoS\",\"expiry\":1572200792,\"updated_at\":\"2019-10-13 18:26:31 UTC\"}}"], ["updated_at", "2019-10-13 18:26:32.028581"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "gavin_mohr@parisian.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 18:26:32.078568"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1825) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cari@corwin.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cari@corwin.info"], ["encrypted_password", "$2a$04$LL59dWF2BcGV.ayjWx9Jc.SN2II9kpab0MhOEKzYCJsh9d3nWr.gi"], ["confirmed_at", "2019-10-13 18:26:32.085541"], ["name", "Ford Parker"], ["email", "cari@corwin.info"], ["created_at", "2019-10-13 18:26:32.086368"], ["updated_at", "2019-10-13 18:26:32.086368"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"cari@corwin.info\",\n redirectUrl: \"http://heidenreich.name/lynetta\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "cari@corwin.info"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "66eec18a0e7378584a234eb9431943541e06d63a13cb70a049eef3a48551b5ce"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "66eec18a0e7378584a234eb9431943541e06d63a13cb70a049eef3a48551b5ce"], ["reset_password_sent_at", "2019-10-13 18:26:32.167132"], ["updated_at", "2019-10-13 18:26:32.167295"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.5ms | Allocations: 1281) Devise::Mailer#reset_password_instructions: processed outbound mail in 120.0ms Delivered mail 5da36c5846e3d_c8b03fc65f832010482be@Marios-MacBook-Pro.local.mail (4.0ms) Date: Sun, 13 Oct 2019 13:26:32 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: cari@corwin.info Message-ID: <5da36c5846e3d_c8b03fc65f832010482be@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: cari@corwin.info provider: email redirect-url: http://heidenreich.name/lynetta client-config: default

Hello cari@corwin.info!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 205ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 67724) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fheidenreich.name%2Flynetta&variables%5Btoken%5D=iPAjdnxNqp4XF9oq7MXe" for 127.0.0.1 at 2019-10-13 13:26:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://heidenreich.name/lynetta", "token"=>"iPAjdnxNqp4XF9oq7MXe"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "66eec18a0e7378584a234eb9431943541e06d63a13cb70a049eef3a48551b5ce"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"S9KquIoQSE73xHb2LOoZAg\":{\"token\":\"$2a$10$eLmGM5ybdGpbQ5eQlrIyeuiD.OJz7V8HMUGzHoUMGPIDYLNhq37fa\",\"expiry\":1572200792}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 18:26:32.338129"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://heidenreich.name/lynetta?access-token=fCqjNioPU743PcO7lTXfCQ&client=S9KquIoQSE73xHb2LOoZAg&client_id=S9KquIoQSE73xHb2LOoZAg&config=&expiry=1572200792&reset_password=true&token=fCqjNioPU743PcO7lTXfCQ&uid=cari%40corwin.info Completed 302 Found in 45ms (ActiveRecord: 0.2ms | Allocations: 2145) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://frami.com/tyrone\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"randy@von.net\"\n name: \"Letty Abbott\"\n password: \"84O4o9VtZyYeWjA\"\n passwordConfirmation: \"84O4o9VtZyYeWjA\"\n confirmSuccessUrl: \"http://oconnellconsidine.net/sari\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "randy@von.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "randy@von.net"], ["encrypted_password", "$2a$04$iYP/7aK3YuicD1z9Sa6IdOFP16yb.QHHw5OreikZXszJ2BUYJ7laS"], ["confirmation_token", "ZaYTRgLzAt1RopqRxfNf"], ["confirmation_sent_at", "2019-10-13 18:26:32.353999"], ["name", "Letty Abbott"], ["email", "randy@von.net"], ["created_at", "2019-10-13 18:26:32.353928"], ["updated_at", "2019-10-13 18:26:32.353928"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.7ms | Allocations: 580) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.8ms Delivered mail 5da36c5857401_c8b03fc65f832010483fe@Marios-MacBook-Pro.local.mail (1.1ms) Date: Sun, 13 Oct 2019 13:26:32 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: randy@von.net Message-ID: <5da36c5857401_c8b03fc65f832010483fe@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://oconnellconsidine.net/sari

Welcome randy@von.net!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 5451)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Foconnellconsidine.net%2Fsari&variables%5Btoken%5D=ZaYTRgLzAt1RopqRxfNf" for 127.0.0.1 at 2019-10-13 13:26:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://oconnellconsidine.net/sari", "token"=>"ZaYTRgLzAt1RopqRxfNf"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "ZaYTRgLzAt1RopqRxfNf"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 18:26:32.366327"], ["updated_at", "2019-10-13 18:26:32.366653"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://oconnellconsidine.net/sari?account_confirmation_success=true Completed 302 Found in 8ms (ActiveRecord: 0.5ms | Allocations: 2178) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.5ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Antoine Weber IV\"\n password: \"A65yCuUwXu\"\n passwordConfirmation: \"A65yCuUwXu\"\n confirmSuccessUrl: \"http://toy.net/rory_kautzer\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2710)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chung@hegmannfeeney.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "chung@hegmannfeeney.org"], ["encrypted_password", "$2a$04$c8u2ABCIEpz1LlOp5I6F.uJwnLfi4aiMeHGQvD7i1yJa4Mj80AiRi"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 18:26:32.392539"], ["name", "Len DeHande"], ["email", "chung@hegmannfeeney.org"], ["created_at", "2019-10-13 18:26:32.393928"], ["updated_at", "2019-10-13 18:26:32.393928"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"_SilZqQ5anm2mnhQBNnQRg\":{\"token\":\"$2a$10$eUs9PNwwL7Q2aRcTaRHIZu4xLtzyt4P3k4FLzr1G2p4uqKzJ1IDAu\",\"expiry\":1572200792,\"updated_at\":\"2019-10-13 18:26:32 UTC\"}}"], ["updated_at", "2019-10-13 18:26:32.448690"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "chung@hegmannfeeney.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$8dNCes/oXqsPv3DVCvlyguAsIj3UpMc3YTKljUPuDD3k2w/TH2lnq"], ["updated_at", "2019-10-13 18:26:32.501393"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 18:26:32.502910"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 2882) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marshall@hodkiewicz.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "marshall@hodkiewicz.co"], ["encrypted_password", "$2a$04$kPGAAZoVre3RUg8VZH//4eLAmv4F70iAY9cbH2CQ52xNarVc4VrcS"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 18:26:32.512286"], ["name", "Bart Ender"], ["email", "marshall@hodkiewicz.co"], ["created_at", "2019-10-13 18:26:32.514023"], ["updated_at", "2019-10-13 18:26:32.514023"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"asnaGIWe7BYSfJyndbUnCQ\":{\"token\":\"$2a$10$19kHGWZQ3zV9X/t3YqJ/4uMNfvNmXPWrN1/2GEEA3JnkucMj8X.3q\",\"expiry\":1572200792,\"updated_at\":\"2019-10-13 18:26:32 UTC\"}}"], ["updated_at", "2019-10-13 18:26:32.565749"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "marshall@hodkiewicz.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$S8K3e5698oEb/GOJzoaJeOkPrwqfv3vM78itaYXpd/jQDw22XYaUq"], ["updated_at", "2019-10-13 18:26:32.616430"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 18:26:32.617626"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.5ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ciara_rogahn@hickle.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ciara_rogahn@hickle.biz"], ["encrypted_password", "$2a$04$w2OxOH8VUqZ4t/rPch/zjerRZNyAmb9qtDXOpwpfPAgsHIRKHEN5e"], ["confirmed_at", "2019-10-13 18:26:32.628141"], ["name", "Taylor Maid"], ["email", "ciara_rogahn@hickle.biz"], ["created_at", "2019-10-13 18:26:32.629654"], ["updated_at", "2019-10-13 18:26:32.629654"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"g6YE6whmpC9HTemWmM4o0A\":{\"token\":\"$2a$10$7ZYjf62SRDZ.BArYschGXOZ7iD1jHpnjJfjQpUaEjUBpuMk78dDDq\",\"expiry\":1572200792,\"updated_at\":\"2019-10-13 18:26:32 UTC\"}}"], ["updated_at", "2019-10-13 18:26:32.680071"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ciara_rogahn@hickle.biz"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 2358) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "thomas@stamm.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "thomas@stamm.biz"], ["encrypted_password", "$2a$04$IOQQQoCYi/97jGVtZTR4ceIsQnQ0/MWnKisEAfGiBowmiS/qvawOa"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 18:26:32.737080"], ["name", "Reed Toomey"], ["email", "thomas@stamm.biz"], ["created_at", "2019-10-13 18:26:32.738711"], ["updated_at", "2019-10-13 18:26:32.738711"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"pZT8Gd4oeeDosGfrbRBE3A\":{\"token\":\"$2a$10$3tLjdI7fxijbXpcGaEvXHODTNlQGrvlO4YjhUdnSWEKvHEYyh0Era\",\"expiry\":1572200792,\"updated_at\":\"2019-10-13 18:26:32 UTC\"}}"], ["updated_at", "2019-10-13 18:26:32.789162"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "thomas@stamm.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Y5yzqN7FE98IeMZ1NUf0wejZzDzzu.JKG5f6A5BkkvMtkuX.aVbRe"], ["updated_at", "2019-10-13 18:26:32.838245"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 18:26:32.839199"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2874) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mariano@johnston.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mariano@johnston.co"], ["encrypted_password", "$2a$04$pP6ai9S5z3lwFdC20TeEjOXgWc3gYnl0pDa3xkdB0Bi8JhvsiCcsi"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 18:26:32.846698"], ["name", "Brooke Waters"], ["email", "mariano@johnston.co"], ["created_at", "2019-10-13 18:26:32.847869"], ["updated_at", "2019-10-13 18:26:32.847869"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"6FeQGKivBR4Km7mgA6cgCQ\":{\"token\":\"$2a$10$DecCen5kAMep//OUWo4Rw.K.tvBS34OkRq59/7mwLLrSoVvu0UR2S\",\"expiry\":1572200792,\"updated_at\":\"2019-10-13 18:26:32 UTC\"}}"], ["updated_at", "2019-10-13 18:26:32.898158"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "mariano@johnston.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$pcgPOyyN2hFEEGX4XBJEEO4/vC6KXYBOMFdJOfOweMzfATbiL/4ny"], ["updated_at", "2019-10-13 18:26:32.945820"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 18:26:32.946774"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marquerite_parisian@heathcote.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marquerite_parisian@heathcote.net"], ["encrypted_password", "$2a$04$MX5SCcWwK7gR297SJH50K.db5UGkYIMgg2MjsMsR/N9iHkraj6nRa"], ["confirmed_at", "2019-10-13 18:26:32.952383"], ["name", "Bea Lowe"], ["email", "marquerite_parisian@heathcote.net"], ["created_at", "2019-10-13 18:26:32.953108"], ["updated_at", "2019-10-13 18:26:32.953108"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BOZH1pzy3D_lkAYMh9Fv1w\":{\"token\":\"$2a$10$6OQxSU0bRwgEg5XLbu3uxuKWiysfubw/Va1DVhCMkFzUj8Kx7Wx/a\",\"expiry\":1572200792,\"updated_at\":\"2019-10-13 18:26:32 UTC\"}}"], ["updated_at", "2019-10-13 18:26:33.000457"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "marquerite_parisian@heathcote.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$nkW8qm9VJI/jQRZQCshdvOFsn0iQ4MZIYOT5Aq.veQa17CupQL8CK"], ["updated_at", "2019-10-13 18:26:33.050025"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2643) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "samual@waelchiwitting.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "samual@waelchiwitting.com"], ["encrypted_password", "$2a$04$ivSiMl0VO3uBHJ5HbUY8uOuTm62bMd26UHoJrJ7CHea0eEj0DPBhC"], ["confirmed_at", "2019-10-13 18:26:33.058921"], ["name", "Jack Tupp"], ["email", "samual@waelchiwitting.com"], ["created_at", "2019-10-13 18:26:33.060216"], ["updated_at", "2019-10-13 18:26:33.060216"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 13:26:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "samuel@beer.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "samuel@beer.co"], ["encrypted_password", "$2a$04$x9qY7fksLZGg49EgU22XVe69HDrj96FnjJthyc3jyyoe8OX41mwdu"], ["confirmed_at", "2019-10-13 18:26:33.070113"], ["name", "Buddy Booth"], ["email", "samuel@beer.co"], ["created_at", "2019-10-13 18:26:33.071297"], ["updated_at", "2019-10-13 18:26:33.071297"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5045427bcf02c7d1d507aed307df391d9ef1fcbea87898700b6173218ac42cfa"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "5045427bcf02c7d1d507aed307df391d9ef1fcbea87898700b6173218ac42cfa"], ["reset_password_sent_at", "2019-10-13 18:26:33.073038"], ["updated_at", "2019-10-13 18:26:33.073150"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22sot33QKd7kfgs7SsWwnu%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 13:26:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"sot33QKd7kfgs7SsWwnu\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5045427bcf02c7d1d507aed307df391d9ef1fcbea87898700b6173218ac42cfa"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"rd8HuQMLs3T8PEFa2x7O8Q\":{\"token\":\"$2a$10$8nLIN79d/XWtNJzImQJCQunkqJikpjbZIs3YMCEF/NNuvBOwwEfwy\",\"expiry\":1572200793}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 18:26:33.127529"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"rd8HuQMLs3T8PEFa2x7O8Q\":{\"token\":\"$2a$10$8nLIN79d/XWtNJzImQJCQunkqJikpjbZIs3YMCEF/NNuvBOwwEfwy\",\"expiry\":1572200793},\"2aXsJWEbzuF4AKR_rmAeIA\":{\"token\":\"$2a$10$t/8I96a2qMV2ZRgTfBGM/O4Zj.NFB5jyTrjrpb6vF36h1VW1vZTAy\",\"expiry\":1572200793,\"updated_at\":\"2019-10-13 18:26:33 UTC\"}}"], ["updated_at", "2019-10-13 18:26:33.172724"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 99ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2654)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "peter.hilll@tillmanmckenzie.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "peter.hilll@tillmanmckenzie.com"], ["encrypted_password", "$2a$04$X/MiDyZtIr2lI.p55GoIXuIdRsJ4oIcf7XNxxeyBLz1J3KqFt9T7i"], ["confirmed_at", "2019-10-13 18:26:33.178110"], ["name", "Claire DeAir"], ["email", "peter.hilll@tillmanmckenzie.com"], ["created_at", "2019-10-13 18:26:33.179528"], ["updated_at", "2019-10-13 18:26:33.179528"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2ae2a34e63900f6f59dfb4f6ee576f05fbf69b75cc676df88c34060bf1420d9a"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "2ae2a34e63900f6f59dfb4f6ee576f05fbf69b75cc676df88c34060bf1420d9a"], ["reset_password_sent_at", "2019-10-13 18:26:33.181217"], ["updated_at", "2019-10-13 18:26:33.181337"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22axdH7yhPrq7xcWAu1MyJ%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 13:26:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"axdH7yhPrq7xcWAu1MyJ\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2ae2a34e63900f6f59dfb4f6ee576f05fbf69b75cc676df88c34060bf1420d9a"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"FZj3H_aYCyI5I4ZQgemJDg\":{\"token\":\"$2a$10$nNUA3diGhpJ0obCXJkZ.7.zaZHfi7hcDn6TUpyEfvu.ILZtEuZ5EG\",\"expiry\":1572200793}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 18:26:33.237332"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=fdeRzBjG9cp2yjBIB3x0Kw&client=FZj3H_aYCyI5I4ZQgemJDg&client_id=FZj3H_aYCyI5I4ZQgemJDg&config=&expiry=1572200793&reset_password=true&token=fdeRzBjG9cp2yjBIB3x0Kw&uid=peter.hilll%40tillmanmckenzie.com Completed 302 Found in 54ms (ActiveRecord: 0.3ms | Allocations: 1918) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "steven.kuhn@lueilwitzgoodwin.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "steven.kuhn@lueilwitzgoodwin.name"], ["encrypted_password", "$2a$04$CDxP3qcdiHIaPQkQLvWafeqehYRGC7hsDyAU4G4BNlVCt5mDBcEcG"], ["confirmed_at", "2019-10-13 08:26:33"], ["name", "Shanda Lear"], ["email", "steven.kuhn@lueilwitzgoodwin.name"], ["created_at", "2019-10-13 08:26:33"], ["updated_at", "2019-10-13 08:26:33"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f66de297945e3f359542d5ac3d7fc6bffcd425e741500452e8567179abb0ae8a"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f66de297945e3f359542d5ac3d7fc6bffcd425e741500452e8567179abb0ae8a"], ["reset_password_sent_at", "2019-10-13 08:26:33"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%228DoqXAtRSXCqSEyg5cs6%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 13:26:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"8DoqXAtRSXCqSEyg5cs6\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f66de297945e3f359542d5ac3d7fc6bffcd425e741500452e8567179abb0ae8a"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1269)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kenya@zemlak.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kenya@zemlak.com"], ["encrypted_password", "$2a$04$DsKXvC7Af74aKSQYVYwiUeJr8VXBdCYtLVUr6M.UliHl2lf.zqgzq"], ["confirmed_at", "2019-10-13 18:26:33.279709"], ["name", "Tim Burr"], ["email", "kenya@zemlak.com"], ["created_at", "2019-10-13 18:26:33.280823"], ["updated_at", "2019-10-13 18:26:33.280823"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "bef05f995153270afab2a734d4dc2aa5bad5c615a84bfb47436b269d1121e9a9"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "bef05f995153270afab2a734d4dc2aa5bad5c615a84bfb47436b269d1121e9a9"], ["reset_password_sent_at", "2019-10-13 18:26:33.283193"], ["updated_at", "2019-10-13 18:26:33.283384"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22RFQeqQk4PbJdcdAUerTSinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 13:26:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"RFQeqQk4PbJdcdAUerTSinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "375899b313f40fcf5eeafb06251227911a5ebd9e411fd6014db6ad5c12035619"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nadene.lynch@trantow.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nadene.lynch@trantow.net"], ["encrypted_password", "$2a$04$Dh9y/F.gkksX4Jc7PXuwouzEO/XUW/78jYYupTeqaFYZ858ZRzkby"], ["confirmation_token", "wyULmXM6kEdFBQJK4dKe"], ["confirmation_sent_at", "2019-10-13 18:26:33.293590"], ["name", "Lou Briccant"], ["email", "nadene.lynch@trantow.net"], ["created_at", "2019-10-13 18:26:33.293494"], ["updated_at", "2019-10-13 18:26:33.293494"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.7ms | Allocations: 408) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.1ms Delivered mail 5da36c5948c4f_c8b03fc65f8320104848f@Marios-MacBook-Pro.local.mail (2.2ms) Date: Sun, 13 Oct 2019 13:26:33 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: nadene.lynch@trantow.net Message-ID: <5da36c5948c4f_c8b03fc65f8320104848f@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome nadene.lynch@trantow.net!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22wyULmXM6kEdFBQJK4dKe%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fledner.name%2Flucile_schmitt%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 13:26:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"wyULmXM6kEdFBQJK4dKe\"\n redirectUrl: \"http://ledner.name/lucile_schmitt\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "wyULmXM6kEdFBQJK4dKe"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 18:26:33.305136"], ["updated_at", "2019-10-13 18:26:33.305395"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://ledner.name/lucile_schmitt?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms | Allocations: 1792) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lorette_gleason@grady.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lorette_gleason@grady.co"], ["encrypted_password", "$2a$04$DbDjdfZnNvQv2GunKSmHPe/T9UNIkWVArKzGhCurzOUiZ44JPd38e"], ["confirmation_token", "_mJTGQPi-gyeJ7XdodaP"], ["confirmation_sent_at", "2019-10-13 18:26:33.312572"], ["name", "Buddy Booth"], ["email", "lorette_gleason@grady.co"], ["created_at", "2019-10-13 18:26:33.312466"], ["updated_at", "2019-10-13 18:26:33.312466"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22_mJTGQPi-gyeJ7XdodaP-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Ffay.co%2Ftod%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 13:26:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"_mJTGQPi-gyeJ7XdodaP-invalid\"\n redirectUrl: \"http://fay.co/tod\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "_mJTGQPi-gyeJ7XdodaP-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "a1d95a717cd02ada0ab624c4de1659353d081f88470229d8376130ecd0e49ead"], ["LIMIT", 1]] Completed 200 OK in 92ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2009) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "inez@schneider.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "inez@schneider.com"], ["encrypted_password", "$2a$04$uyK3FiT7xgIGy7OR0jJ8E.h/.kpkppe7j/i.B8d1bgEujz0O/85jG"], ["confirmed_at", "2019-10-13 18:26:33.412136"], ["name", "Kenny Penny"], ["email", "inez@schneider.com"], ["created_at", "2019-10-13 18:26:33.414528"], ["updated_at", "2019-10-13 18:26:33.414528"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"U38E638593YYctWZcWz73A\":{\"token\":\"$2a$10$hJId4M3MYY4xM8NYwG9AYe0CZN.1EEhFws7mwjK.PmWorE914R.Cm\",\"expiry\":1572200793,\"updated_at\":\"2019-10-13 18:26:33 UTC\"}}"], ["updated_at", "2019-10-13 18:26:33.465078"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 13:26:33 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "inez@schneider.com"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 9655)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "julian.little@considine.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "julian.little@considine.com"], ["encrypted_password", "$2a$04$Xpbqo3XSYelvV.nVejKZ5uRTDFYuLxODjUwKoxsy0sDZ7Rc1zxgdm"], ["confirmed_at", "2019-10-13 18:26:33.523325"], ["name", "Rusty Keyes"], ["email", "julian.little@considine.com"], ["created_at", "2019-10-13 18:26:33.524163"], ["updated_at", "2019-10-13 18:26:33.524163"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 13:26:33 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'warner@hermanjones.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Sarah Doctorinthehouse"], ["email", "warner@hermanjones.name"], ["encrypted_password", "$2a$04$MvfGn78e4mZp8N8xcvNcve7tndPF24yyxVuxIHVcvT37NPg0cNviC"], ["confirmed_at", "2019-10-13 19:03:04.717651"], ["uid", "warner@hermanjones.name"], ["created_at", "2019-10-13 19:03:04.725178"], ["updated_at", "2019-10-13 19:03:04.725178"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"warner@hermanjones.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "warner@hermanjones.name"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"b2CVRKnZ0NNBiF9Rirt_YQ\":{\"token\":\"$2a$10$r15kLKQX9eJw0aobz4AJmurDRassEealpsK.Z6EpOjJnLSN0WyyxK\",\"expiry\":1572202984,\"updated_at\":\"2019-10-13 19:03:04 UTC\"}}"], ["updated_at", "2019-10-13 19:03:04.844909"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-10-13 19:03:04.850288"], ["current_sign_in_at", "2019-10-13 19:03:04.850288"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:03:04.850804"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 86ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'shizue.collier@gulgowski.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Ben Dover"], ["email", "shizue.collier@gulgowski.biz"], ["encrypted_password", "$2a$04$03EPtWM5/e7qgbZa0F3PruEjLiONoDwZvBk1/HyRGITxl9fOFT9Sy"], ["confirmed_at", "2019-10-13 19:03:04.858513"], ["uid", "shizue.collier@gulgowski.biz"], ["created_at", "2019-10-13 19:03:04.860297"], ["updated_at", "2019-10-13 19:03:04.860297"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"shizue.collier@gulgowski.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "shizue.collier@gulgowski.biz"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.2ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'suzi@krisbode.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Adam Zapel"], ["email", "suzi@krisbode.info"], ["encrypted_password", "$2a$04$5FqeV0PEUr9Tzu33Sv0N/uzamNh6KiSWCIBvMRy2FIDmeGPcilux2"], ["uid", "suzi@krisbode.info"], ["created_at", "2019-10-13 19:03:04.878824"], ["updated_at", "2019-10-13 19:03:04.878824"], ["confirmation_token", "z7kLUJE_vaFM2vgsVGzH"], ["confirmation_sent_at", "2019-10-13 19:03:04.879015"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"suzi@krisbode.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "suzi@krisbode.info"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'miguel@hammes.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bess Twishes"], ["email", "miguel@hammes.com"], ["encrypted_password", "$2a$04$nLv/eoplzJcZrFHVP4clJu2UlpDDIG.juqgMf0mU9EB/eFS9wDUiG"], ["confirmed_at", "2019-10-13 19:03:04.890527"], ["locked_at", "2019-10-13 19:03:04.890590"], ["uid", "miguel@hammes.com"], ["created_at", "2019-10-13 19:03:04.891613"], ["updated_at", "2019-10-13 19:03:04.891613"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"miguel@hammes.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "miguel@hammes.com"]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'lanny@beer.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Artie Choke"], ["email", "lanny@beer.org"], ["encrypted_password", "$2a$04$asAN8g4cMAz7EZbMXGCTtu4jJiQwfCz1FRbpkpuGYulxAtYfDPOCK"], ["confirmed_at", "2019-10-13 19:03:04.904994"], ["auth_available", "f"], ["uid", "lanny@beer.org"], ["created_at", "2019-10-13 19:03:04.906883"], ["updated_at", "2019-10-13 19:03:04.906883"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lanny@beer.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "lanny@beer.org"]] Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.2ms) SELECT 1 AS one FROM "admins" WHERE ("admins"."email" = 'greta.stracke@oconnellgibson.name' AND "admins"."provider" = 'email') LIMIT 1 SQL (0.6ms) INSERT INTO "admins" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "greta.stracke@oconnellgibson.name"], ["encrypted_password", "$2a$04$2FKTvAiCBqPqLtiXOW7.8uGQkF0unhBfL094hcjTK/rHy/TIa9SXi"], ["confirmed_at", "2019-10-13 19:03:04.930473"], ["uid", "greta.stracke@oconnellgibson.name"], ["created_at", "2019-10-13 19:03:04.932930"], ["updated_at", "2019-10-13 19:03:04.932930"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"greta.stracke@oconnellgibson.name\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT 1 [["email", "greta.stracke@oconnellgibson.name"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"QTHqavt4JUVAANtzoJHWqA\":{\"token\":\"$2a$10$Qd6x80S6Cw0EnXkFu2chhuKVgV12HEuz7AMHnAgwXCkzOfacRs1ZS\",\"expiry\":1572202985,\"updated_at\":\"2019-10-13 19:03:04 UTC\"}}"], ["updated_at", "2019-10-13 19:03:05.011055"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 72ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'laveta@kris.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Doug Witherspoon"], ["email", "laveta@kris.io"], ["encrypted_password", "$2a$04$tey62EsH8/31Zqr0yUckEuwKe59SU.pu94YgDjt7svIJBnjFRIrQO"], ["confirmed_at", "2019-10-13 19:03:05.016746"], ["uid", "laveta@kris.io"], ["created_at", "2019-10-13 19:03:05.017818"], ["updated_at", "2019-10-13 19:03:05.017818"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Heun0HYvQlE_ulyrOBZsig\":{\"token\":\"$2a$10$lXL7lx.aqdNQzkGnrLRY1uUSaPbtKUf.9gEMipN8ITdNEkj5reecK\",\"expiry\":1572202985,\"updated_at\":\"2019-10-13 19:03:05 UTC\"}}"], ["updated_at", "2019-10-13 19:03:05.074727"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "laveta@kris.io"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:03:05.127966"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'ronald_jacobi@schmeler.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Claire Annette"], ["email", "ronald_jacobi@schmeler.co"], ["encrypted_password", "$2a$04$hVGqnl//xtmWgI/PwTX63.9y7.yoJW4eGmxsb30/1fka9lnsDr9sS"], ["confirmed_at", "2019-10-13 19:03:05.136266"], ["uid", "ronald_jacobi@schmeler.co"], ["created_at", "2019-10-13 19:03:05.137061"], ["updated_at", "2019-10-13 19:03:05.137061"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE ("admins"."email" = 'isiah_kiehn@abernathywiza.biz' AND "admins"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "admins" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "isiah_kiehn@abernathywiza.biz"], ["encrypted_password", "$2a$04$FNtRkzVqnpupu2aFKx7koe8NdGIwj7uRTpHm8bgdeI5FTnNEYJDJe"], ["confirmed_at", "2019-10-13 19:03:05.140713"], ["uid", "isiah_kiehn@abernathywiza.biz"], ["created_at", "2019-10-13 19:03:05.141524"], ["updated_at", "2019-10-13 19:03:05.141524"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"Rb0L_qjNq7vvKJ5kdny9GQ\":{\"token\":\"$2a$10$Y0lpVVEOTAOxdrcNjPWEd.FEAs0aMcOw9zb7kpvsBosZ8B0N5tpOS\",\"expiry\":1572202985,\"updated_at\":\"2019-10-13 19:03:05 UTC\"}}"], ["updated_at", "2019-10-13 19:03:05.192042"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT 1 [["uid", "isiah_kiehn@abernathywiza.biz"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:03:05.247794"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'sofia@schroedermcclure.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Faye Tallity"], ["email", "sofia@schroedermcclure.biz"], ["encrypted_password", "$2a$04$F/z8BKygyK6pHo0PSRAH..9C6MIDBF7e/UQneNf0eTrEe1f9WAUGi"], ["confirmed_at", "2019-10-13 19:03:05.254764"], ["uid", "sofia@schroedermcclure.biz"], ["created_at", "2019-10-13 19:03:05.255629"], ["updated_at", "2019-10-13 19:03:05.255629"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"sofia@schroedermcclure.biz\",\n redirectUrl: \"http://langherzog.name/jean\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "sofia@schroedermcclure.biz"], ["provider", "email"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "bbf1fc8125eba7675463b1b889a9b50d55bb701477ff78921b0f136809109336"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "bbf1fc8125eba7675463b1b889a9b50d55bb701477ff78921b0f136809109336"], ["reset_password_sent_at", "2019-10-13 19:03:05.338514"], ["updated_at", "2019-10-13 19:03:05.338786"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (1.7ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 119.6ms Sent mail to sofia@schroedermcclure.biz (4.8ms) Date: Sun, 13 Oct 2019 14:03:05 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: sofia@schroedermcclure.biz Message-ID: <5da374e9711b3_d0513ffef9c3202067897@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: sofia@schroedermcclure.biz provider: email redirect-url: http://langherzog.name/jean client-config: default

Hello sofia@schroedermcclure.biz!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 206ms (Views: 0.1ms | ActiveRecord: 0.5ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Flangherzog.name%2Fjean&variables%5Btoken%5D=-Yp-B5nrGS2Nuzs9yb_e" for 127.0.0.1 at 2019-10-13 14:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://langherzog.name/jean", "token"=>"-Yp-B5nrGS2Nuzs9yb_e"}} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "bbf1fc8125eba7675463b1b889a9b50d55bb701477ff78921b0f136809109336"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"4xmwKdWFjQGfSEWy4D8RGA\":{\"token\":\"$2a$10$Kn6JFFmNgmvPeid7cUOLvuTXbVZymoq5ot6byBC4TP9ws5ngBXHkK\",\"expiry\":1572202985}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:05.515129"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://langherzog.name/jean?access-token=hM8GazsC-pplde9TWjVSIw&client=4xmwKdWFjQGfSEWy4D8RGA&client_id=4xmwKdWFjQGfSEWy4D8RGA&config=&expiry=&reset_password=true&token=hM8GazsC-pplde9TWjVSIw&uid=sofia%40schroedermcclure.biz Completed 302 Found in 49ms (ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://white.io/garth.mohr\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "nothere@gmail.com"], ["provider", "email"]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"deandrea@rosenbaumlueilwitz.name\"\n name: \"Stacey Prohaska\"\n password: \"JmD6y0NaH0r\"\n passwordConfirmation: \"JmD6y0NaH0r\"\n confirmSuccessUrl: \"http://streichharris.info/jame.ernser\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'deandrea@rosenbaumlueilwitz.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("encrypted_password", "name", "email", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["encrypted_password", "$2a$04$.Q8O34/HqQ6L6fONrDsHT.c99Lygf/ijuWPX6ogXCUt5K9GyKfjUC"], ["name", "Stacey Prohaska"], ["email", "deandrea@rosenbaumlueilwitz.name"], ["uid", "deandrea@rosenbaumlueilwitz.name"], ["created_at", "2019-10-13 19:03:05.535150"], ["updated_at", "2019-10-13 19:03:05.535150"], ["confirmation_token", "Y9m_DLpuQB3vaDxWv2S9"], ["confirmation_sent_at", "2019-10-13 19:03:05.535314"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.7ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.2ms Sent mail to deandrea@rosenbaumlueilwitz.name (1.3ms) Date: Sun, 13 Oct 2019 14:03:05 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: deandrea@rosenbaumlueilwitz.name Message-ID: <5da374e983ef6_d0513ffef9c32020679fd@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://streichharris.info/jame.ernser

Welcome deandrea@rosenbaumlueilwitz.name!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 11ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1 Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fstreichharris.info%2Fjame.ernser&variables%5Btoken%5D=Y9m_DLpuQB3vaDxWv2S9" for 127.0.0.1 at 2019-10-13 14:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://streichharris.info/jame.ernser", "token"=>"Y9m_DLpuQB3vaDxWv2S9"}} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "Y9m_DLpuQB3vaDxWv2S9"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:05.552625"], ["updated_at", "2019-10-13 19:03:05.553385"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://streichharris.info/jame.ernser?account_confirmation_success=true Completed 302 Found in 12ms (ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Jesus Kutch\"\n password: \"Qw3T3n66AtE8fA\"\n passwordConfirmation: \"Qw3T3n66AtE8fA\"\n confirmSuccessUrl: \"http://kochmarks.com/lenard_hirthe\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = '' AND "users"."provider" = 'email') LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'markus_anderson@jones.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Shirley Knot"], ["email", "markus_anderson@jones.name"], ["encrypted_password", "$2a$04$KpcK3ga8vprL4P9hJKNkn.hJEnlHPkfvVsA4zcNx/mmgkKoB/A8z2"], ["confirmed_at", "2019-10-13 19:03:05.580523"], ["allow_password_change", "t"], ["uid", "markus_anderson@jones.name"], ["created_at", "2019-10-13 19:03:05.584214"], ["updated_at", "2019-10-13 19:03:05.584214"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"njbMpLB5pqyf5a1DzjGp9A\":{\"token\":\"$2a$10$wMazQwPpZgAWJtBtgv0J3uJeZBv6iXHqw51VU6HrBggR1h6Q7AfLe\",\"expiry\":1572202985,\"updated_at\":\"2019-10-13 19:03:05 UTC\"}}"], ["updated_at", "2019-10-13 19:03:05.631002"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "markus_anderson@jones.name"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$xTFTmqTEGsRuBPIpW2TsUu9G0kC3XzC3Ku5ZsAql4Gyargbc0Dc5W"], ["updated_at", "2019-10-13 19:03:05.682666"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:05.683727"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'leonard_boyer@goodwin.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Brandy Bottle"], ["email", "leonard_boyer@goodwin.org"], ["encrypted_password", "$2a$04$dJ/iv5KYX5Ks4RIayYRzbu0fbPbej.bayvQlxcCt1pj/RQFd/SdJa"], ["confirmed_at", "2019-10-13 19:03:05.688290"], ["allow_password_change", "t"], ["uid", "leonard_boyer@goodwin.org"], ["created_at", "2019-10-13 19:03:05.689085"], ["updated_at", "2019-10-13 19:03:05.689085"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CPTtEt86At9dW8nlXh4rQQ\":{\"token\":\"$2a$10$22p1Bp6GPBzLvPNORFTlxud3c/Gb1/3x73g4f.YR9a2wkUDrhtbIe\",\"expiry\":1572202985,\"updated_at\":\"2019-10-13 19:03:05 UTC\"}}"], ["updated_at", "2019-10-13 19:03:05.737339"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "leonard_boyer@goodwin.org"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$xs8M9ALY4ca1KUlV/R8rFuBZcq5FpjJeU.Dzww28jzjbSZ8oRFK/W"], ["updated_at", "2019-10-13 19:03:05.791602"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:05.792540"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jeraldine_simonis@harvey.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Robin DeCraydle"], ["email", "jeraldine_simonis@harvey.com"], ["encrypted_password", "$2a$04$ORQ66yuiR3qmW6/vvBYyrOtrRRnYdmgX03cvv76iw69toyH1FhVxW"], ["confirmed_at", "2019-10-13 19:03:05.798655"], ["uid", "jeraldine_simonis@harvey.com"], ["created_at", "2019-10-13 19:03:05.799469"], ["updated_at", "2019-10-13 19:03:05.799469"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"_KO7PLKt2MZzel7TzC9Eag\":{\"token\":\"$2a$10$QBk4I/Pz6k5Fvw0Ja6h3NumWOSfKR/j/bqUWBY442V1pRkqmn4BN.\",\"expiry\":1572202985,\"updated_at\":\"2019-10-13 19:03:05 UTC\"}}"], ["updated_at", "2019-10-13 19:03:05.846732"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "jeraldine_simonis@harvey.com"]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'herb.wyman@nikolausoreilly.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Tom Katt"], ["email", "herb.wyman@nikolausoreilly.biz"], ["encrypted_password", "$2a$04$DoxBnSsll3HdRAad3pQRO.RjDz3i54L.IPngnvVtwP1Nopoj7nYNO"], ["confirmed_at", "2019-10-13 19:03:05.903539"], ["allow_password_change", "t"], ["uid", "herb.wyman@nikolausoreilly.biz"], ["created_at", "2019-10-13 19:03:05.904326"], ["updated_at", "2019-10-13 19:03:05.904326"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-toiFAFj70dc9E5T3iuNMw\":{\"token\":\"$2a$10$5izBFQUqqzdF579tAAuvS.bYrb5kXlPldrkS6x2ViXauFxeL4WuxG\",\"expiry\":1572202985,\"updated_at\":\"2019-10-13 19:03:05 UTC\"}}"], ["updated_at", "2019-10-13 19:03:05.949718"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "herb.wyman@nikolausoreilly.biz"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$xmrsv7JAQ83lsADCA7kjx.jnAcz.QBc/HW6GVIKdgFLLcYbL9WXxW"], ["updated_at", "2019-10-13 19:03:06.003017"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:06.004039"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'christian.macgyver@sawaynmosciski.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Rowan Boatman"], ["email", "christian.macgyver@sawaynmosciski.biz"], ["encrypted_password", "$2a$04$6wOSb1tuRv82o.rPacJt5.WaAQaEU55MGKVwn/tO70OxT0ONjaFz."], ["confirmed_at", "2019-10-13 19:03:06.007922"], ["allow_password_change", "t"], ["uid", "christian.macgyver@sawaynmosciski.biz"], ["created_at", "2019-10-13 19:03:06.008572"], ["updated_at", "2019-10-13 19:03:06.008572"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EnDkFuhO5ZDk6pvCnW0Gzw\":{\"token\":\"$2a$10$EP0I2.gBVaWsGS6KTxYrweBvIDKAm1oLUYDcwIDCuJ3PVudUuoWEu\",\"expiry\":1572202986,\"updated_at\":\"2019-10-13 19:03:06 UTC\"}}"], ["updated_at", "2019-10-13 19:03:06.054397"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "christian.macgyver@sawaynmosciski.biz"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$C6zyy0/XnrLYuFwDHBEcmextBTPMQFp3BA7KzL0PXijLE55FnQJuS"], ["updated_at", "2019-10-13 19:03:06.105748"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:06.106685"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'pura@brakusmcdermott.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Taylor Maid"], ["email", "pura@brakusmcdermott.org"], ["encrypted_password", "$2a$04$wpc.rNsC0D3j7H3Xp8RBa.2kBfnvn4AEH6lfDp0kPDDCQQJBciKZS"], ["confirmed_at", "2019-10-13 19:03:06.113685"], ["uid", "pura@brakusmcdermott.org"], ["created_at", "2019-10-13 19:03:06.114897"], ["updated_at", "2019-10-13 19:03:06.114897"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LreYmT6ivFJVOuXDdqLGZw\":{\"token\":\"$2a$10$GYCl9vnes9SyXBnGMEPdNeY/m6pv7RWqbxZ.69nnYBRStj1iEtd6G\",\"expiry\":1572202986,\"updated_at\":\"2019-10-13 19:03:06 UTC\"}}"], ["updated_at", "2019-10-13 19:03:06.163480"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "pura@brakusmcdermott.org"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$NjRqVnGbRZdTVV7uFSvhQOCh50t/UWaMWx83P6y6OFQ3EKFlhs1KO"], ["updated_at", "2019-10-13 19:03:06.217159"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'lance@hoeger.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Annette Curtain"], ["email", "lance@hoeger.biz"], ["encrypted_password", "$2a$04$bO6dDwJh.39mVURp9sAtzO9/5QLIKX7Ey4pUGk8UYD./sWyaniyE2"], ["confirmed_at", "2019-10-13 19:03:06.223929"], ["uid", "lance@hoeger.biz"], ["created_at", "2019-10-13 19:03:06.224656"], ["updated_at", "2019-10-13 19:03:06.224656"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'katie@daniel.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Cam Payne"], ["email", "katie@daniel.info"], ["encrypted_password", "$2a$04$yrFZGddoTm1eg4BsFU0cZe6dUrufKNxWTKunw5rX7b8pJTIvbH.6m"], ["confirmed_at", "2019-10-13 19:03:06.233400"], ["uid", "katie@daniel.info"], ["created_at", "2019-10-13 19:03:06.234185"], ["updated_at", "2019-10-13 19:03:06.234185"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "d938db799dffe44ad6bd779e3631c3bb7756d0884cc4eb0ddb1dd43499b9a11e"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "d938db799dffe44ad6bd779e3631c3bb7756d0884cc4eb0ddb1dd43499b9a11e"], ["reset_password_sent_at", "2019-10-13 19:03:06.235275"], ["updated_at", "2019-10-13 19:03:06.235438"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22Uadu168z4HmGopbxogDp%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"Uadu168z4HmGopbxogDp\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "d938db799dffe44ad6bd779e3631c3bb7756d0884cc4eb0ddb1dd43499b9a11e"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Ok9n8HURl5T0vl-eA-lJRg\":{\"token\":\"$2a$10$qNTB3W0KW2HvTQ/d8psiMOhVCaVrvBa.VIb1DVpjgZGwh4XaVcIv2\",\"expiry\":1572202986}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:06.287529"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Ok9n8HURl5T0vl-eA-lJRg\":{\"token\":\"$2a$10$qNTB3W0KW2HvTQ/d8psiMOhVCaVrvBa.VIb1DVpjgZGwh4XaVcIv2\",\"expiry\":1572202986},\"y6P0QlunnpSLrbyVcIBG3Q\":{\"token\":\"$2a$10$FUsMz.h5kpeyFrWPkZz9OOgala.wAso9bKiayxFSA/ky0bq9jItZy\",\"expiry\":1572202986,\"updated_at\":\"2019-10-13 19:03:06 UTC\"}}"], ["updated_at", "2019-10-13 19:03:06.333653"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 96ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'tillie_beer@collier.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Anita Knapp"], ["email", "tillie_beer@collier.co"], ["encrypted_password", "$2a$04$pDsGLwmewKB9hlaGdAld7O.Shb5TLIyH8HFVs80k/kHmIENOwvLp6"], ["confirmed_at", "2019-10-13 19:03:06.337478"], ["uid", "tillie_beer@collier.co"], ["created_at", "2019-10-13 19:03:06.338218"], ["updated_at", "2019-10-13 19:03:06.338218"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "070533ae0eeacc3ccfbab25e1ea428a570fbdb6fd1372a0627e33766edf26a57"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "070533ae0eeacc3ccfbab25e1ea428a570fbdb6fd1372a0627e33766edf26a57"], ["reset_password_sent_at", "2019-10-13 19:03:06.339515"], ["updated_at", "2019-10-13 19:03:06.339683"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22WNU4FQbjgzpS8qzzpzw4%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"WNU4FQbjgzpS8qzzpzw4\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "070533ae0eeacc3ccfbab25e1ea428a570fbdb6fd1372a0627e33766edf26a57"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2Bc2-yCrjPCyWHb3vNim2Q\":{\"token\":\"$2a$10$69y0.r/zzVzdHQJ1Peo4Reon7fWtQDIysHWJC8YSid0diGtgpncli\",\"expiry\":1572202986}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:06.392132"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=ycXS_cYNd4POpukV1xfhtg&client=2Bc2-yCrjPCyWHb3vNim2Q&client_id=2Bc2-yCrjPCyWHb3vNim2Q&config=&expiry=&reset_password=true&token=ycXS_cYNd4POpukV1xfhtg&uid=tillie_beer%40collier.co Completed 302 Found in 50ms (ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'francis@aufderhar.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.0ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Helen Highwater"], ["email", "francis@aufderhar.info"], ["encrypted_password", "$2a$04$NMoP05rpDCFHesikDpZMduUSh.ArgtO6ad1tJv4yyNS.qZ3EFlzb."], ["confirmed_at", "2019-10-13 09:03:06.000000"], ["uid", "francis@aufderhar.info"], ["created_at", "2019-10-13 09:03:06.000000"], ["updated_at", "2019-10-13 09:03:06.000000"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "04698560ad5f69fe28b64a30175e1900f22005ee5d2a24437ec65bd09f089d42"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "04698560ad5f69fe28b64a30175e1900f22005ee5d2a24437ec65bd09f089d42"], ["reset_password_sent_at", "2019-10-13 09:03:06.000000"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%227ighs9NrB-iKPxCsyE1p%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"7ighs9NrB-iKPxCsyE1p\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "04698560ad5f69fe28b64a30175e1900f22005ee5d2a24437ec65bd09f089d42"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'robt@mcdermott.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Luke Warm"], ["email", "robt@mcdermott.co"], ["encrypted_password", "$2a$04$RYgDkD57PW8VFIBt15Th8eTIzeB/gIphSP1VTHrIFBhC.6AXZ/zHG"], ["confirmed_at", "2019-10-13 19:03:06.407185"], ["uid", "robt@mcdermott.co"], ["created_at", "2019-10-13 19:03:06.407910"], ["updated_at", "2019-10-13 19:03:06.407910"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "d386abebeaf4854b7b2434a2fea36a1978de17b6f3701e21036b7fabb893234d"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "d386abebeaf4854b7b2434a2fea36a1978de17b6f3701e21036b7fabb893234d"], ["reset_password_sent_at", "2019-10-13 19:03:06.409120"], ["updated_at", "2019-10-13 19:03:06.409496"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22rNt_RKfz1ALRpMzJv6TPinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"rNt_RKfz1ALRpMzJv6TPinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "bc7f81a6fb95bc27ae2d8e1e1d6ea666909bf5068abf0f785be527cee04f7c02"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'louis@hermann.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Colin Allcars"], ["email", "louis@hermann.org"], ["encrypted_password", "$2a$04$DOn9geFmXztu6b3VI6LnGOZ/JU81OVrIs3VFZ6Zwzp4IhiYHgq1iO"], ["uid", "louis@hermann.org"], ["created_at", "2019-10-13 19:03:06.419950"], ["updated_at", "2019-10-13 19:03:06.419950"], ["confirmation_token", "p8nheSmsW_kzaxDcxtGG"], ["confirmation_sent_at", "2019-10-13 19:03:06.420087"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.4ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.0ms Sent mail to louis@hermann.org (1.2ms) Date: Sun, 13 Oct 2019 14:03:06 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: louis@hermann.org Message-ID: <5da374ea672c9_d0513ffef9c320206808e@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome louis@hermann.org!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22p8nheSmsW_kzaxDcxtGG%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fwatsica.io%2Fvergie%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"p8nheSmsW_kzaxDcxtGG\"\n redirectUrl: \"http://watsica.io/vergie\"\n ) {\n email\n name\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "p8nheSmsW_kzaxDcxtGG"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:06.443036"], ["updated_at", "2019-10-13 19:03:06.443356"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://watsica.io/vergie?account_confirmation_success=true Completed 302 Found in 17ms (ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'kacey_hodkiewicz@kris.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Shanda Lear"], ["email", "kacey_hodkiewicz@kris.co"], ["encrypted_password", "$2a$04$b7B7w.JR4McxCx/UWf9eru3IGV5y.hgm27WRZGctExmDTXr2LmBLu"], ["uid", "kacey_hodkiewicz@kris.co"], ["created_at", "2019-10-13 19:03:06.447715"], ["updated_at", "2019-10-13 19:03:06.447715"], ["confirmation_token", "rfDRh4za85Udn5cxJjV5"], ["confirmation_sent_at", "2019-10-13 19:03:06.447839"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22rfDRh4za85Udn5cxJjV5-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fkautzerterry.com%2Fjae%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"rfDRh4za85Udn5cxJjV5-invalid\"\n redirectUrl: \"http://kautzerterry.com/jae\"\n ) {\n email\n name\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "rfDRh4za85Udn5cxJjV5-invalid"]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "9cb071f777ee0003753add98d4185579e2d97801ce9fbcfc09099e6f5929c9e8"]] Completed 200 OK in 78ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'kelvin@marquardtwaelchi.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Des Buratto"], ["email", "kelvin@marquardtwaelchi.name"], ["encrypted_password", "$2a$04$dPR2u1vDkeMvM0XZxVn3eO4.K0bUtn65AjU/nepUdhZMO7Sm1GC.S"], ["confirmed_at", "2019-10-13 19:03:06.535236"], ["uid", "kelvin@marquardtwaelchi.name"], ["created_at", "2019-10-13 19:03:06.536448"], ["updated_at", "2019-10-13 19:03:06.536448"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"aYU7OdXoGUjfIFVN3Btv5A\":{\"token\":\"$2a$10$5zu8ex2j6tNM1kGh/7KrJeGoHHgDTZrFnn34rk4MTM3QtAkg85Ige\",\"expiry\":1572202986,\"updated_at\":\"2019-10-13 19:03:06 UTC\"}}"], ["updated_at", "2019-10-13 19:03:06.587846"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:06 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "kelvin@marquardtwaelchi.name"]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'eduardo@robertswilliamson.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Mabel Syrup"], ["email", "eduardo@robertswilliamson.net"], ["encrypted_password", "$2a$04$gvEmgz42/bwMzebcNS16s.pj9XUY5xwHFyclG4tjDkmZbAHtknT9O"], ["confirmed_at", "2019-10-13 19:03:06.655324"], ["uid", "eduardo@robertswilliamson.net"], ["created_at", "2019-10-13 19:03:06.656120"], ["updated_at", "2019-10-13 19:03:06.656120"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:06 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tasha_dickinson@heller.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tasha_dickinson@heller.co"], ["encrypted_password", "$2a$04$vL2AxH9HSIPEBq9v.5ppDeFXJK/FIJPSRMkb0Y/XCtAtZbtFS0tYS"], ["confirmed_at", "2019-10-13 19:03:09.921905"], ["name", "Lina Ginster"], ["email", "tasha_dickinson@heller.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:09.926665"], ["updated_at", "2019-10-13 19:03:09.926665"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tasha_dickinson@heller.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tasha_dickinson@heller.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0VQbC7znfU1cRrfpAyJL2g\":{\"token\":\"$2a$12$fB4QMOZmFtg8nSE/D4vkx.3DrnO9JqkK3EiOwHozjDWpG/w98QG2y\",\"expiry\":1572202989,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:09.953-05:00\"}}"], ["updated_at", "2019-10-13 19:03:10.136488"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:03:10.141540"], ["last_sign_in_at", "2019-10-13 19:03:10.141540"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:03:10.142064"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 203ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leslie_bednar@casperboehm.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "leslie_bednar@casperboehm.com"], ["encrypted_password", "$2a$04$cOFP5Sd5Qm7o.mxAYAV.ZeeCjMWo03TeZ5HmpPpGFiM17IjzcYns2"], ["confirmed_at", "2019-10-13 19:03:10.149301"], ["name", "Evan Keel"], ["email", "leslie_bednar@casperboehm.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:10.150008"], ["updated_at", "2019-10-13 19:03:10.150008"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"leslie_bednar@casperboehm.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leslie_bednar@casperboehm.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-10-13 19:03:10.154850"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lottie@kuphal.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lottie@kuphal.io"], ["encrypted_password", "$2a$04$hV3ehAebIfwMY8uWTu0a/OYtyId0QA.g15Bbfus84goT5OsMx/J4."], ["confirmation_token", "3jPmHYPKNvq9qj6_2r4p"], ["confirmation_sent_at", "2019-10-13 19:03:10.160072"], ["name", "Chanda Lear"], ["email", "lottie@kuphal.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:10.159980"], ["updated_at", "2019-10-13 19:03:10.159980"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lottie@kuphal.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lottie@kuphal.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "florencia@hermistonwelch.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "florencia@hermistonwelch.biz"], ["encrypted_password", "$2a$04$T9UKTpCinftXypAviOh/f..5PtVtP1kX3cP9c3gVomWA7rHmRuECy"], ["confirmed_at", "2019-10-13 19:03:10.167150"], ["locked_at", "2019-10-13 19:03:10.167163"], ["name", "Warren Piece"], ["email", "florencia@hermistonwelch.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:10.168071"], ["updated_at", "2019-10-13 19:03:10.168071"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"florencia@hermistonwelch.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "florencia@hermistonwelch.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "emmett@schultz.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "emmett@schultz.org"], ["encrypted_password", "$2a$04$Nn0ftNtmGuSw1AQCn0yHOeD89SanWoF9a5FXIwGNrK5dQbXAc98i6"], ["confirmed_at", "2019-10-13 19:03:10.175731"], ["name", "Pete Zaria"], ["email", "emmett@schultz.org"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:10.176714"], ["updated_at", "2019-10-13 19:03:10.176714"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"emmett@schultz.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "emmett@schultz.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "celinda.sawayn@klocko.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "celinda.sawayn@klocko.net"], ["encrypted_password", "$2a$04$N7GB1y3dsW.unZ9iBAwaIeuJexyq6AWe/EGAkQe.i98QbiXupaP.6"], ["confirmed_at", "2019-10-13 19:03:10.207951"], ["email", "celinda.sawayn@klocko.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:10.209579"], ["updated_at", "2019-10-13 19:03:10.209579"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"celinda.sawayn@klocko.net\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "celinda.sawayn@klocko.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"OieHw28hZ5O6mTjI3aHldw\":{\"token\":\"$2a$12$E8Te5iYkQRhYCtQlN2zK1uINYhlLdLvbHXbFSUiwkgbhoIUjw6o8G\",\"expiry\":1572202990,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:10.216-05:00\"}}"], ["updated_at", "2019-10-13 19:03:10.405878"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 194ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jamika@bergnaum.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jamika@bergnaum.co"], ["encrypted_password", "$2a$04$BzHjYsPxsmDqRxl960Z3Ce0WEVqvM/bJApHGhpDAbIOwnnwIJCxZ2"], ["confirmed_at", "2019-10-13 19:03:10.413008"], ["name", "Lisa Neucar"], ["email", "jamika@bergnaum.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:10.413868"], ["updated_at", "2019-10-13 19:03:10.413868"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"1gyyALfjEBhQRNSxMeUSDA\":{\"token\":\"$2a$12$koAtOCbSRaAEQTjQekIqYOB/Lkz8y6T7EEqNs6w5PDnN7tr2HS2da\",\"expiry\":1572202990,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:10.414-05:00\"}}"], ["updated_at", "2019-10-13 19:03:10.615433"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jamika@bergnaum.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 19:03:10.802977"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 187ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gay@grimeskirlin.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gay@grimeskirlin.co"], ["encrypted_password", "$2a$04$UpQBDkJwOolyaXcYiGCOC.kIZopVt/ugL2HREyqHcnazQxfBi57yi"], ["confirmed_at", "2019-10-13 19:03:10.811600"], ["name", "Sarah Bellum"], ["email", "gay@grimeskirlin.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:10.812726"], ["updated_at", "2019-10-13 19:03:10.812726"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "shakia_kozey@marvin.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shakia_kozey@marvin.co"], ["encrypted_password", "$2a$04$h3P50eq/OotsDTl2bKSZw.l1rxjp.aPfUao77dV5NsSPfV1e.5m0W"], ["confirmed_at", "2019-10-13 19:03:10.816886"], ["email", "shakia_kozey@marvin.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:10.817836"], ["updated_at", "2019-10-13 19:03:10.817836"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"tZ_DnEI7YRRAmJZUQ4C0mw\":{\"token\":\"$2a$12$0Nle6vPvOFbReDOy3Sa.GOtrWUQcpMXyYzqu61Z8HBPsh.pdNiiQK\",\"expiry\":1572202990,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:10.818-05:00\"}}"], ["updated_at", "2019-10-13 19:03:11.039937"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "shakia_kozey@marvin.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 19:03:11.245607"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 205ms (Views: 0.1ms | ActiveRecord: 0.2ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kelley.olson@hartmanncummerata.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kelley.olson@hartmanncummerata.info"], ["encrypted_password", "$2a$04$cHUXbWdZmcFc8Lo/GGK5neGOsXce4rzB.7ipmVU2a0ZDMDBxokZ/2"], ["confirmed_at", "2019-10-13 19:03:11.253118"], ["name", "Owen Moore"], ["email", "kelley.olson@hartmanncummerata.info"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:11.254306"], ["updated_at", "2019-10-13 19:03:11.254306"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"kelley.olson@hartmanncummerata.info\",\n redirectUrl: \"http://bergstromterry.name/jolene_doyle\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE (uid = 'kelley.olson@hartmanncummerata.info' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b58974e803931c1adc78939d8271243299fac6a647cf7fdd5f795f7544126905"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b58974e803931c1adc78939d8271243299fac6a647cf7fdd5f795f7544126905"], ["reset_password_sent_at", "2019-10-13 19:03:11.346717"], ["updated_at", "2019-10-13 19:03:11.347038"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (4.1ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 129.0ms Sent mail to kelley.olson@hartmanncummerata.info (3.4ms) Date: Sun, 13 Oct 2019 14:03:11 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: kelley.olson@hartmanncummerata.info Message-ID: <5da374ef752de_d06f3fc0ab02ffd4295ef@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: kelley.olson@hartmanncummerata.info provider: email redirect-url: http://bergstromterry.name/jolene_doyle client-config: default

Hello kelley.olson@hartmanncummerata.info!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 225ms (Views: 0.1ms | ActiveRecord: 0.4ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fbergstromterry.name%2Fjolene_doyle&variables%5Btoken%5D=n5ukcJwQL99zyuSp_Szv" for 127.0.0.1 at 2019-10-13 14:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://bergstromterry.name/jolene_doyle", "token"=>"n5ukcJwQL99zyuSp_Szv"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b58974e803931c1adc78939d8271243299fac6a647cf7fdd5f795f7544126905"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"eawrG5kmbAQxtSs4I7w-zA\":{\"token\":\"$2a$12$qs89IqRvM/RwyJ.AGux00.NykNUYBiPbHsY4/HRV9ztdGctZ5CjlK\",\"expiry\":1572202991}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:11.657594"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://bergstromterry.name/jolene_doyle?access-token=1572202991&client=eawrG5kmbAQxtSs4I7w-zA&client_id=eawrG5kmbAQxtSs4I7w-zA&config=&expiry=1572202991&reset_password=true&token=1572202991&uid=kelley.olson%40hartmanncummerata.info Completed 302 Found in 175ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://ondrickakunde.net/wilber\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE (uid = 'nothere@gmail.com' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"vickey@miller.net\"\n name: \"Mrs. Svetlana Bernhard\"\n password: \"WtLzQqC9oFf7ZcG\"\n passwordConfirmation: \"WtLzQqC9oFf7ZcG\"\n confirmSuccessUrl: \"http://legros.com/kristine.robel\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vickey@miller.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "vickey@miller.net"], ["encrypted_password", "$2a$04$8CrmCFgwUdenX9bSFqcOyeVKSjmqmIzl.FTHRF8rGRxls6Bhkw.iS"], ["confirmation_token", "6UJAt5RvQkx1GVXjbdE-"], ["confirmation_sent_at", "2019-10-13 19:03:11.668657"], ["name", "Mrs. Svetlana Bernhard"], ["email", "vickey@miller.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:11.668596"], ["updated_at", "2019-10-13 19:03:11.668596"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.6ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.1ms Sent mail to vickey@miller.net (0.8ms) Date: Sun, 13 Oct 2019 14:03:11 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: vickey@miller.net Message-ID: <5da374efa486d_d06f3fc0ab02ffd429695@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://legros.com/kristine.robel

Welcome vickey@miller.net!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 9ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.0ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Flegros.com%2Fkristine.robel&variables%5Btoken%5D=6UJAt5RvQkx1GVXjbdE-" for 127.0.0.1 at 2019-10-13 14:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://legros.com/kristine.robel", "token"=>"6UJAt5RvQkx1GVXjbdE-"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "6UJAt5RvQkx1GVXjbdE-"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:11.679472"], ["updated_at", "2019-10-13 19:03:11.680203"], ["id", 1]]  (0.3ms) RELEASE SAVEPOINT active_record_1 Redirected to http://legros.com/kristine.robel?account_confirmation_success=true Completed 302 Found in 7ms (ActiveRecord: 0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (1.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Nanci Raynor\"\n password: \"ZbNgXzUtXcNlI0jM\"\n passwordConfirmation: \"ZbNgXzUtXcNlI0jM\"\n confirmSuccessUrl: \"http://roberts.net/conchita.beatty\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jada.daugherty@swiftmcglynn.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jada.daugherty@swiftmcglynn.co"], ["encrypted_password", "$2a$04$pLYmR/JXxEdg.4kScgSzIe1GQgJXAKnDkWk/EkvMKYbbMWCYVS/oW"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:11.709762"], ["name", "Val Lay"], ["email", "jada.daugherty@swiftmcglynn.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:11.711421"], ["updated_at", "2019-10-13 19:03:11.711421"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Ial23TqgRWSnRklA5eCHmA\":{\"token\":\"$2a$12$Fttfj0OJA/MZv7/tJMEckevBM46jeorKq6dIuYaxho/gv/uRybveq\",\"expiry\":1572202991,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:11.714-05:00\"}}"], ["updated_at", "2019-10-13 19:03:11.906797"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jada.daugherty@swiftmcglynn.co"], ["LIMIT", 1]]  (0.4ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$7W5AY5JkKu8mr.Y8tB528uHqdDJCbsyJjbTWB2LnGFZ11MByIgfXW"], ["updated_at", "2019-10-13 19:03:12.092959"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:12.094713"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 187ms (Views: 0.1ms | ActiveRecord: 0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "anton.sawayn@brown.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "anton.sawayn@brown.net"], ["encrypted_password", "$2a$04$MSKH0FOZSwfhQ7YredYGieIMTLBFR4vNTiWa..GLCXv6Gt1G.WZFa"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:12.101759"], ["name", "Marco DeStinkshun"], ["email", "anton.sawayn@brown.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:12.102886"], ["updated_at", "2019-10-13 19:03:12.102886"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"sd5qchOQfcTgT74ywneaDA\":{\"token\":\"$2a$12$/DMPMJno3yyKs.Sj/BQ9ceehxuU3denP7zl7zunbmwq08meyeeZE2\",\"expiry\":1572202992,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:12.104-05:00\"}}"], ["updated_at", "2019-10-13 19:03:12.283339"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "anton.sawayn@brown.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$GlvQOqDAzL98vk0PBwa7eOcvaBUT04PGK3Kntrvht9Q1EZU3phdpq"], ["updated_at", "2019-10-13 19:03:12.458945"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:12.460597"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 176ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alfred@kuvalismaggio.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alfred@kuvalismaggio.com"], ["encrypted_password", "$2a$04$Vjz6sz1wfjfWx3p5GjplPuky7SdVY1wM8j3kSTuS30TfOMpI4QME."], ["confirmed_at", "2019-10-13 19:03:12.467133"], ["name", "Walter Melon"], ["email", "alfred@kuvalismaggio.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:12.468053"], ["updated_at", "2019-10-13 19:03:12.468053"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"qh7DsVI_pMW4JHYcyJET2Q\":{\"token\":\"$2a$12$AlXudwU5XezyXOHWcaCc.ezScJaSzml7SbRr0e72BcJzMGO8UUgFa\",\"expiry\":1572202992,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:12.469-05:00\"}}"], ["updated_at", "2019-10-13 19:03:12.657602"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "alfred@kuvalismaggio.com"], ["LIMIT", 1]] User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 199ms (Views: 0.3ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "casey@jenkinchamberger.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "casey@jenkinchamberger.co"], ["encrypted_password", "$2a$04$tyURbDi7m8Ory9huG7IYR.g6pdB2mhw4Oxoep.Yo8BEnIE8YtCYS."], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:12.864680"], ["name", "Milton Yermouth"], ["email", "casey@jenkinchamberger.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:12.865887"], ["updated_at", "2019-10-13 19:03:12.865887"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Zm0vs2MjOZ9wPHDCAXXQsg\":{\"token\":\"$2a$12$mtS2cwywPjTJy90pzGCgYu4OKFvWxhsygjty63AhRcV6l.bwrDfgS\",\"expiry\":1572202992,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:12.867-05:00\"}}"], ["updated_at", "2019-10-13 19:03:13.106472"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "casey@jenkinchamberger.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$jY2b9QeEF7raMkaBJZKVY.8F28rZT8D5IHPKIckFPTXF6/3S6WsvG"], ["updated_at", "2019-10-13 19:03:13.331145"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:13.332776"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 225ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nigel.stracke@strackewalsh.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nigel.stracke@strackewalsh.info"], ["encrypted_password", "$2a$04$3O3/b/YtvCxeBg2CfbADfuYMx/aKiQXUiFpM80XJPM2T5kL3fHq4u"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:13.338943"], ["name", "Sal Minella"], ["email", "nigel.stracke@strackewalsh.info"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:13.341083"], ["updated_at", "2019-10-13 19:03:13.341083"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gQQKLmXxbcOmmkV-qkqgBg\":{\"token\":\"$2a$12$IIvKvacpLXD0QqGEqbah1ej7qJ3wNUni5QaUD/h3b5FTJLMDcWcYW\",\"expiry\":1572202993,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:13.342-05:00\"}}"], ["updated_at", "2019-10-13 19:03:13.562689"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "nigel.stracke@strackewalsh.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$I4mYepjZdpTjU.fy7NCYQ.OcUOdTx6qrHFaafxxVB3fNVFAgWVxT6"], ["updated_at", "2019-10-13 19:03:13.784258"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:13.785708"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 222ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deon.dubuque@stehrbrown.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "deon.dubuque@stehrbrown.info"], ["encrypted_password", "$2a$04$vrmPn2u.V.VcMb4sYmljhO3B5XPM5Eb86Y2wu2ecHfFB4V.MsscnC"], ["confirmed_at", "2019-10-13 19:03:13.795140"], ["name", "Ben Thair"], ["email", "deon.dubuque@stehrbrown.info"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:13.796358"], ["updated_at", "2019-10-13 19:03:13.796358"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"r3HAmEjtFFqjXN14rMeD-g\":{\"token\":\"$2a$12$8n1AipV9P6kwZjjjMAOfleZyG2aFis35ge65/P19Fx2XM7mAy4VE2\",\"expiry\":1572202993,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:13.797-05:00\"}}"], ["updated_at", "2019-10-13 19:03:13.988284"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "deon.dubuque@stehrbrown.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$OnG1SXRDc8veIOXP7ZiL0.ubFMsg.EHZGQPlWoly7V2rZrZ8eEd.K"], ["updated_at", "2019-10-13 19:03:14.166393"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 179ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "drusilla.dare@cormierbayer.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "drusilla.dare@cormierbayer.name"], ["encrypted_password", "$2a$04$xCJxuNJHDQq4p3ZQyYRB4us17l5dEcXXyiTCXxYAsd5e4hhVrT1ee"], ["confirmed_at", "2019-10-13 19:03:14.174632"], ["name", "Bill Board"], ["email", "drusilla.dare@cormierbayer.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:14.175638"], ["updated_at", "2019-10-13 19:03:14.175638"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "byron@kleinaufderhar.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "byron@kleinaufderhar.org"], ["encrypted_password", "$2a$04$R.D4nyZ7yCPaBLxSZ9sMLuEiEIsLzCwbH4lrCS4q2mOvz3ETrszwe"], ["confirmed_at", "2019-10-13 19:03:14.183144"], ["name", "Beau Tye"], ["email", "byron@kleinaufderhar.org"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:14.183876"], ["updated_at", "2019-10-13 19:03:14.183876"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "31322e7faf9c6b98895dea6e1f621ed7a6e43bae59c7b592a6c4c21461283858"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "31322e7faf9c6b98895dea6e1f621ed7a6e43bae59c7b592a6c4c21461283858"], ["reset_password_sent_at", "2019-10-13 19:03:14.186017"], ["updated_at", "2019-10-13 19:03:14.186256"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22YM3bvj9XUhXMntmQhmci%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"YM3bvj9XUhXMntmQhmci\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "31322e7faf9c6b98895dea6e1f621ed7a6e43bae59c7b592a6c4c21461283858"], ["LIMIT", 1]]  (0.4ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"V_elVPqhf62e3iYiqP-r5Q\":{\"token\":\"$2a$12$L2V7ntv2yg7rtPiAI5VbaefGZgc4rGG5.exIynV7vs.cNdsdZJwGm\",\"expiry\":1572202994}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:14.391959"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"V_elVPqhf62e3iYiqP-r5Q\":{\"token\":\"$2a$12$L2V7ntv2yg7rtPiAI5VbaefGZgc4rGG5.exIynV7vs.cNdsdZJwGm\",\"expiry\":1572202994},\"xRnm2EmG85XSJzCpf0Qiuw\":{\"token\":\"$2a$12$oHXoMZVeZeyfY0CC4Rjz8u1jjdl5oZhg5Tmg3mBZ0CVEG9Pj0heKe\",\"expiry\":1572202994,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:14.393-05:00\"}}"], ["updated_at", "2019-10-13 19:03:14.566209"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 380ms (Views: 0.1ms | ActiveRecord: 1.0ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cole_wilderman@kulas.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cole_wilderman@kulas.com"], ["encrypted_password", "$2a$04$95ZZnpk3PI5OpL4Ppo1Ayuklc0JYkd23uEi5/v3RDoe8/6JROY0G6"], ["confirmed_at", "2019-10-13 19:03:14.572683"], ["name", "Stew Ng"], ["email", "cole_wilderman@kulas.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:14.573725"], ["updated_at", "2019-10-13 19:03:14.573725"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "82fcb883d732eed1e2be02aa7da4275e66ba6a8a8f38cad2ed85bfd5b8c84c26"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "82fcb883d732eed1e2be02aa7da4275e66ba6a8a8f38cad2ed85bfd5b8c84c26"], ["reset_password_sent_at", "2019-10-13 19:03:14.601818"], ["updated_at", "2019-10-13 19:03:14.602155"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22sz1hNpMd6xY5TfsK6nSJ%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"sz1hNpMd6xY5TfsK6nSJ\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "82fcb883d732eed1e2be02aa7da4275e66ba6a8a8f38cad2ed85bfd5b8c84c26"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"eqRYfhZZIvNW1tSUfd5a-Q\":{\"token\":\"$2a$12$DTt2LHX36yqHv9L/YJ59JecSlJOv8p6Tx./ZHouF4TxGrXvXwTR4W\",\"expiry\":1572202994}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:14.788163"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1572202994&client=eqRYfhZZIvNW1tSUfd5a-Q&client_id=eqRYfhZZIvNW1tSUfd5a-Q&config=&expiry=1572202994&reset_password=true&token=1572202994&uid=cole_wilderman%40kulas.com Completed 302 Found in 185ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "odis_nitzsche@wolff.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "odis_nitzsche@wolff.org"], ["encrypted_password", "$2a$04$J.exQ7M7wMxZyaGeC3Mnt.qmvyfTjVseIiLAQEP7LtpvcQbfhyNnu"], ["confirmed_at", "2019-10-13 09:03:14"], ["name", "Barry D'Alive"], ["email", "odis_nitzsche@wolff.org"], ["tokens", "{}"], ["created_at", "2019-10-13 09:03:14"], ["updated_at", "2019-10-13 09:03:14"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "187bcf5c2aa3dddd511607413e15063bc0c6400deda358644e9ebf448cea2c1a"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "187bcf5c2aa3dddd511607413e15063bc0c6400deda358644e9ebf448cea2c1a"], ["reset_password_sent_at", "2019-10-13 09:03:14"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22jzK8pjLonBzhzm5-5RDM%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"jzK8pjLonBzhzm5-5RDM\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "187bcf5c2aa3dddd511607413e15063bc0c6400deda358644e9ebf448cea2c1a"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "veta_kaulke@macejkovicpouros.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "veta_kaulke@macejkovicpouros.net"], ["encrypted_password", "$2a$04$ngH0Uae9RI/RsMOCn4v8HenNWKXJcAdZHgtDp00Xppcc2hke/tcUm"], ["confirmed_at", "2019-10-13 19:03:14.805911"], ["name", "Adam Meway"], ["email", "veta_kaulke@macejkovicpouros.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:14.806611"], ["updated_at", "2019-10-13 19:03:14.806611"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "52a1c762079c844944dffc442b633035d0a2cd1b53b830c54ef481d90df35da4"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "52a1c762079c844944dffc442b633035d0a2cd1b53b830c54ef481d90df35da4"], ["reset_password_sent_at", "2019-10-13 19:03:14.807857"], ["updated_at", "2019-10-13 19:03:14.808082"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22z7KKmN3SyEUq3v5x9n6Vinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"z7KKmN3SyEUq3v5x9n6Vinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "fbcdaaf205a1f13e5d938d6362e7150c54c154cc21c990cf3cd9f696a6a79ef4"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "francesco_altenwerth@bergnaum.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "francesco_altenwerth@bergnaum.name"], ["encrypted_password", "$2a$04$IufDWdtNP0qcXtx6QuI8w.jqKQQ4wiHPbgkSeUrwA3lthoRLd1Z7W"], ["confirmation_token", "2nP24dqyi3JnFi4yZGZw"], ["confirmation_sent_at", "2019-10-13 19:03:14.815738"], ["name", "Val Lay"], ["email", "francesco_altenwerth@bergnaum.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:14.815635"], ["updated_at", "2019-10-13 19:03:14.815635"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.8ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.9ms Sent mail to francesco_altenwerth@bergnaum.name (1.1ms) Date: Sun, 13 Oct 2019 14:03:14 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: francesco_altenwerth@bergnaum.name Message-ID: <5da374f2c898b_d06f3fc0ab02ffd429780@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome francesco_altenwerth@bergnaum.name!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%222nP24dqyi3JnFi4yZGZw%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fgrady.info%2Fjina_dach%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"2nP24dqyi3JnFi4yZGZw\"\n redirectUrl: \"http://grady.info/jina_dach\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "2nP24dqyi3JnFi4yZGZw"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:14.825446"], ["updated_at", "2019-10-13 19:03:14.825784"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://grady.info/jina_dach?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lonnie.grady@volkman.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lonnie.grady@volkman.co"], ["encrypted_password", "$2a$04$nbOXlnmIqPB/IPLmUB9aLOILZJqFJa4QfsqJ22Pnn9DxFBWfGtsh6"], ["confirmation_token", "cyQKhdTGK87rmsUzsiCp"], ["confirmation_sent_at", "2019-10-13 19:03:14.833415"], ["name", "Candy Baskett"], ["email", "lonnie.grady@volkman.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:14.833307"], ["updated_at", "2019-10-13 19:03:14.833307"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22cyQKhdTGK87rmsUzsiCp-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Flockman.biz%2Fpenny_thiel%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"cyQKhdTGK87rmsUzsiCp-invalid\"\n redirectUrl: \"http://lockman.biz/penny_thiel\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "cyQKhdTGK87rmsUzsiCp-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "163e971a0a7deba3f697adbd2e58c75415b5505459174a64bd86f92caf2a3473"], ["LIMIT", 1]] Completed 200 OK in 88ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "merrie_ankunding@cremin.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "merrie_ankunding@cremin.com"], ["encrypted_password", "$2a$04$Htbhv6kH9R9PfFIuNj1rqetb7FTUBqQWhzkIx0K9b6oilpxPkXByO"], ["confirmed_at", "2019-10-13 19:03:14.929835"], ["name", "Theresa Green"], ["email", "merrie_ankunding@cremin.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:14.930742"], ["updated_at", "2019-10-13 19:03:14.930742"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"JIVJ4U4HZiQqV17QZKVHpQ\":{\"token\":\"$2a$12$PQYNus7kzR1VVPYb/6UXYODm8CpBwSU8W7afO2fZYJaG2qLmK8N86\",\"expiry\":1572202994,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:14.931-05:00\"}}"], ["updated_at", "2019-10-13 19:03:15.113418"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:15 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "merrie_ankunding@cremin.com"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 176ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jamar@fritschkohler.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jamar@fritschkohler.net"], ["encrypted_password", "$2a$04$b4TTboIRtP.P9pQRL7veG.wV0bUKCO9EpA295po1eSYW79wfHTcJy"], ["confirmed_at", "2019-10-13 19:03:15.296634"], ["name", "Rick Kleiner"], ["email", "jamar@fritschkohler.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:15.297453"], ["updated_at", "2019-10-13 19:03:15.297453"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:15 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "billy@collins.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "billy@collins.io"], ["encrypted_password", "$2a$04$BVX4fwfvhU18ci0KPQUbP.kRSLUhso9AocBpLMkKIbfUK33dJP4JS"], ["confirmed_at", "2019-10-13 19:03:18.120578"], ["name", "Evan Keel"], ["email", "billy@collins.io"], ["created_at", "2019-10-13 19:03:18.125171"], ["updated_at", "2019-10-13 19:03:18.125171"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"billy@collins.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "billy@collins.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bCyqzPzAbL6bNinTBJsN1w\":{\"token\":\"$2a$10$oZH3kAd8za7g./AXvMYETeSj3uHfodgOtnnQfnW7NfrAnC6Zqhbca\",\"expiry\":1572202998,\"updated_at\":\"2019-10-13 19:03:18 UTC\"}}"], ["updated_at", "2019-10-13 19:03:18.199647"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:03:18.204216"], ["last_sign_in_at", "2019-10-13 19:03:18.204216"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:03:18.204619"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 66ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "korey.johnson@moriettemohr.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "korey.johnson@moriettemohr.net"], ["encrypted_password", "$2a$04$MUX2G01m/d8qzti3tq07HeV2oKXuTEM6OK62cr/RHap0Sv.bFpNQW"], ["confirmed_at", "2019-10-13 19:03:18.212183"], ["name", "Claire DeAir"], ["email", "korey.johnson@moriettemohr.net"], ["created_at", "2019-10-13 19:03:18.213196"], ["updated_at", "2019-10-13 19:03:18.213196"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"korey.johnson@moriettemohr.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "korey.johnson@moriettemohr.net"], ["LIMIT", 1]] SQL (0.0ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eleonore@kozeyvonrueden.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "eleonore@kozeyvonrueden.io"], ["encrypted_password", "$2a$04$Xh/aW00wtdnVogrZFGlTiOewPvWJ4zutA3fDul2Beo8Bi/gLNnmwq"], ["confirmation_token", "2qXx4GN_6gsfUPMBxAHk"], ["confirmation_sent_at", "2019-10-13 19:03:18.223312"], ["name", "Harmon Ikka"], ["email", "eleonore@kozeyvonrueden.io"], ["created_at", "2019-10-13 19:03:18.223226"], ["updated_at", "2019-10-13 19:03:18.223226"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"eleonore@kozeyvonrueden.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "eleonore@kozeyvonrueden.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "therea_deckow@quitzon.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "therea_deckow@quitzon.net"], ["encrypted_password", "$2a$04$xXm5iNntX6dCoDGIFo.Wq.i63eY9PxOZJtHr4yNHbVqWYh3QmeCrC"], ["confirmed_at", "2019-10-13 19:03:18.229944"], ["locked_at", "2019-10-13 19:03:18.229958"], ["name", "Dee Kay"], ["email", "therea_deckow@quitzon.net"], ["created_at", "2019-10-13 19:03:18.230973"], ["updated_at", "2019-10-13 19:03:18.230973"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"therea_deckow@quitzon.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "therea_deckow@quitzon.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "liana_jones@rippinkling.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "liana_jones@rippinkling.biz"], ["encrypted_password", "$2a$04$DkSD.leq36ps7NYADe.nfO3QteTqgeQNXyPRIhU7eHQUdoFJFpHKG"], ["confirmed_at", "2019-10-13 19:03:18.239596"], ["name", "Rick Shaw"], ["email", "liana_jones@rippinkling.biz"], ["created_at", "2019-10-13 19:03:18.240568"], ["updated_at", "2019-10-13 19:03:18.240568"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"liana_jones@rippinkling.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "liana_jones@rippinkling.biz"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "kirsten@tremblay.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "kirsten@tremblay.net"], ["encrypted_password", "$2a$04$H7lOTwOlgKWaRg6HzatUAeS.UTSyi7nFC4tc3PDy.zR/OWRHmuVLq"], ["confirmed_at", "2019-10-13 19:03:18.261866"], ["email", "kirsten@tremblay.net"], ["created_at", "2019-10-13 19:03:18.263723"], ["updated_at", "2019-10-13 19:03:18.263723"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"kirsten@tremblay.net\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "kirsten@tremblay.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"kLXuhjhLjOGrS26tzd7ioA\":{\"token\":\"$2a$10$KDDI77KE82QiKx3dvnB/1.5UMY3WPtzbV4pxpNvuWVEcPgR7GGxja\",\"expiry\":1572202998,\"updated_at\":\"2019-10-13 19:03:18 UTC\"}}"], ["updated_at", "2019-10-13 19:03:18.326735"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 62ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eufemia@borer.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "eufemia@borer.org"], ["encrypted_password", "$2a$04$H7nlR5fmda8U/7xVNhWRF.4JvgJrcOsZ56IX7OkdZApUqc86VNknq"], ["confirmed_at", "2019-10-13 19:03:18.331394"], ["name", "Chuck Roast"], ["email", "eufemia@borer.org"], ["created_at", "2019-10-13 19:03:18.332294"], ["updated_at", "2019-10-13 19:03:18.332294"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EAhnS7GVWLnAmhOBcEZUBA\":{\"token\":\"$2a$10$gx913AnhTOwrhSUYCoPXFeYLFHTugWVl5H4/g1fPWOkJ2n3HFsyCG\",\"expiry\":1572202998,\"updated_at\":\"2019-10-13 19:03:18 UTC\"}}"], ["updated_at", "2019-10-13 19:03:18.386528"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "eufemia@borer.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:03:18.436250"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cedric_weinat@prosacco.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cedric_weinat@prosacco.org"], ["encrypted_password", "$2a$04$XGPUG4hJFtXHtUCK9xdrYOq1QQIQBDQ/PlKqWJ3DULDrc0XTc3a9C"], ["confirmed_at", "2019-10-13 19:03:18.443317"], ["name", "Bruce Easley"], ["email", "cedric_weinat@prosacco.org"], ["created_at", "2019-10-13 19:03:18.444172"], ["updated_at", "2019-10-13 19:03:18.444172"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "doretha@zieme.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "doretha@zieme.co"], ["encrypted_password", "$2a$04$HpfX/u869b2WKpoqSxyyCulKAy8J4MRFXjXd4MAs2arbS5DNzLccO"], ["confirmed_at", "2019-10-13 19:03:18.449185"], ["email", "doretha@zieme.co"], ["created_at", "2019-10-13 19:03:18.450502"], ["updated_at", "2019-10-13 19:03:18.450502"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"2aSkxGbnXmxJ99cfDrN54Q\":{\"token\":\"$2a$10$pRb1H2SQQtJ0xM4LQta4oOCTLePK7F4vYTFTDTFu9OXD3hNDZ15ga\",\"expiry\":1572202998,\"updated_at\":\"2019-10-13 19:03:18 UTC\"}}"], ["updated_at", "2019-10-13 19:03:18.502056"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "doretha@zieme.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:03:18.551536"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.2ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "reynaldo@kozey.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "reynaldo@kozey.net"], ["encrypted_password", "$2a$04$5s5jVfxnzl35VYg9w6bQReAr6042OzsFoMTG1nd4YhjRBKw5QFKey"], ["confirmed_at", "2019-10-13 19:03:18.560978"], ["name", "Kenny Penny"], ["email", "reynaldo@kozey.net"], ["created_at", "2019-10-13 19:03:18.562507"], ["updated_at", "2019-10-13 19:03:18.562507"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"reynaldo@kozey.net\",\n redirectUrl: \"http://kuhn.org/audie.ohara\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "reynaldo@kozey.net"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "8ae2c8d7e6b76b7dd7a8460ea2b9624e37f2054964c1518bee6876daf3c50f6b"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "8ae2c8d7e6b76b7dd7a8460ea2b9624e37f2054964c1518bee6876daf3c50f6b"], ["reset_password_sent_at", "2019-10-13 19:03:18.651325"], ["updated_at", "2019-10-13 19:03:18.651801"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (3.5ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 122.8ms Sent mail to reynaldo@kozey.net (3.7ms) Date: Sun, 13 Oct 2019 14:03:18 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: reynaldo@kozey.net Message-ID: <5da374f6be292_d08d3fc44c8320206422a@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: reynaldo@kozey.net provider: email redirect-url: http://kuhn.org/audie.ohara client-config: default

Hello reynaldo@kozey.net!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 214ms (Views: 0.1ms | ActiveRecord: 0.4ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fkuhn.org%2Faudie.ohara&variables%5Btoken%5D=UMSAY-qmpxpMYUuss6Zi" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://kuhn.org/audie.ohara", "token"=>"UMSAY-qmpxpMYUuss6Zi"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "8ae2c8d7e6b76b7dd7a8460ea2b9624e37f2054964c1518bee6876daf3c50f6b"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ybdPJ6KfIHl7Cz0Ayl1L8A\":{\"token\":\"$2a$10$nfetFs0Jg.EuNEII/uJHz.BdfHZ0GMnidubfITE5TbO19E1ppuNby\",\"expiry\":1572202998}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:18.828362"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://kuhn.org/audie.ohara?access-token=uWTU8ANehZ4HnnPYEVyo3A&client=ybdPJ6KfIHl7Cz0Ayl1L8A&client_id=ybdPJ6KfIHl7Cz0Ayl1L8A&config=&expiry=1572202998&reset_password=true&token=uWTU8ANehZ4HnnPYEVyo3A&uid=reynaldo%40kozey.net Completed 302 Found in 47ms (ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://fayrosenbaum.co/danial_lang\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"alexandra.schmidt@mraz.name\"\n name: \"Rene Maggio\"\n password: \"4G7bX25hVjZ\"\n passwordConfirmation: \"4G7bX25hVjZ\"\n confirmSuccessUrl: \"http://haley.info/raphael\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alexandra.schmidt@mraz.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alexandra.schmidt@mraz.name"], ["encrypted_password", "$2a$04$PLWfUHywcEtthnkT3pq5KumcndP2DlTjdRkXNVjLm1c65mVZAy/Ri"], ["confirmation_token", "4ywNmmQnAYAV3Y31nntz"], ["confirmation_sent_at", "2019-10-13 19:03:18.839413"], ["name", "Rene Maggio"], ["email", "alexandra.schmidt@mraz.name"], ["created_at", "2019-10-13 19:03:18.839347"], ["updated_at", "2019-10-13 19:03:18.839347"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.7ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.4ms Sent mail to alexandra.schmidt@mraz.name (1.0ms) Date: Sun, 13 Oct 2019 14:03:18 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: alexandra.schmidt@mraz.name Message-ID: <5da374f6ce238_d08d3fc44c8320206433@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://haley.info/raphael

Welcome alexandra.schmidt@mraz.name!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 9ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fhaley.info%2Fraphael&variables%5Btoken%5D=4ywNmmQnAYAV3Y31nntz" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://haley.info/raphael", "token"=>"4ywNmmQnAYAV3Y31nntz"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "4ywNmmQnAYAV3Y31nntz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:18.851090"], ["updated_at", "2019-10-13 19:03:18.851735"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://haley.info/raphael?account_confirmation_success=true Completed 302 Found in 7ms (ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Clint Douglas\"\n password: \"NkSfOfHqQ8w\"\n passwordConfirmation: \"NkSfOfHqQ8w\"\n confirmSuccessUrl: \"http://block.net/arden_wilkinson\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "felipe_rolfson@lubowitz.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "felipe_rolfson@lubowitz.com"], ["encrypted_password", "$2a$04$MYDZApEHEs/gQnjXrhZ0B.8OPBcWmdaCCSkD0SXsn4XtBwzAF6K6y"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:18.872042"], ["name", "Robin DeCraydle"], ["email", "felipe_rolfson@lubowitz.com"], ["created_at", "2019-10-13 19:03:18.873271"], ["updated_at", "2019-10-13 19:03:18.873271"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"34OvC48-Jry_Oy34YZ7tMA\":{\"token\":\"$2a$10$C4XQ8JTQ9yYVtrXgb7.neOjeVTnqBVLNG93INVO08e59H6BIpTCai\",\"expiry\":1572202998,\"updated_at\":\"2019-10-13 19:03:18 UTC\"}}"], ["updated_at", "2019-10-13 19:03:18.930732"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "felipe_rolfson@lubowitz.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$B/Bi3yBvrA4drsZzWAsww.iCyihxQBU//JMwkx0HBmDK1dDadVMqG"], ["updated_at", "2019-10-13 19:03:18.981886"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:18.983021"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kim@moenorn.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kim@moenorn.biz"], ["encrypted_password", "$2a$04$5.zXXq/dwdzRf1zKggHsKelppOebieIvCMGjrRI7ufRMz07C9RXTO"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:18.987906"], ["name", "Chuck Roast"], ["email", "kim@moenorn.biz"], ["created_at", "2019-10-13 19:03:18.988804"], ["updated_at", "2019-10-13 19:03:18.988804"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"H-grCEPfZ273PQgh8yTRIg\":{\"token\":\"$2a$10$ht5FzQiC3neyuP51LddAj.EmU2ZU3vdTklIipuzTwJXyapchNFZSm\",\"expiry\":1572202999,\"updated_at\":\"2019-10-13 19:03:18 UTC\"}}"], ["updated_at", "2019-10-13 19:03:19.037789"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kim@moenorn.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$AIPmRKIRMTfh5jfTM6nBiuKu3Z8GoIlzUk1juYwBxsHiyIE5po.6."], ["updated_at", "2019-10-13 19:03:19.087060"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:19.088047"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cherri@marks.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cherri@marks.io"], ["encrypted_password", "$2a$04$GUl/YFQieSVgjtk1xGE51.16Wsr0o8HQSPBxO7YwscXH.U.BZsyA2"], ["confirmed_at", "2019-10-13 19:03:19.093782"], ["name", "Winsom Cash"], ["email", "cherri@marks.io"], ["created_at", "2019-10-13 19:03:19.094583"], ["updated_at", "2019-10-13 19:03:19.094583"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ukOt7OHHQPL_Iu7LEgtM1A\":{\"token\":\"$2a$10$X6/CDeLI97Qj7ceVA6MDA.pWuGZGZnmS/U3N81cThsUbRRXoSJeLu\",\"expiry\":1572202999,\"updated_at\":\"2019-10-13 19:03:19 UTC\"}}"], ["updated_at", "2019-10-13 19:03:19.142128"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "cherri@marks.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "maria.dooley@wolf.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "maria.dooley@wolf.net"], ["encrypted_password", "$2a$04$NVpZDWuPvSa5lX3FJXzF0eWHJBpFf/RqSdUd73.gqsSJe5fC0A23q"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:19.198295"], ["name", "Barry Cade"], ["email", "maria.dooley@wolf.net"], ["created_at", "2019-10-13 19:03:19.199411"], ["updated_at", "2019-10-13 19:03:19.199411"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"_ZuSx4IAG7lZneuKy9fk-A\":{\"token\":\"$2a$10$2q3iGXnMz3OyPxnmujS1x.iZWMnLYtcZmvbxBK7thhjLGGChvG4Ti\",\"expiry\":1572202999,\"updated_at\":\"2019-10-13 19:03:19 UTC\"}}"], ["updated_at", "2019-10-13 19:03:19.248165"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "maria.dooley@wolf.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$KA4G6mSEgU83l6QCV3xqDer6EUelxvYP3JbOVDpZsDwM4DXAx95d6"], ["updated_at", "2019-10-13 19:03:19.297043"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:19.298059"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jewel@collier.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jewel@collier.org"], ["encrypted_password", "$2a$04$9eTtJPxFAsZ9OBv2dKuSh./fRD8gPiZx5rI13knDkQuAyuGcpuMDe"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:19.303037"], ["name", "Rusty Fender"], ["email", "jewel@collier.org"], ["created_at", "2019-10-13 19:03:19.303897"], ["updated_at", "2019-10-13 19:03:19.303897"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EWWMsq-I3J-u_Ue-ZFpwHw\":{\"token\":\"$2a$10$ny6m6AJMhfXPutKC0oK8quZ8WDZtKOxvD3VzfoTHfRJeAmPy1J4CW\",\"expiry\":1572202999,\"updated_at\":\"2019-10-13 19:03:19 UTC\"}}"], ["updated_at", "2019-10-13 19:03:19.351137"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jewel@collier.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$hWukC5Bw2apZsheJsFWAD.PvNO2RJz9LqTNFWpdDqgpVB60420iP6"], ["updated_at", "2019-10-13 19:03:19.400566"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:19.401546"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vern@okunevabatz.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "vern@okunevabatz.net"], ["encrypted_password", "$2a$04$FlM9hV8JO/PnA0upY3BBcu9nb8iHkpdqH7ws25/QaPWAE4a.YMIqm"], ["confirmed_at", "2019-10-13 19:03:19.407251"], ["name", "Phil Graves"], ["email", "vern@okunevabatz.net"], ["created_at", "2019-10-13 19:03:19.408038"], ["updated_at", "2019-10-13 19:03:19.408038"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"qMoxr5w-Q3Di-e0MawzsxA\":{\"token\":\"$2a$10$2eAdTPBFmb6X3jEWFbTh0u6PRI2RYQxlxiQRo2J/Q/Rcv9UymvncG\",\"expiry\":1572202999,\"updated_at\":\"2019-10-13 19:03:19 UTC\"}}"], ["updated_at", "2019-10-13 19:03:19.453811"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "vern@okunevabatz.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$hXcgjR0bqlD9SmQdbEu5bett978JUF1XSvr2BvCgBBX5KFQ3k.HVW"], ["updated_at", "2019-10-13 19:03:19.505038"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gerardo@jenkins.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gerardo@jenkins.biz"], ["encrypted_password", "$2a$04$.uexoqLOBYHbxzQrdYTU9Om4LlzajKX1A39TqLGoDbbQOVlnkliEe"], ["confirmed_at", "2019-10-13 19:03:19.512472"], ["name", "Hy Gene"], ["email", "gerardo@jenkins.biz"], ["created_at", "2019-10-13 19:03:19.513264"], ["updated_at", "2019-10-13 19:03:19.513264"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jesus@hackett.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jesus@hackett.info"], ["encrypted_password", "$2a$04$EdeOkGsPEv.tPxjY60MUR.9eyctBVSYPiUMXxBPkbYVFfAfPP9GYC"], ["confirmed_at", "2019-10-13 19:03:19.521969"], ["name", "Dusty Rhodes"], ["email", "jesus@hackett.info"], ["created_at", "2019-10-13 19:03:19.522957"], ["updated_at", "2019-10-13 19:03:19.522957"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ca0dc644a08c03401b471085f66a2e57f0ec8b105ececbec4dd51d88ed0e39f6"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "ca0dc644a08c03401b471085f66a2e57f0ec8b105ececbec4dd51d88ed0e39f6"], ["reset_password_sent_at", "2019-10-13 19:03:19.524791"], ["updated_at", "2019-10-13 19:03:19.525119"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22sZHf-KengEJ86y8Dmpp_%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"sZHf-KengEJ86y8Dmpp_\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ca0dc644a08c03401b471085f66a2e57f0ec8b105ececbec4dd51d88ed0e39f6"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"pwLcSK0Tevf_-dE5NyvSKQ\":{\"token\":\"$2a$10$2g74nP0OUmtoepRAt1nRJuXzXXQ1uzGUPcZreS.ivTfwq0PdcH7Fm\",\"expiry\":1572202999}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:19.581129"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"pwLcSK0Tevf_-dE5NyvSKQ\":{\"token\":\"$2a$10$2g74nP0OUmtoepRAt1nRJuXzXXQ1uzGUPcZreS.ivTfwq0PdcH7Fm\",\"expiry\":1572202999},\"Zqu8xnxWvsvGkKAv5FBlvw\":{\"token\":\"$2a$10$lcRKfcwqYSFzwxUbD/Mmq.R/KXvQBnq4.EcQHO.qJYh.28I4VbMga\",\"expiry\":1572202999,\"updated_at\":\"2019-10-13 19:03:19 UTC\"}}"], ["updated_at", "2019-10-13 19:03:19.626151"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 100ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kindra@heidenreich.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kindra@heidenreich.biz"], ["encrypted_password", "$2a$04$r4hUFNWZRb1h6EHIDbFdT.wto3Gc3.xPDmN4HZo1irVv34.Oa4KoG"], ["confirmed_at", "2019-10-13 19:03:19.629607"], ["name", "Cy Burns"], ["email", "kindra@heidenreich.biz"], ["created_at", "2019-10-13 19:03:19.630225"], ["updated_at", "2019-10-13 19:03:19.630225"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "678b418d7b24eff02d21448f00907c165feeb87720f51ccc83af765c7d825328"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "678b418d7b24eff02d21448f00907c165feeb87720f51ccc83af765c7d825328"], ["reset_password_sent_at", "2019-10-13 19:03:19.631304"], ["updated_at", "2019-10-13 19:03:19.631479"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22vkVevwoZ9XP-TBJPxJF1%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"vkVevwoZ9XP-TBJPxJF1\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "678b418d7b24eff02d21448f00907c165feeb87720f51ccc83af765c7d825328"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"PcON0o_b0YzzE8TueejHcg\":{\"token\":\"$2a$10$glC.z7f4JVXqEa1VbCqcAe.lgb5u759T6TN9hSLFF4Y.r6zOsnm5.\",\"expiry\":1572202999}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:19.680865"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=LY5xkFq-VZdJDnxo5lWWWg&client=PcON0o_b0YzzE8TueejHcg&client_id=PcON0o_b0YzzE8TueejHcg&config=&expiry=1572202999&reset_password=true&token=LY5xkFq-VZdJDnxo5lWWWg&uid=kindra%40heidenreich.biz Completed 302 Found in 50ms (ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "reynalda.mcdermott@hirthe.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "reynalda.mcdermott@hirthe.info"], ["encrypted_password", "$2a$04$qgfrenVfiSjlf0W18KhsLu0nmjbzp/HisYq10ECzFtuYrHr5T1eJS"], ["confirmed_at", "2019-10-13 09:03:19"], ["name", "Bill Lowney"], ["email", "reynalda.mcdermott@hirthe.info"], ["created_at", "2019-10-13 09:03:19"], ["updated_at", "2019-10-13 09:03:19"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "705f47e5117091111b2dc90ff21568f47d4e2b8a44e94473a91b5432b74c1fff"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "705f47e5117091111b2dc90ff21568f47d4e2b8a44e94473a91b5432b74c1fff"], ["reset_password_sent_at", "2019-10-13 09:03:19"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22-5VGEnCgdx7VBk7x7Wok%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"-5VGEnCgdx7VBk7x7Wok\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "705f47e5117091111b2dc90ff21568f47d4e2b8a44e94473a91b5432b74c1fff"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jule_schroeder@weinat.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jule_schroeder@weinat.com"], ["encrypted_password", "$2a$04$eHlxg6tQmQP5WNgTI0sHVuIhmpuh5dOCcfVGshEDyXMOWh0DJwBSG"], ["confirmed_at", "2019-10-13 19:03:19.695945"], ["name", "Tommy Gunn"], ["email", "jule_schroeder@weinat.com"], ["created_at", "2019-10-13 19:03:19.696761"], ["updated_at", "2019-10-13 19:03:19.696761"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f037a4111d7c80c1a8f187a9e946aa50cd91a0c31db7f9e84aa8d22410d3a99c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f037a4111d7c80c1a8f187a9e946aa50cd91a0c31db7f9e84aa8d22410d3a99c"], ["reset_password_sent_at", "2019-10-13 19:03:19.698110"], ["updated_at", "2019-10-13 19:03:19.698333"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22EzF_zEQihxk4mr7wRnMginvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"EzF_zEQihxk4mr7wRnMginvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "84d987e5283349cea8f9005bb8ac1e81f12f54282a48ff19041a609b3549b786"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hortense@cruickshank.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hortense@cruickshank.biz"], ["encrypted_password", "$2a$04$z1pDoHWL1vfcgYwfpZyGwORL7TorQxrLB5i585s0YXpZ94.9x2drq"], ["confirmation_token", "k2VzLX-dqvvSDnGkdyCu"], ["confirmation_sent_at", "2019-10-13 19:03:19.706053"], ["name", "Robin Banks"], ["email", "hortense@cruickshank.biz"], ["created_at", "2019-10-13 19:03:19.705963"], ["updated_at", "2019-10-13 19:03:19.705963"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.9ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 4.1ms Sent mail to hortense@cruickshank.biz (1.2ms) Date: Sun, 13 Oct 2019 14:03:19 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: hortense@cruickshank.biz Message-ID: <5da374f7add53_d08d3fc44c8320206441a@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome hortense@cruickshank.biz!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22k2VzLX-dqvvSDnGkdyCu%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fhartmannanderson.name%2Fbyron.schultz%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"k2VzLX-dqvvSDnGkdyCu\"\n redirectUrl: \"http://hartmannanderson.name/byron.schultz\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "k2VzLX-dqvvSDnGkdyCu"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:19.716616"], ["updated_at", "2019-10-13 19:03:19.717054"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://hartmannanderson.name/byron.schultz?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ariel@schinnerwatsica.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ariel@schinnerwatsica.net"], ["encrypted_password", "$2a$04$OepJxeTLvz8s0pg/yaRUOuiPgxMUAo2mNw1/8FREdwwqSxJL93SS2"], ["confirmation_token", "n6wJTc5efykDqFgJC7iv"], ["confirmation_sent_at", "2019-10-13 19:03:19.724439"], ["name", "Joe Czarfunee"], ["email", "ariel@schinnerwatsica.net"], ["created_at", "2019-10-13 19:03:19.724328"], ["updated_at", "2019-10-13 19:03:19.724328"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22n6wJTc5efykDqFgJC7iv-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fbednarwelch.net%2Fmilton_rohan%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"n6wJTc5efykDqFgJC7iv-invalid\"\n redirectUrl: \"http://bednarwelch.net/milton_rohan\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "n6wJTc5efykDqFgJC7iv-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "c0d42136e73e2e214d9ac47022572fc92012cfd9611c6a7b13053688bc2cf4ba"], ["LIMIT", 1]] Completed 200 OK in 87ms (Views: 0.2ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stuart@schultz.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "stuart@schultz.com"], ["encrypted_password", "$2a$04$91ErOuwwFaVx3pQ4K6yS2O2xqKbtpZ1LnBPntNZ0zh1THZcMo.7Dq"], ["confirmed_at", "2019-10-13 19:03:19.817577"], ["name", "Sue Permann"], ["email", "stuart@schultz.com"], ["created_at", "2019-10-13 19:03:19.833083"], ["updated_at", "2019-10-13 19:03:19.833083"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"38tT3LWck4mwVIHR_NC51A\":{\"token\":\"$2a$10$RbOKSlRGmp0HvdhDMppYIek75rEc5bbcb3uLmpDRzNzlbq7SHHOaa\",\"expiry\":1572202999,\"updated_at\":\"2019-10-13 19:03:19 UTC\"}}"], ["updated_at", "2019-10-13 19:03:19.882494"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:19 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "stuart@schultz.com"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "laverne@predovicabernathy.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "laverne@predovicabernathy.io"], ["encrypted_password", "$2a$04$yDMXxNS5z3nS6eTYwjLCw.wPx6qialFT.pdp8ioL5jyol2yjtCzDW"], ["confirmed_at", "2019-10-13 19:03:19.943044"], ["name", "Ilene Dover"], ["email", "laverne@predovicabernathy.io"], ["created_at", "2019-10-13 19:03:19.943782"], ["updated_at", "2019-10-13 19:03:19.943782"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:19 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "milo.roob@witting.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "milo.roob@witting.info"], ["encrypted_password", "$2a$04$O1sDik/Au3PULQXKMe08JOu0oWSYE3.xOEyeV4VJSXbN.u2ENUIW2"], ["confirmed_at", "2019-10-13 19:03:22.795096"], ["name", "Les Payne"], ["email", "milo.roob@witting.info"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:22.797052"], ["updated_at", "2019-10-13 19:03:22.797052"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"milo.roob@witting.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "milo.roob@witting.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"G19a6eMHppTZd0XPSQF-ug\":{\"token\":\"$2a$12$.rgwyk2bLtDmTqTQEmQYMuAv1AkIeBfnmPXSkAWY.H5GmCK53z4a.\",\"expiry\":1572203002,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:22.825-05:00\"}}"], ["updated_at", "2019-10-13 19:03:23.005313"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:03:23.008725"], ["last_sign_in_at", "2019-10-13 19:03:23.008725"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:03:23.009046"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 199ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gwenda.stroman@pacocha.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gwenda.stroman@pacocha.io"], ["encrypted_password", "$2a$04$C3NQ7FJWsZ/VDtvh5GAeo.z4sP3Y4/gGuz/CNwEkXLCG7s9eJF2NO"], ["confirmed_at", "2019-10-13 19:03:23.016268"], ["name", "Rusty Fossat"], ["email", "gwenda.stroman@pacocha.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:23.017127"], ["updated_at", "2019-10-13 19:03:23.017127"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"gwenda.stroman@pacocha.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gwenda.stroman@pacocha.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-10-13 19:03:23.021358"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cherri@effertz.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cherri@effertz.biz"], ["encrypted_password", "$2a$04$kNcTAtzwIi2Y7dNVr0vhXeAf8zQ2xpnF0Z9AcWquQxHf4AuUGel1m"], ["confirmation_token", "kgA4uwrg3SDVM1pTzxoz"], ["confirmation_sent_at", "2019-10-13 19:03:23.025628"], ["name", "Dan Geruss"], ["email", "cherri@effertz.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:23.025552"], ["updated_at", "2019-10-13 19:03:23.025552"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"cherri@effertz.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cherri@effertz.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "broderick_altenwerth@kiehn.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "broderick_altenwerth@kiehn.com"], ["encrypted_password", "$2a$04$tkenGQI8ALwdeQ4msrp4zeCBhUMbC9WCwdid0TmnPqrXgg5VFMNP."], ["confirmed_at", "2019-10-13 19:03:23.031897"], ["locked_at", "2019-10-13 19:03:23.031906"], ["name", "C. Worthy"], ["email", "broderick_altenwerth@kiehn.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:23.032628"], ["updated_at", "2019-10-13 19:03:23.032628"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"broderick_altenwerth@kiehn.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "broderick_altenwerth@kiehn.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ja.cremin@yundtschumm.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ja.cremin@yundtschumm.name"], ["encrypted_password", "$2a$04$AE6D2FAU0g37jcmq3cpHRObK/u5thDegmn8sSYcKY7gXrNAGylASG"], ["confirmed_at", "2019-10-13 19:03:23.040771"], ["name", "Darryl Likt"], ["email", "ja.cremin@yundtschumm.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:23.041935"], ["updated_at", "2019-10-13 19:03:23.041935"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ja.cremin@yundtschumm.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ja.cremin@yundtschumm.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "leonardo@parker.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "leonardo@parker.biz"], ["encrypted_password", "$2a$04$HaplVRmDQ1UsMyf2JD8.yuUJnmf3weaKxJgSOSlzDIy.C2PB4dKCy"], ["confirmed_at", "2019-10-13 19:03:23.061483"], ["email", "leonardo@parker.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:23.062815"], ["updated_at", "2019-10-13 19:03:23.062815"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"leonardo@parker.biz\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "leonardo@parker.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"Y3CBXRFvagXA4nuKSvMNQQ\":{\"token\":\"$2a$12$oh2OqYRB8D1Se2VDS5Rc6uy7QNC6BtpPdFQmi4AEnT9dYTkVnBiCC\",\"expiry\":1572203003,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:23.068-05:00\"}}"], ["updated_at", "2019-10-13 19:03:23.256932"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 193ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "miranda@bashirian.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "miranda@bashirian.net"], ["encrypted_password", "$2a$04$JAHwYdaQHT3G99ZR/M7m5Oq0BdIPWyLAu7IMvRAqolq5KHqYIWeHa"], ["confirmed_at", "2019-10-13 19:03:23.262118"], ["name", "Mel Loewe"], ["email", "miranda@bashirian.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:23.263071"], ["updated_at", "2019-10-13 19:03:23.263071"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"IWfcm9KSjkYAuyD4XLiXqg\":{\"token\":\"$2a$12$FJJXMkKm0XDUGtHCMxAcqeD44YjW79lu3pf/iKokFwn2g8lgbN/rS\",\"expiry\":1572203003,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:23.264-05:00\"}}"], ["updated_at", "2019-10-13 19:03:23.448913"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "miranda@bashirian.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 19:03:23.629744"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 180ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "michaela.shanahan@smitham.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "michaela.shanahan@smitham.io"], ["encrypted_password", "$2a$04$dIUk7w4AflRcttyakkvPIeDcLWqTFBZ74joXqATI.61dQwe5iQ.di"], ["confirmed_at", "2019-10-13 19:03:23.639023"], ["name", "Holly Day"], ["email", "michaela.shanahan@smitham.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:23.640036"], ["updated_at", "2019-10-13 19:03:23.640036"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "tynisha_gaylord@kautzer.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tynisha_gaylord@kautzer.name"], ["encrypted_password", "$2a$04$AXM3KGigicF65UP8dAv83.RHnFd1j059Q3MQOPG9VQptKxP/8aUQ6"], ["confirmed_at", "2019-10-13 19:03:23.644414"], ["email", "tynisha_gaylord@kautzer.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:23.645160"], ["updated_at", "2019-10-13 19:03:23.645160"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"bxtCoFvQPpufDYTs6pubuA\":{\"token\":\"$2a$12$iBr9vmxSETyVWSO6nyOZt.GxTvBlluhKPBIuqSWweWDaeqt3ywQ2G\",\"expiry\":1572203003,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:23.646-05:00\"}}"], ["updated_at", "2019-10-13 19:03:23.822826"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "tynisha_gaylord@kautzer.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 19:03:24.000622"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 177ms (Views: 0.1ms | ActiveRecord: 0.3ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "laine.friesen@mantestokes.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "laine.friesen@mantestokes.name"], ["encrypted_password", "$2a$04$PMtY3UFAK.cAsD6bl2de..V6mWOkkNhMdktfk4BVvOohmYOC5UkMe"], ["confirmed_at", "2019-10-13 19:03:24.006781"], ["name", "Ophelia Payne"], ["email", "laine.friesen@mantestokes.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:24.007684"], ["updated_at", "2019-10-13 19:03:24.007684"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"laine.friesen@mantestokes.name\",\n redirectUrl: \"http://dicki.io/vella\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE (uid = 'laine.friesen@mantestokes.name' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b251c95ec32ecd264285d13079c3d01c651be1ee1fc46924969280a1f67cbcd0"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b251c95ec32ecd264285d13079c3d01c651be1ee1fc46924969280a1f67cbcd0"], ["reset_password_sent_at", "2019-10-13 19:03:24.091717"], ["updated_at", "2019-10-13 19:03:24.091972"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (1.6ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 116.7ms Sent mail to laine.friesen@mantestokes.name (3.5ms) Date: Sun, 13 Oct 2019 14:03:24 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: laine.friesen@mantestokes.name Message-ID: <5da374fc33b9c_d0a43fc7f1c2ffd089249@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: laine.friesen@mantestokes.name provider: email redirect-url: http://dicki.io/vella client-config: default

Hello laine.friesen@mantestokes.name!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 204ms (Views: 0.1ms | ActiveRecord: 0.4ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fdicki.io%2Fvella&variables%5Btoken%5D=Yuiex1WCq2ybkqp4ctgP" for 127.0.0.1 at 2019-10-13 14:03:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://dicki.io/vella", "token"=>"Yuiex1WCq2ybkqp4ctgP"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b251c95ec32ecd264285d13079c3d01c651be1ee1fc46924969280a1f67cbcd0"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"a6VOeI9cjJMKVF99idhXPQ\":{\"token\":\"$2a$12$45qiFgfKu.uzN3jjilGIDu9KG0qM4AJP.fCJvN8oOlUsqjgKlKyVm\",\"expiry\":1572203004}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:24.388412"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://dicki.io/vella?access-token=1572203004&client=a6VOeI9cjJMKVF99idhXPQ&client_id=a6VOeI9cjJMKVF99idhXPQ&config=&expiry=1572203004&reset_password=true&token=1572203004&uid=laine.friesen%40mantestokes.name Completed 302 Found in 174ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://thiel.name/gertrude_welch\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE (uid = 'nothere@gmail.com' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"errol@powlowskiadams.net\"\n name: \"Robbi Feest\"\n password: \"1ThPx6Va2Pl1P\"\n passwordConfirmation: \"1ThPx6Va2Pl1P\"\n confirmSuccessUrl: \"http://lehner.com/weldon\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "errol@powlowskiadams.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "errol@powlowskiadams.net"], ["encrypted_password", "$2a$04$Hw3AlDcCwwCvW3HSSbiRjuop9dtI8s1VCLPXBPEgZeQYFcMd8pk/m"], ["confirmation_token", "hak7g4sfzyNrEJiRi5wP"], ["confirmation_sent_at", "2019-10-13 19:03:24.400644"], ["name", "Robbi Feest"], ["email", "errol@powlowskiadams.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:24.400578"], ["updated_at", "2019-10-13 19:03:24.400578"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.6ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.5ms Sent mail to errol@powlowskiadams.net (0.9ms) Date: Sun, 13 Oct 2019 14:03:24 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: errol@powlowskiadams.net Message-ID: <5da374fc62d1e_d0a43fc7f1c2ffd089339@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://lehner.com/weldon

Welcome errol@powlowskiadams.net!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.0ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Flehner.com%2Fweldon&variables%5Btoken%5D=hak7g4sfzyNrEJiRi5wP" for 127.0.0.1 at 2019-10-13 14:03:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://lehner.com/weldon", "token"=>"hak7g4sfzyNrEJiRi5wP"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "hak7g4sfzyNrEJiRi5wP"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:24.409908"], ["updated_at", "2019-10-13 19:03:24.410171"], ["id", 1]]  (0.3ms) RELEASE SAVEPOINT active_record_1 Redirected to http://lehner.com/weldon?account_confirmation_success=true Completed 302 Found in 5ms (ActiveRecord: 0.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Gilbert Nitzsche DVM\"\n password: \"X0jQqI6wUs0C0cUw\"\n passwordConfirmation: \"X0jQqI6wUs0C0cUw\"\n confirmSuccessUrl: \"http://jacobi.com/carmen\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.0ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sabrina.hansen@blick.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sabrina.hansen@blick.com"], ["encrypted_password", "$2a$04$O0rcLngKm7xqte1HuY7WIeKGxQtOID.sjkJYXcSkUXhXAQrh1bUoS"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:24.424280"], ["name", "Jasmine Rice"], ["email", "sabrina.hansen@blick.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:24.425198"], ["updated_at", "2019-10-13 19:03:24.425198"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"xjZBvD2E4CaJ2Cr6e0IlpA\":{\"token\":\"$2a$12$pLHdDVUZI7V07J400SLKaOMfbxmDSYLH9yXSnLTSMVcmag/.X/4g.\",\"expiry\":1572203004,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:24.426-05:00\"}}"], ["updated_at", "2019-10-13 19:03:24.607472"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sabrina.hansen@blick.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$dENJYdPnNvpr1aAXYkHJre6mfRd1k8Emvr5nYM24m85.uvWGM.pqu"], ["updated_at", "2019-10-13 19:03:24.781027"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:24.782059"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 174ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elwood@quitzon.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elwood@quitzon.biz"], ["encrypted_password", "$2a$04$O85iSKdr1SzvrccOnidb5.nuEnyiDLWJZ2Bmd.PYXjxyrYWdWFjEe"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:24.787652"], ["name", "Justin Sane"], ["email", "elwood@quitzon.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:24.788621"], ["updated_at", "2019-10-13 19:03:24.788621"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"4vAe-HV4VfDycKSK9NzkMw\":{\"token\":\"$2a$12$JOug2ryfai7YYRD/t1Zwc.6PNrzxnXNi5JQMwqcKacoKZhcXlwws6\",\"expiry\":1572203004,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:24.789-05:00\"}}"], ["updated_at", "2019-10-13 19:03:24.972315"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "elwood@quitzon.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$t4IgXjrYKrbKEDvcPGB87.QwguZNir1.Qq2QqO4furyHI5qP1SRAC"], ["updated_at", "2019-10-13 19:03:25.156658"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:25.157728"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 185ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "andree.turner@padbergrogahn.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "andree.turner@padbergrogahn.biz"], ["encrypted_password", "$2a$04$uaDjXXLzt0zpT113QtKFlO.nXkiPrRXPlRR43cIieqIjY20fyNoD."], ["confirmed_at", "2019-10-13 19:03:25.164773"], ["name", "Penny Wise"], ["email", "andree.turner@padbergrogahn.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:25.165575"], ["updated_at", "2019-10-13 19:03:25.165575"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BEVLWUay1fDz2mIJcwFLiA\":{\"token\":\"$2a$12$FxoMGodoBiiGXv6yJfEeM.ypDBvlJ7kUjNqzZlxx6lEg0x.GPD5l2\",\"expiry\":1572203005,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:25.166-05:00\"}}"], ["updated_at", "2019-10-13 19:03:25.345845"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "andree.turner@padbergrogahn.biz"], ["LIMIT", 1]] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 184ms (Views: 0.4ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ursula@kaulke.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ursula@kaulke.name"], ["encrypted_password", "$2a$04$QRtFx71yUJXRL2mYnnG1yeojijPVlVeqECWoOiL4bEpaiJ5BQrkEK"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:25.535109"], ["name", "Kerry Oki"], ["email", "ursula@kaulke.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:25.536116"], ["updated_at", "2019-10-13 19:03:25.536116"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DfxTXE44DGhvXcNh_uk8Ig\":{\"token\":\"$2a$12$7oTaMqMZiSVTm2B7OrmsVOndnUXMD.UWaZLhHna9TlsawiMG2Tn1.\",\"expiry\":1572203005,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:25.537-05:00\"}}"], ["updated_at", "2019-10-13 19:03:25.721939"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ursula@kaulke.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$1l9CnzBAG9T4z3OSXTKIuuVBuOTcC/A.IFZn87XX0mI0S6uFg1brC"], ["updated_at", "2019-10-13 19:03:25.892778"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:25.893724"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 171ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mauro_jerde@doylekuphal.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mauro_jerde@doylekuphal.biz"], ["encrypted_password", "$2a$04$OTtzN7Xq6zk76dxUKM0FBu6jV9DYyyJrXCrUMXyackr.2xTSGoMHy"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:25.898646"], ["name", "Duane DeVane"], ["email", "mauro_jerde@doylekuphal.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:25.899453"], ["updated_at", "2019-10-13 19:03:25.899453"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"d2gx-9oQ1vUkb6g8FG0Row\":{\"token\":\"$2a$12$uUZmvd5No3DYP3QyBOPSSuupxgLvfr7dxsSEh4D1vIU5.TwmRxzz2\",\"expiry\":1572203005,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:25.900-05:00\"}}"], ["updated_at", "2019-10-13 19:03:26.075544"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "mauro_jerde@doylekuphal.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$2e36Cf4jS36krxre6jOtq.7pZV9./BmvLj9OAuXbuzKOvvLcRu.3i"], ["updated_at", "2019-10-13 19:03:26.245975"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:26.247013"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 171ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "grover_lindgren@nicolasmcclure.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "grover_lindgren@nicolasmcclure.com"], ["encrypted_password", "$2a$04$JT8I./Vj6IDP5Hp2NkezleXFV9z/q2AdN8RxwUvB5E/jkIFjIDY5O"], ["confirmed_at", "2019-10-13 19:03:26.254244"], ["name", "Bess Eaton"], ["email", "grover_lindgren@nicolasmcclure.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:26.254967"], ["updated_at", "2019-10-13 19:03:26.254967"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"k6YSeEzoxQij5Y95-z-oNw\":{\"token\":\"$2a$12$Ts9AHkADlLz0S6.4B2oHpeSnVmjEhWu0lEcqfXpa0jnEmwWKi4nke\",\"expiry\":1572203006,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:26.255-05:00\"}}"], ["updated_at", "2019-10-13 19:03:26.430438"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "grover_lindgren@nicolasmcclure.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$BunL1zX5k3v6XuG6RRuNyusNP/E8dCxwxUCkGLnh7Gaa1iY7zODpe"], ["updated_at", "2019-10-13 19:03:26.600237"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 170ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "louetta@beier.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "louetta@beier.io"], ["encrypted_password", "$2a$04$iplVwmfpy4tDtwvd4EpjLuitsokomeVziTjdyR9F8.dwkUsVEWa8u"], ["confirmed_at", "2019-10-13 19:03:26.606547"], ["name", "Ivan Oder"], ["email", "louetta@beier.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:26.607313"], ["updated_at", "2019-10-13 19:03:26.607313"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "maryanna@quigley.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "maryanna@quigley.io"], ["encrypted_password", "$2a$04$KxEBfWwp.HKToKuuJUFb/.HUvq76Y39285JusKNwI325unnZDmws2"], ["confirmed_at", "2019-10-13 19:03:26.612995"], ["name", "Ophelia Payne"], ["email", "maryanna@quigley.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:26.613567"], ["updated_at", "2019-10-13 19:03:26.613567"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "80b42c4d0183aad5ed72d3bb1bd2f94286edd386e12b571959e84e08973f2cce"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "80b42c4d0183aad5ed72d3bb1bd2f94286edd386e12b571959e84e08973f2cce"], ["reset_password_sent_at", "2019-10-13 19:03:26.614715"], ["updated_at", "2019-10-13 19:03:26.614871"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22LEDHSb3zk3ufgBo3SpS_%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"LEDHSb3zk3ufgBo3SpS_\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "80b42c4d0183aad5ed72d3bb1bd2f94286edd386e12b571959e84e08973f2cce"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"rchyHZsFr5AIYlg4guAJ5g\":{\"token\":\"$2a$12$wJT/KIaXDgnyjj8Ff/YW1O4mkojbkDWnSyMRUZpCYX7ncHJdYH/vO\",\"expiry\":1572203006}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:26.789753"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"rchyHZsFr5AIYlg4guAJ5g\":{\"token\":\"$2a$12$wJT/KIaXDgnyjj8Ff/YW1O4mkojbkDWnSyMRUZpCYX7ncHJdYH/vO\",\"expiry\":1572203006},\"jyQH2j1EQVoLPfg8kclxnA\":{\"token\":\"$2a$12$/sh5cZWTsyNPkaenNnUXWeOzSQ8YuA5qWu6egT/pl5ZrIn95Q52UC\",\"expiry\":1572203006,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:26.790-05:00\"}}"], ["updated_at", "2019-10-13 19:03:26.955995"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 341ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fe@gislason.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "fe@gislason.io"], ["encrypted_password", "$2a$04$UlNicTN27yu4IQt5OOFdkuI4LMq57N84T0/.9ZmmKX.mSwVQcOTFG"], ["confirmed_at", "2019-10-13 19:03:26.960146"], ["name", "Ariel Hassle"], ["email", "fe@gislason.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:26.960887"], ["updated_at", "2019-10-13 19:03:26.960887"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "76edc15d7e280e34019ea8d8aa3c357601e32943ed6af8d856b3f07b77db3b63"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "76edc15d7e280e34019ea8d8aa3c357601e32943ed6af8d856b3f07b77db3b63"], ["reset_password_sent_at", "2019-10-13 19:03:26.962122"], ["updated_at", "2019-10-13 19:03:26.962277"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22J4FdFfXhwzqxzfRKJL8J%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"J4FdFfXhwzqxzfRKJL8J\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "76edc15d7e280e34019ea8d8aa3c357601e32943ed6af8d856b3f07b77db3b63"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3bqzIxPmsxQIGE9T7iLWoQ\":{\"token\":\"$2a$12$Z0fV4Ys7tBi9hLj8PUlho.f.uNz7tJxfL2pgk884sVc8pVswq.E2e\",\"expiry\":1572203006}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:27.141589"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1572203006&client=3bqzIxPmsxQIGE9T7iLWoQ&client_id=3bqzIxPmsxQIGE9T7iLWoQ&config=&expiry=1572203006&reset_password=true&token=1572203006&uid=fe%40gislason.io Completed 302 Found in 179ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "timothy.kilback@turner.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "timothy.kilback@turner.io"], ["encrypted_password", "$2a$04$4sRt3k8GV2prbJ1UO6XTmeMVwxfjQm2GceEcaO5IE.6JiaO5EpEne"], ["confirmed_at", "2019-10-13 09:03:27"], ["name", "Ben Down"], ["email", "timothy.kilback@turner.io"], ["tokens", "{}"], ["created_at", "2019-10-13 09:03:27"], ["updated_at", "2019-10-13 09:03:27"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "628fcd0ea907017920b1033331c85f492d9f89a997838886fd90fccdb9e88f26"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "628fcd0ea907017920b1033331c85f492d9f89a997838886fd90fccdb9e88f26"], ["reset_password_sent_at", "2019-10-13 09:03:27"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22xxjwJs8-stxuwYY57jj6%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"xxjwJs8-stxuwYY57jj6\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "628fcd0ea907017920b1033331c85f492d9f89a997838886fd90fccdb9e88f26"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "devon.halvorson@langoshlangworth.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "devon.halvorson@langoshlangworth.org"], ["encrypted_password", "$2a$04$qm5SCFuf2idO.4cXCUyb1O0xJafcaTMoQxowSyZBnVGQ0HNTFF0mK"], ["confirmed_at", "2019-10-13 19:03:27.155358"], ["name", "Al Kaseltzer"], ["email", "devon.halvorson@langoshlangworth.org"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:27.156045"], ["updated_at", "2019-10-13 19:03:27.156045"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7be52752fab4438b75cbb9f79b9cfc20e4489695ba4d504e8339fafa050b847f"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7be52752fab4438b75cbb9f79b9cfc20e4489695ba4d504e8339fafa050b847f"], ["reset_password_sent_at", "2019-10-13 19:03:27.157335"], ["updated_at", "2019-10-13 19:03:27.157502"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%223TXxkr9jCzen6_nxs7V9invalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"3TXxkr9jCzen6_nxs7V9invalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "6fff85d1970ffa00a65366d1a638a9a516859e6ddb4b0ed19d5f30f48b2080f5"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ula@bashirian.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ula@bashirian.co"], ["encrypted_password", "$2a$04$ayTHZkQjzvWzLQBkzLdvK.xMnrWKGB7ZSwI6601yZ/zeypTO6LsVu"], ["confirmation_token", "XAFfS1149MAWWyeX7KsC"], ["confirmation_sent_at", "2019-10-13 19:03:27.163229"], ["name", "Hare Brain"], ["email", "ula@bashirian.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:27.163168"], ["updated_at", "2019-10-13 19:03:27.163168"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.8ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms Sent mail to ula@bashirian.co (1.5ms) Date: Sun, 13 Oct 2019 14:03:27 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: ula@bashirian.co Message-ID: <5da374ff28d72_d0a43fc7f1c2ffd0894c6@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome ula@bashirian.co!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22XAFfS1149MAWWyeX7KsC%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fstamm.net%2Ffrederick_heidenreich%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"XAFfS1149MAWWyeX7KsC\"\n redirectUrl: \"http://stamm.net/frederick_heidenreich\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "XAFfS1149MAWWyeX7KsC"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:27.171180"], ["updated_at", "2019-10-13 19:03:27.171514"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://stamm.net/frederick_heidenreich?account_confirmation_success=true Completed 302 Found in 23ms (ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "laticia@beer.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "laticia@beer.org"], ["encrypted_password", "$2a$04$EfuYD/ZqcMSCPVMNpOMXu.wZF4BuFFt2N0xBXijf07Quqw/JSKh1K"], ["confirmation_token", "b3jppAyTGzdR47jGNjPx"], ["confirmation_sent_at", "2019-10-13 19:03:27.196973"], ["name", "Penny Wise"], ["email", "laticia@beer.org"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:27.196877"], ["updated_at", "2019-10-13 19:03:27.196877"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22b3jppAyTGzdR47jGNjPx-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fkiehn.io%2Frosy.waelchi%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"b3jppAyTGzdR47jGNjPx-invalid\"\n redirectUrl: \"http://kiehn.io/rosy.waelchi\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "b3jppAyTGzdR47jGNjPx-invalid"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "81b4470d00c9d3714abfafd30ffd2257e6629040b5344a84db0760ef1fee773a"], ["LIMIT", 1]] Completed 200 OK in 89ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mark@bechtelar.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mark@bechtelar.info"], ["encrypted_password", "$2a$04$2PePqel9GTptF0G10vVqBOp4MmyjSoHnhNPW4Q9gsf3gQ4YHE/QHS"], ["confirmed_at", "2019-10-13 19:03:27.293040"], ["name", "Don Key"], ["email", "mark@bechtelar.info"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:27.293767"], ["updated_at", "2019-10-13 19:03:27.293767"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"RyYewV97JMhlr7sL1Lgq9w\":{\"token\":\"$2a$12$EPkcp2H1gfQJK5CjhgemxusxsYNERcc4q5kzCcXzo9UE70cXz8ziq\",\"expiry\":1572203007,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:27.294-05:00\"}}"], ["updated_at", "2019-10-13 19:03:27.475611"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:27 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "mark@bechtelar.info"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 184ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kaylee@padbergkuhn.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kaylee@padbergkuhn.com"], ["encrypted_password", "$2a$04$tJPo2NghTdsj7/13Dcp40O1TBJSDA5UITeX5K.MGL63Q.zih45t9S"], ["confirmed_at", "2019-10-13 19:03:27.667561"], ["name", "Ed Venture"], ["email", "kaylee@padbergkuhn.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:27.668364"], ["updated_at", "2019-10-13 19:03:27.668364"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:27 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "min@barton.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "min@barton.org"], ["encrypted_password", "$2a$04$7H0g2RcBISdrM2O0nbpHLO5B5Np1KVZcW12nzv5PNNy9EyB1kHPyC"], ["confirmed_at", "2019-10-13 19:03:30.500845"], ["name", "Cole Durkee"], ["email", "min@barton.org"], ["created_at", "2019-10-13 19:03:30.502808"], ["updated_at", "2019-10-13 19:03:30.502808"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"min@barton.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "min@barton.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YL7RTIl3kOZ_qO-g2fufHw\":{\"token\":\"$2a$10$YjZKbbBW0m.sAGhwJzDvUOPaOKomPvyQHfp99C.4dw9pMETQoRkKa\",\"expiry\":1572203010,\"updated_at\":\"2019-10-13 19:03:30 UTC\"}}"], ["updated_at", "2019-10-13 19:03:30.577487"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:03:30.581064"], ["last_sign_in_at", "2019-10-13 19:03:30.581064"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:03:30.581451"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 65ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "willena@gutkowskiwitting.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "willena@gutkowskiwitting.net"], ["encrypted_password", "$2a$04$.6UcP1ruW3d5QEt/VOpj1evo3Ew9tJPmLHYQwyAJ2t.YGlDu2YNFW"], ["confirmed_at", "2019-10-13 19:03:30.588741"], ["name", "Sam Manilla"], ["email", "willena@gutkowskiwitting.net"], ["created_at", "2019-10-13 19:03:30.589617"], ["updated_at", "2019-10-13 19:03:30.589617"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"willena@gutkowskiwitting.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "willena@gutkowskiwitting.net"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "duncan.dickinson@gislason.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "duncan.dickinson@gislason.info"], ["encrypted_password", "$2a$04$kbr8kHSrZj7yhhA5J6K2yuwUfvHnFT2D0bYLpq2WtXbgOWDWELUdK"], ["confirmation_token", "Az4mKC5c-RnnyWh1xxZ9"], ["confirmation_sent_at", "2019-10-13 19:03:30.599823"], ["name", "Barry D'Alive"], ["email", "duncan.dickinson@gislason.info"], ["created_at", "2019-10-13 19:03:30.599727"], ["updated_at", "2019-10-13 19:03:30.599727"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"duncan.dickinson@gislason.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "duncan.dickinson@gislason.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nick_smitham@reichert.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nick_smitham@reichert.info"], ["encrypted_password", "$2a$04$tD2giu9UXLxh9rQSPJRoOesdRGd9pmz1uFeQoN0UmCAqNRQ0Ub9D2"], ["confirmed_at", "2019-10-13 19:03:30.606506"], ["locked_at", "2019-10-13 19:03:30.606517"], ["name", "Biff Wellington"], ["email", "nick_smitham@reichert.info"], ["created_at", "2019-10-13 19:03:30.607284"], ["updated_at", "2019-10-13 19:03:30.607284"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"nick_smitham@reichert.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nick_smitham@reichert.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "broderick_wehner@cummerata.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "broderick_wehner@cummerata.biz"], ["encrypted_password", "$2a$04$gG1.fDYfKjpT4HTIWD7NbetXDKXqd3YFVN6k/fjbSaVDESM4iKMdm"], ["confirmed_at", "2019-10-13 19:03:30.613716"], ["name", "Carrie Dababi"], ["email", "broderick_wehner@cummerata.biz"], ["created_at", "2019-10-13 19:03:30.614567"], ["updated_at", "2019-10-13 19:03:30.614567"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"broderick_wehner@cummerata.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "broderick_wehner@cummerata.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "fallon_mueller@millerwolf.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "fallon_mueller@millerwolf.biz"], ["encrypted_password", "$2a$04$LTtF12tDlNfj43pGVQv6K.gPqtEih0YOT691CKfs0WGda9Fa3afBC"], ["confirmed_at", "2019-10-13 19:03:30.633567"], ["email", "fallon_mueller@millerwolf.biz"], ["created_at", "2019-10-13 19:03:30.635282"], ["updated_at", "2019-10-13 19:03:30.635282"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"fallon_mueller@millerwolf.biz\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "fallon_mueller@millerwolf.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"0s2pWqoCxyoQapPrITy5pA\":{\"token\":\"$2a$10$eLDtjD2K/i9OdWdAWfJnvuTe1mQFwyQxcfhihzAbWcdVUEVTZAkyK\",\"expiry\":1572203010,\"updated_at\":\"2019-10-13 19:03:30 UTC\"}}"], ["updated_at", "2019-10-13 19:03:30.691614"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sanda@heelschiller.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sanda@heelschiller.com"], ["encrypted_password", "$2a$04$dl8xBLex44g7H5mjCUCWAOwB7CvCvnQpBzUDn5W1uucAzsDvV0xNS"], ["confirmed_at", "2019-10-13 19:03:30.696716"], ["name", "Rick O'Shea"], ["email", "sanda@heelschiller.com"], ["created_at", "2019-10-13 19:03:30.697703"], ["updated_at", "2019-10-13 19:03:30.697703"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"xNzVVfETrykHPnRT72fMBQ\":{\"token\":\"$2a$10$.P2k3HLCE2Iz0ZYV1ZOeX.eW0OrVdEpsXyWwsdtVEE8TG7yqAWlfe\",\"expiry\":1572203010,\"updated_at\":\"2019-10-13 19:03:30 UTC\"}}"], ["updated_at", "2019-10-13 19:03:30.746822"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sanda@heelschiller.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:03:30.795236"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "blondell.bahringer@wisokyreichert.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "blondell.bahringer@wisokyreichert.biz"], ["encrypted_password", "$2a$04$t7xhDE5sFJJ8zDUPB1wvquZnoKJq2KRq7g9xeLsxxYEzl0KO61Djq"], ["confirmed_at", "2019-10-13 19:03:30.801569"], ["name", "Ryan Carnation"], ["email", "blondell.bahringer@wisokyreichert.biz"], ["created_at", "2019-10-13 19:03:30.802346"], ["updated_at", "2019-10-13 19:03:30.802346"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "keenan@murray.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "keenan@murray.net"], ["encrypted_password", "$2a$04$Mbg/cGgrgSizcpW9Oi1UEeIqK5BH5W/AUWGQ0MIV2/Wvz4hOvdKvW"], ["confirmed_at", "2019-10-13 19:03:30.805700"], ["email", "keenan@murray.net"], ["created_at", "2019-10-13 19:03:30.806370"], ["updated_at", "2019-10-13 19:03:30.806370"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"LLsWGi9_NiPp_mVV3FDAtw\":{\"token\":\"$2a$10$bJfxlKsJ3SzroeDFIMlsIeeCwLE1ktzlFO2lXRBN2jMfz/FmPc5Pi\",\"expiry\":1572203010,\"updated_at\":\"2019-10-13 19:03:30 UTC\"}}"], ["updated_at", "2019-10-13 19:03:30.853880"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "keenan@murray.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:03:30.908793"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.3ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jordan.vandervort@ohara.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jordan.vandervort@ohara.net"], ["encrypted_password", "$2a$04$wYgTqLLFXy9ovkNed08wm./6FUrwjc0dt1KR4ww78n0fI7cksPExy"], ["confirmed_at", "2019-10-13 19:03:30.916515"], ["name", "Mel Function"], ["email", "jordan.vandervort@ohara.net"], ["created_at", "2019-10-13 19:03:30.917806"], ["updated_at", "2019-10-13 19:03:30.917806"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"jordan.vandervort@ohara.net\",\n redirectUrl: \"http://kilbackmorar.net/collene\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "jordan.vandervort@ohara.net"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4dc130d5d8adaf53a595bfe1bc400bbdfd02e07e8f60198544fda98eba5e2861"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "4dc130d5d8adaf53a595bfe1bc400bbdfd02e07e8f60198544fda98eba5e2861"], ["reset_password_sent_at", "2019-10-13 19:03:31.005950"], ["updated_at", "2019-10-13 19:03:31.006211"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (1.7ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 121.0ms Sent mail to jordan.vandervort@ohara.net (3.8ms) Date: Sun, 13 Oct 2019 14:03:31 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: jordan.vandervort@ohara.net Message-ID: <5da375031feb4_d0bd3fca1dc2ffd4317c8@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: jordan.vandervort@ohara.net provider: email redirect-url: http://kilbackmorar.net/collene client-config: default

Hello jordan.vandervort@ohara.net!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 212ms (Views: 0.1ms | ActiveRecord: 0.5ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fkilbackmorar.net%2Fcollene&variables%5Btoken%5D=GFHR4JssrxLpaybr8mF8" for 127.0.0.1 at 2019-10-13 14:03:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://kilbackmorar.net/collene", "token"=>"GFHR4JssrxLpaybr8mF8"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4dc130d5d8adaf53a595bfe1bc400bbdfd02e07e8f60198544fda98eba5e2861"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fp4CbeA-hWrB-CfiKwYLxw\":{\"token\":\"$2a$10$gDTJsBR.UCFXPONoqmzIAeeKvBDbx6Q5rqDjXL.zBj3RhZTGgqWYe\",\"expiry\":1572203011}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:31.181831"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://kilbackmorar.net/collene?access-token=oAX79lfPQmZYJKmst4jBOA&client=fp4CbeA-hWrB-CfiKwYLxw&client_id=fp4CbeA-hWrB-CfiKwYLxw&config=&expiry=1572203011&reset_password=true&token=oAX79lfPQmZYJKmst4jBOA&uid=jordan.vandervort%40ohara.net Completed 302 Found in 49ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://harriscorwin.org/fred\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"byron.hahn@keler.net\"\n name: \"Mr. Kathey Auer\"\n password: \"RfLyIiDvEsOkJn8\"\n passwordConfirmation: \"RfLyIiDvEsOkJn8\"\n confirmSuccessUrl: \"http://murray.info/virgil\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "byron.hahn@keler.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "byron.hahn@keler.net"], ["encrypted_password", "$2a$04$6jXh9ucx9ExktD/H3MuRH.Z4NTLSERolD6GgQa1ajic5/WBGnqwOm"], ["confirmation_token", "DGRiredHWCc3AVucpPad"], ["confirmation_sent_at", "2019-10-13 19:03:31.192805"], ["name", "Mr. Kathey Auer"], ["email", "byron.hahn@keler.net"], ["created_at", "2019-10-13 19:03:31.192693"], ["updated_at", "2019-10-13 19:03:31.192693"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.7ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.7ms Sent mail to byron.hahn@keler.net (0.9ms) Date: Sun, 13 Oct 2019 14:03:31 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: byron.hahn@keler.net Message-ID: <5da375033010f_d0bd3fca1dc2ffd431865@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://murray.info/virgil

Welcome byron.hahn@keler.net!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fmurray.info%2Fvirgil&variables%5Btoken%5D=DGRiredHWCc3AVucpPad" for 127.0.0.1 at 2019-10-13 14:03:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://murray.info/virgil", "token"=>"DGRiredHWCc3AVucpPad"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "DGRiredHWCc3AVucpPad"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:31.202815"], ["updated_at", "2019-10-13 19:03:31.203148"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://murray.info/virgil?account_confirmation_success=true Completed 302 Found in 5ms (ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Kirby Friesen\"\n password: \"H1rPlPc2H4m88\"\n passwordConfirmation: \"H1rPlPc2H4m88\"\n confirmSuccessUrl: \"http://parker.org/ned.gerlach\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "darwin.mosciski@mohr.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "darwin.mosciski@mohr.org"], ["encrypted_password", "$2a$04$lyWoTOhN8TiU/S4.kdEwBO7iY9.vRQ/.Q4EFeCPIyZexk9dMEAiYq"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:31.219443"], ["name", "Iona Frisbee"], ["email", "darwin.mosciski@mohr.org"], ["created_at", "2019-10-13 19:03:31.220420"], ["updated_at", "2019-10-13 19:03:31.220420"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LQ_cEI0ggYo8pWr3I1z88Q\":{\"token\":\"$2a$10$2uy0Cmz8s7ZnKI2eQoqamuE/kgV9PFqG0/SIumq5htksYqT3AkMli\",\"expiry\":1572203011,\"updated_at\":\"2019-10-13 19:03:31 UTC\"}}"], ["updated_at", "2019-10-13 19:03:31.275540"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "darwin.mosciski@mohr.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$.Cd/V2c15AZAt5rivLI/nu/gnjOtYlzuTNIs/LxrhUXwdnODOOm0W"], ["updated_at", "2019-10-13 19:03:31.325723"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:31.326726"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jesica@connelly.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jesica@connelly.com"], ["encrypted_password", "$2a$04$njKSa/hcpiMbGkafsVR4pusrV.qul1kwNXPBjJK96yvBD4VGLK1mC"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:31.331890"], ["name", "Billy Rubin"], ["email", "jesica@connelly.com"], ["created_at", "2019-10-13 19:03:31.332568"], ["updated_at", "2019-10-13 19:03:31.332568"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"6LL_XAQW6GMaP_EyK58lKA\":{\"token\":\"$2a$10$4JddwYeX8a.CG82FZ.O8fuwRdpiDftIB9QZ8XNGehwSf.tbymY5bu\",\"expiry\":1572203011,\"updated_at\":\"2019-10-13 19:03:31 UTC\"}}"], ["updated_at", "2019-10-13 19:03:31.383678"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jesica@connelly.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$10Y4SyLthGoww76l5EJFsO3DU09Xj6jLlwRJJXrQuAHKHD6Vr8s42"], ["updated_at", "2019-10-13 19:03:31.435687"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:31.436746"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sari_hermiston@streich.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sari_hermiston@streich.com"], ["encrypted_password", "$2a$04$A9MkoG3JFzNMtPzPjsIU/.9SyUfjCm0t8gj6iD2ZXdl5B3cO0JSC2"], ["confirmed_at", "2019-10-13 19:03:31.442214"], ["name", "Dennis Toffice"], ["email", "sari_hermiston@streich.com"], ["created_at", "2019-10-13 19:03:31.442842"], ["updated_at", "2019-10-13 19:03:31.442842"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LbeF18tN8O-pG0CvuIBjEA\":{\"token\":\"$2a$10$qwM9cN2rBCm/owC.RrXskOfWSbTdqVdBcfyOzjpaOfsH9/fqPGi.6\",\"expiry\":1572203011,\"updated_at\":\"2019-10-13 19:03:31 UTC\"}}"], ["updated_at", "2019-10-13 19:03:31.489263"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sari_hermiston@streich.com"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gustavo@corkerylebsack.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gustavo@corkerylebsack.net"], ["encrypted_password", "$2a$04$sTcOGZDX//S.pHZeEYzzt.XxIeoJxAgPxFT9TY5TPO4Ut8TxDrcJi"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:31.545652"], ["name", "Constance Noring"], ["email", "gustavo@corkerylebsack.net"], ["created_at", "2019-10-13 19:03:31.546590"], ["updated_at", "2019-10-13 19:03:31.546590"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"HeAGTcn9YrsJP4rySuUZKA\":{\"token\":\"$2a$10$Pjk4eIQqvM9g6nTF3LZNw.84/y.fS81YueP2.Cy76EZEe5kBZahTy\",\"expiry\":1572203011,\"updated_at\":\"2019-10-13 19:03:31 UTC\"}}"], ["updated_at", "2019-10-13 19:03:31.596401"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gustavo@corkerylebsack.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$EnWXPnopYFRxdpg3odph6.HNcecIlHIIaIldDlEfhaVcMfsUjLi5a"], ["updated_at", "2019-10-13 19:03:31.645423"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:31.646446"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kurt@ratke.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kurt@ratke.biz"], ["encrypted_password", "$2a$04$UAt06fkKPrwnOvvCGLD4S..U8aPfGOb9w0EtP.yUxbz1Z7XKyHT7W"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:03:31.653374"], ["name", "Faye Kinnitt"], ["email", "kurt@ratke.biz"], ["created_at", "2019-10-13 19:03:31.654846"], ["updated_at", "2019-10-13 19:03:31.654846"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"d8B0kRheWw5pA-KgEdi4uQ\":{\"token\":\"$2a$10$O.t4YW0j8WRkKMMJAYSba.ZPw/VA/0pwHqOrsIlzZzdxfXJKEO6p.\",\"expiry\":1572203011,\"updated_at\":\"2019-10-13 19:03:31 UTC\"}}"], ["updated_at", "2019-10-13 19:03:31.706107"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kurt@ratke.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$oJdDcvwFuMqUgj8mmo8lG.Tty9kVkKmSwCiCaXFpOJOXDyQWSMVru"], ["updated_at", "2019-10-13 19:03:31.756379"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:03:31.757405"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "corrie_ullrich@pacochanolan.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "corrie_ullrich@pacochanolan.co"], ["encrypted_password", "$2a$04$vkIXJKd441wzX0DlcqvXQepo7UKDMOl./QGlsYCCARtWExz7OfbSq"], ["confirmed_at", "2019-10-13 19:03:31.765239"], ["name", "Parker Carr"], ["email", "corrie_ullrich@pacochanolan.co"], ["created_at", "2019-10-13 19:03:31.766460"], ["updated_at", "2019-10-13 19:03:31.766460"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3E1wWVBtn0e-7AFHllGuAQ\":{\"token\":\"$2a$10$YTWA0HmiI6vSPxu/wznj5uAEE3PX0egT6UWdWKweRjtvXVtNqC1Xa\",\"expiry\":1572203011,\"updated_at\":\"2019-10-13 19:03:31 UTC\"}}"], ["updated_at", "2019-10-13 19:03:31.816161"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "corrie_ullrich@pacochanolan.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$LhrT8Z0HPos3QvGIT8JqIuNqwjfd7KmyGbTe8MI/AONtC3Erz6lYe"], ["updated_at", "2019-10-13 19:03:31.866422"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brittny@kohler.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "brittny@kohler.name"], ["encrypted_password", "$2a$04$SZv/D7cIlPEALPUKsa9g5OEeNeFHxAFeFRJ0YI5zeYjmyu3VVT8WS"], ["confirmed_at", "2019-10-13 19:03:31.873924"], ["name", "Zoltan Pepper"], ["email", "brittny@kohler.name"], ["created_at", "2019-10-13 19:03:31.874717"], ["updated_at", "2019-10-13 19:03:31.874717"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rebeca.ohara@simonis.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rebeca.ohara@simonis.org"], ["encrypted_password", "$2a$04$jYrfB9UhMdocm606UTa/WelDBS.uU9zCYCJ2gpFJtFFLPOFyvdX8m"], ["confirmed_at", "2019-10-13 19:03:31.880361"], ["name", "Bea Lowe"], ["email", "rebeca.ohara@simonis.org"], ["created_at", "2019-10-13 19:03:31.881126"], ["updated_at", "2019-10-13 19:03:31.881126"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0535f0d2582261db93105ad4d6b29cff776c531b803bd4005e995e44ad855282"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "0535f0d2582261db93105ad4d6b29cff776c531b803bd4005e995e44ad855282"], ["reset_password_sent_at", "2019-10-13 19:03:31.882267"], ["updated_at", "2019-10-13 19:03:31.882431"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22AuukXerbHyunQ6XBXrXE%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"AuukXerbHyunQ6XBXrXE\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0535f0d2582261db93105ad4d6b29cff776c531b803bd4005e995e44ad855282"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yl4bHMQ-tRV4lutHPhmKRA\":{\"token\":\"$2a$10$WGDTvev6ku10WZ.QVGUu6u9s3OpEBM1q2rTlWLLUaEAAbJW0..VJm\",\"expiry\":1572203011}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:31.931158"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yl4bHMQ-tRV4lutHPhmKRA\":{\"token\":\"$2a$10$WGDTvev6ku10WZ.QVGUu6u9s3OpEBM1q2rTlWLLUaEAAbJW0..VJm\",\"expiry\":1572203011},\"Hka0W1ChpULPoR8QPCBYSQ\":{\"token\":\"$2a$10$m90/RWm5dvZljgHYMv38gupcr0A8pPyk0lLhv7wWUBUdXLpY3q7jG\",\"expiry\":1572203011,\"updated_at\":\"2019-10-13 19:03:31 UTC\"}}"], ["updated_at", "2019-10-13 19:03:31.975373"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 93ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "salley_marvin@murazikgoodwin.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "salley_marvin@murazikgoodwin.co"], ["encrypted_password", "$2a$04$0iiL6U7LJvcQ1/Xv1S/0n.8YElOAOcqojyuh5usmlut71/TcvI4fG"], ["confirmed_at", "2019-10-13 19:03:31.979334"], ["name", "Robin Money"], ["email", "salley_marvin@murazikgoodwin.co"], ["created_at", "2019-10-13 19:03:31.980055"], ["updated_at", "2019-10-13 19:03:31.980055"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d411898aeb9c1fe551a603be0e531c8e1560b31d396140a0a3cf8410d807a669"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "d411898aeb9c1fe551a603be0e531c8e1560b31d396140a0a3cf8410d807a669"], ["reset_password_sent_at", "2019-10-13 19:03:31.981249"], ["updated_at", "2019-10-13 19:03:31.981409"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%229N2nSxm2uayGpBrdC6dK%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"9N2nSxm2uayGpBrdC6dK\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d411898aeb9c1fe551a603be0e531c8e1560b31d396140a0a3cf8410d807a669"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jAoc36s3-QDzfg_TJzLwvA\":{\"token\":\"$2a$10$ZKoxHnmV7zkyVvjfBqp7U.Bholl9GMxMDuMcUspnYfM8Xoewgb4jm\",\"expiry\":1572203012}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:03:32.030832"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=-IZS7NUYlGxG356JGv3L9w&client=jAoc36s3-QDzfg_TJzLwvA&client_id=jAoc36s3-QDzfg_TJzLwvA&config=&expiry=1572203012&reset_password=true&token=-IZS7NUYlGxG356JGv3L9w&uid=salley_marvin%40murazikgoodwin.co Completed 302 Found in 49ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eleonor@friesen.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "eleonor@friesen.org"], ["encrypted_password", "$2a$04$1s0fqmDUsJ99vEAcwzrLv.m/dywKpDLKBSR2CdsraHo64CVfUpqym"], ["confirmed_at", "2019-10-13 09:03:32"], ["name", "Thor Luther"], ["email", "eleonor@friesen.org"], ["created_at", "2019-10-13 09:03:32"], ["updated_at", "2019-10-13 09:03:32"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "848d6c3cd05f85019d66ed7047d2f508d8c90bc6bc3e6441b7db040cd24e3a68"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "848d6c3cd05f85019d66ed7047d2f508d8c90bc6bc3e6441b7db040cd24e3a68"], ["reset_password_sent_at", "2019-10-13 09:03:32"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22ybAF4ckaUxnUSycdaBs8%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"ybAF4ckaUxnUSycdaBs8\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "848d6c3cd05f85019d66ed7047d2f508d8c90bc6bc3e6441b7db040cd24e3a68"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "isidro.stroman@hartmannstanton.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "isidro.stroman@hartmannstanton.co"], ["encrypted_password", "$2a$04$yfBWfVTSzxbDFfcx7xl0l.ryoxPIfXJRA7h2iiNB8Jon/VPCWoMJu"], ["confirmed_at", "2019-10-13 19:03:32.049795"], ["name", "Liv Good"], ["email", "isidro.stroman@hartmannstanton.co"], ["created_at", "2019-10-13 19:03:32.051074"], ["updated_at", "2019-10-13 19:03:32.051074"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "79e199f08febf3a462fea5174d276ad3cf21fca95729e4136e0ade2ed11bde75"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "79e199f08febf3a462fea5174d276ad3cf21fca95729e4136e0ade2ed11bde75"], ["reset_password_sent_at", "2019-10-13 19:03:32.052864"], ["updated_at", "2019-10-13 19:03:32.053110"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22XdqjRwztrTo2YpudSHR8invalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"XdqjRwztrTo2YpudSHR8invalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1840e5ba9a8b7dfb26b6ffbdb52e927990b5c59150b7b992597edf7bdecddc56"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "natisha.grimes@lindgren.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "natisha.grimes@lindgren.co"], ["encrypted_password", "$2a$04$UmtiEdxmtOK2DegFQ.uH7u3ZUvwfGA/gNKHq/P81kk2acv58adnUi"], ["confirmation_token", "hgxzwK59uBzxP7zb2ZJi"], ["confirmation_sent_at", "2019-10-13 19:03:32.061066"], ["name", "Eli Ondefloor"], ["email", "natisha.grimes@lindgren.co"], ["created_at", "2019-10-13 19:03:32.060976"], ["updated_at", "2019-10-13 19:03:32.060976"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.7ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.1ms Sent mail to natisha.grimes@lindgren.co (1.6ms) Date: Sun, 13 Oct 2019 14:03:32 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: natisha.grimes@lindgren.co Message-ID: <5da37504ff3c_d0bd3fca1dc2ffd431975@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome natisha.grimes@lindgren.co!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22hgxzwK59uBzxP7zb2ZJi%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fwunsch.org%2Fhaywood%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"hgxzwK59uBzxP7zb2ZJi\"\n redirectUrl: \"http://wunsch.org/haywood\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "hgxzwK59uBzxP7zb2ZJi"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:32.070038"], ["updated_at", "2019-10-13 19:03:32.070453"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://wunsch.org/haywood?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eldridge_cormier@lowe.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "eldridge_cormier@lowe.com"], ["encrypted_password", "$2a$04$8BMlLMsSQlseUPZlZH9QAO0D/iFDwPSLIKz6eGAFDlXUnTYY85oeu"], ["confirmation_token", "enUN7TKcVSaGSgCfo_sn"], ["confirmation_sent_at", "2019-10-13 19:03:32.077670"], ["name", "Rocky Beach"], ["email", "eldridge_cormier@lowe.com"], ["created_at", "2019-10-13 19:03:32.077566"], ["updated_at", "2019-10-13 19:03:32.077566"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22enUN7TKcVSaGSgCfo_sn-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fborertoy.org%2Froselee_johns%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"enUN7TKcVSaGSgCfo_sn-invalid\"\n redirectUrl: \"http://borertoy.org/roselee_johns\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "enUN7TKcVSaGSgCfo_sn-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "4576d6ca1801494cb7f7fd4f69b479bc6992430b739d5e7d2f0cfe38f51c19da"], ["LIMIT", 1]] Completed 200 OK in 93ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "natasha@hudson.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "natasha@hudson.org"], ["encrypted_password", "$2a$04$sQSeic20h5srfcyKXIMBtObz2dgVoY8tEKSy5zlz2umnpU6HOAXJG"], ["confirmed_at", "2019-10-13 19:03:32.179271"], ["name", "Eve Ning"], ["email", "natasha@hudson.org"], ["created_at", "2019-10-13 19:03:32.180467"], ["updated_at", "2019-10-13 19:03:32.180467"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Rh_3LPoAfMEG5UUPYtqobw\":{\"token\":\"$2a$10$JFRn1.8J3famDY5Jbk7QBOY2FbBW5It6e4yTUhf/KnkxnyxsETI.K\",\"expiry\":1572203012,\"updated_at\":\"2019-10-13 19:03:32 UTC\"}}"], ["updated_at", "2019-10-13 19:03:32.229782"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:32 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "natasha@hudson.org"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 64ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jacqualine@heathcote.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jacqualine@heathcote.io"], ["encrypted_password", "$2a$04$KwyEbSqv6oB0Z7rAnCeOZuU1eVv4MlqULM/zo/EE13zuZ5L6B6LnS"], ["confirmed_at", "2019-10-13 19:03:32.302553"], ["name", "Kay Neine"], ["email", "jacqualine@heathcote.io"], ["created_at", "2019-10-13 19:03:32.303355"], ["updated_at", "2019-10-13 19:03:32.303355"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:32 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "charis@breitenbergankunding.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "charis@breitenbergankunding.com"], ["encrypted_password", "$2a$04$iDz4bDZKFZDC1QrOe8BASOY2lOPYmwmx3dP/XUfkzX3phfe3Khvvi"], ["confirmed_at", "2019-10-13 19:03:35.203736"], ["name", "Jim Shorts"], ["email", "charis@breitenbergankunding.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:35.205814"], ["updated_at", "2019-10-13 19:03:35.205814"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"charis@breitenbergankunding.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "charis@breitenbergankunding.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"WVXXBl3sdLJxjJI-yWEMkQ\":{\"token\":\"$2a$12$liR7hVPBfwkroWpFQ/TEHOpIMh5zJ3c2Gb8TlppIy7FXyBoWv5m9a\",\"expiry\":1572203015,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:35.233-05:00\"}}"], ["updated_at", "2019-10-13 19:03:35.412031"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:03:35.415033"], ["last_sign_in_at", "2019-10-13 19:03:35.415033"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:03:35.415325"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 195ms (Views: 0.1ms | ActiveRecord: 0.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ryan@connellylebsack.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ryan@connellylebsack.org"], ["encrypted_password", "$2a$04$hNZ8kvP8O9e3u9.Lr1rW.OUmm33GNQkYkUHfVBM3cEBl2dUMgudoy"], ["confirmed_at", "2019-10-13 19:03:35.422638"], ["name", "Eileen Dover"], ["email", "ryan@connellylebsack.org"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:35.423459"], ["updated_at", "2019-10-13 19:03:35.423459"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ryan@connellylebsack.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ryan@connellylebsack.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-10-13 19:03:35.427996"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marshall@wilkinson.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "marshall@wilkinson.com"], ["encrypted_password", "$2a$04$KoBfGX90fONvFThU0l3I1OyiuVmnfBC1BU5a6L8SmfIOApySgDPgm"], ["confirmation_token", "zaMRvXZHmxBTVKbsVMBc"], ["confirmation_sent_at", "2019-10-13 19:03:35.432836"], ["name", "Al Luminum"], ["email", "marshall@wilkinson.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:35.432756"], ["updated_at", "2019-10-13 19:03:35.432756"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"marshall@wilkinson.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marshall@wilkinson.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "renna@baumbach.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "renna@baumbach.net"], ["encrypted_password", "$2a$04$Dxu8gzrspZ4EBjM8PDRoUuaFo9H/w4WMTKphQ86eHL7e9XkHog8fC"], ["confirmed_at", "2019-10-13 19:03:35.440402"], ["locked_at", "2019-10-13 19:03:35.440417"], ["name", "Sal Minella"], ["email", "renna@baumbach.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:35.441420"], ["updated_at", "2019-10-13 19:03:35.441420"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"renna@baumbach.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "renna@baumbach.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shae@bayerhand.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "shae@bayerhand.net"], ["encrypted_password", "$2a$04$uDHi9./bKHigqPB.cBR6Se9LHiEWcu5rvGnhLDaqNY6TkDgFCBu.C"], ["confirmed_at", "2019-10-13 19:03:35.450608"], ["name", "Molly Kuehl"], ["email", "shae@bayerhand.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:35.451857"], ["updated_at", "2019-10-13 19:03:35.451857"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"shae@bayerhand.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shae@bayerhand.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "sam.parker@bodeboyle.com"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sam.parker@bodeboyle.com"], ["encrypted_password", "$2a$04$Z08lUXZGte/iyTEVuVHNm.D..h91SdW9xl3pzZvARa6teBvfyoSMO"], ["confirmed_at", "2019-10-13 19:03:35.488711"], ["email", "sam.parker@bodeboyle.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:35.490060"], ["updated_at", "2019-10-13 19:03:35.490060"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"sam.parker@bodeboyle.com\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "sam.parker@bodeboyle.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"tLURrajqAjGcS9sik5MnnQ\":{\"token\":\"$2a$12$momEtypzGfKkr74bFDwAyuX0y/mnBHwvi/8W60wOo.MfxRc3jsHdi\",\"expiry\":1572203015,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:35.496-05:00\"}}"], ["updated_at", "2019-10-13 19:03:35.682881"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lupe_lakin@romagueraemmerich.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lupe_lakin@romagueraemmerich.net"], ["encrypted_password", "$2a$04$xVZLZXGvCUxN0JZnFnm2J.dgMnSuWyhEFliwFbKsbTJsQ184.GLCy"], ["confirmed_at", "2019-10-13 19:03:35.689452"], ["name", "Liv Long"], ["email", "lupe_lakin@romagueraemmerich.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:35.690336"], ["updated_at", "2019-10-13 19:03:35.690336"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5sbbofmt_TSc55T55ITYyg\":{\"token\":\"$2a$12$ifcvbCBFdzpfpPDobQiuY.QSNToE.ja8xpLXkj8cAZS3QXhNiHqHu\",\"expiry\":1572203015,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:35.691-05:00\"}}"], ["updated_at", "2019-10-13 19:03:35.866689"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lupe_lakin@romagueraemmerich.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 19:03:36.037156"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 170ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "valorie_mckenzie@heel.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "valorie_mckenzie@heel.net"], ["encrypted_password", "$2a$04$NVTC4x1StunarZ0Jrd4KSOYNQtZoqS/W6ked9YqjAWBaPDopEn.IK"], ["confirmed_at", "2019-10-13 19:03:36.044405"], ["name", "Oliver Sutton"], ["email", "valorie_mckenzie@heel.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:36.045145"], ["updated_at", "2019-10-13 19:03:36.045145"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "scott_treutel@cartwright.com"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.2ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "scott_treutel@cartwright.com"], ["encrypted_password", "$2a$04$Quo6ge5.5DeFUVBOnR2TO.hufG2UnFAsTyG51baV6Wmu5vHRir7FO"], ["confirmed_at", "2019-10-13 19:03:36.048550"], ["email", "scott_treutel@cartwright.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:36.049228"], ["updated_at", "2019-10-13 19:03:36.049228"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"OZnbggRuVzGKZXHXNL2AZA\":{\"token\":\"$2a$12$ir3W8U0M0kLRoKa2vosTie2NBaYGg/hQ/MSF.6e.WVhZ8rx.aD4Oa\",\"expiry\":1572203016,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:36.050-05:00\"}}"], ["updated_at", "2019-10-13 19:03:36.224221"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "scott_treutel@cartwright.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 Admin Update (0.0ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 19:03:36.393622"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 169ms (Views: 0.1ms | ActiveRecord: 0.2ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "selena@crist.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "selena@crist.info"], ["encrypted_password", "$2a$04$rJsLCTHvYgExIetSjOZTPeSKUK6bvltwhs1GXTgPwqqSkqz0e3nlm"], ["confirmed_at", "2019-10-13 19:03:36.399866"], ["name", "Marge Innastraightline"], ["email", "selena@crist.info"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:36.400688"], ["updated_at", "2019-10-13 19:03:36.400688"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"selena@crist.info\",\n redirectUrl: \"http://bashirian.co/marcellus\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE (uid = 'selena@crist.info' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "550b21c0438aa059d9e2ffcae3acfd41bb1f50065a816321645c5a96381a9162"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "550b21c0438aa059d9e2ffcae3acfd41bb1f50065a816321645c5a96381a9162"], ["reset_password_sent_at", "2019-10-13 19:03:36.480587"], ["updated_at", "2019-10-13 19:03:36.480848"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (1.6ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 111.4ms Sent mail to selena@crist.info (3.6ms) Date: Sun, 13 Oct 2019 14:03:36 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: selena@crist.info Message-ID: <5da375089160b_d0d33fda12432020925bc@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: selena@crist.info provider: email redirect-url: http://bashirian.co/marcellus client-config: default

Hello selena@crist.info!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 195ms (Views: 0.1ms | ActiveRecord: 0.4ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fbashirian.co%2Fmarcellus&variables%5Btoken%5D=BHSYU6LEWFCpUyCPojJy" for 127.0.0.1 at 2019-10-13 14:03:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://bashirian.co/marcellus", "token"=>"BHSYU6LEWFCpUyCPojJy"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "550b21c0438aa059d9e2ffcae3acfd41bb1f50065a816321645c5a96381a9162"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"oB8T98URBhbCMQ5r461GDA\":{\"token\":\"$2a$12$wxOlGSj18xwXE42kCDegfOHuM3Kl3C0PdXq6GSGeKNDaa5XkXSDo6\",\"expiry\":1572203016}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:36.768393"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://bashirian.co/marcellus?access-token=1572203016&client=oB8T98URBhbCMQ5r461GDA&client_id=oB8T98URBhbCMQ5r461GDA&config=&expiry=1572203016&reset_password=true&token=1572203016&uid=selena%40crist.info Completed 302 Found in 170ms (ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://gleason.info/doretha_yost\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE (uid = 'nothere@gmail.com' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"trey_rolfson@koepp.biz\"\n name: \"Marcos Goldner\"\n password: \"2VcYyF76\"\n passwordConfirmation: \"2VcYyF76\"\n confirmSuccessUrl: \"http://ziemannmedhurst.info/adrian\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "trey_rolfson@koepp.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "trey_rolfson@koepp.biz"], ["encrypted_password", "$2a$04$HZg1.PeW3oLElzHlFGsca.71obUpiVW/2cpYDFvEewHdIVy2MBD0K"], ["confirmation_token", "_6s4vHeRwZdoyFsyUiMR"], ["confirmation_sent_at", "2019-10-13 19:03:36.780758"], ["name", "Marcos Goldner"], ["email", "trey_rolfson@koepp.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:36.780697"], ["updated_at", "2019-10-13 19:03:36.780697"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.6ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.3ms Sent mail to trey_rolfson@koepp.biz (0.9ms) Date: Sun, 13 Oct 2019 14:03:36 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: trey_rolfson@koepp.biz Message-ID: <5da37508bfcb4_d0d33fda12432020926f4@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://ziemannmedhurst.info/adrian

Welcome trey_rolfson@koepp.biz!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.0ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fziemannmedhurst.info%2Fadrian&variables%5Btoken%5D=_6s4vHeRwZdoyFsyUiMR" for 127.0.0.1 at 2019-10-13 14:03:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://ziemannmedhurst.info/adrian", "token"=>"_6s4vHeRwZdoyFsyUiMR"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "_6s4vHeRwZdoyFsyUiMR"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:36.790759"], ["updated_at", "2019-10-13 19:03:36.791013"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://ziemannmedhurst.info/adrian?account_confirmation_success=true Completed 302 Found in 5ms (ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Kaycee Altenwerth\"\n password: \"S54uJi9Ok\"\n passwordConfirmation: \"S54uJi9Ok\"\n confirmSuccessUrl: \"http://altenwerthruecker.net/elinore_auer\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mohamed.hickle@whitepollich.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mohamed.hickle@whitepollich.net"], ["encrypted_password", "$2a$04$oAytGzV/nml2UUfMTaD59e.nYB5OZYpEI/YqGAD0dGYFL3ziCcSim"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:36.807556"], ["name", "Bart Ender"], ["email", "mohamed.hickle@whitepollich.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:36.809772"], ["updated_at", "2019-10-13 19:03:36.809772"]]  (0.5ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2FD9W0dEWhvihflGypVZkA\":{\"token\":\"$2a$12$lA27gOmvsN9TgGRopHoBVOIkCO8gxYi9X6BXdrGgLvHohG1qRE5oq\",\"expiry\":1572203016,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:36.812-05:00\"}}"], ["updated_at", "2019-10-13 19:03:36.998499"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "mohamed.hickle@whitepollich.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$6Z3NQBq5gqmLxyj6k0hUDu2c5vYwOPSXYGcLw83UzIDXbx7.jK3Jy"], ["updated_at", "2019-10-13 19:03:37.176442"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:37.177981"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 179ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joellen@ratke.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "joellen@ratke.biz"], ["encrypted_password", "$2a$04$NszforBrgDAdrb0C1P0YM.xRUy7Rxzoe6x4qPSulQ9Oe4J6NG6Tm."], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:37.186846"], ["name", "Marshall Law"], ["email", "joellen@ratke.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:37.188282"], ["updated_at", "2019-10-13 19:03:37.188282"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"vbaVy9n3EoiHeTeXbRXHiA\":{\"token\":\"$2a$12$C/CNAJC/uI8E2KYM6KTN4OZ0hE3C6LLvU2tjOdl8kJMQA2N6bipGK\",\"expiry\":1572203017,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:37.189-05:00\"}}"], ["updated_at", "2019-10-13 19:03:37.373493"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "joellen@ratke.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$fwNMxp0nX1U5s01V4SOXd.DtrPVb9xaBg3hv/rhiWHalAuiSqJXle"], ["updated_at", "2019-10-13 19:03:37.566188"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:37.567827"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 194ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.5ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ina@bergstrom.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ina@bergstrom.net"], ["encrypted_password", "$2a$04$cETeXsmybCHA2rrQ1HJldORwWkKbCm/9FDnhFOcgQRM7/h9v6zcSO"], ["confirmed_at", "2019-10-13 19:03:37.576601"], ["name", "Constance Noring"], ["email", "ina@bergstrom.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:37.577805"], ["updated_at", "2019-10-13 19:03:37.577805"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"8B8XRIaWPZtTh9VMeB1HqQ\":{\"token\":\"$2a$12$jO1ihPznCOcLhzskKjbE7efoxwopetIY370SamnxplzpSrMF/kWFW\",\"expiry\":1572203017,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:37.579-05:00\"}}"], ["updated_at", "2019-10-13 19:03:37.753603"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ina@bergstrom.net"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 170ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ashanti_konopelski@stammmueller.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ashanti_konopelski@stammmueller.biz"], ["encrypted_password", "$2a$04$/T5fx99hG9KFD5kKfFMqT.hfumJaJ0RLYr6qSrKjtWnm9q4Lh2Ily"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:37.930427"], ["name", "Bea Sting"], ["email", "ashanti_konopelski@stammmueller.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:37.931331"], ["updated_at", "2019-10-13 19:03:37.931331"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"QjYzYMKks_tSwAsZkPsA1Q\":{\"token\":\"$2a$12$Gkq/0v43P08NkoT8FXbWDOlsTzROWSHBj6P.H.8FEEmm3suSyjbfi\",\"expiry\":1572203017,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:37.932-05:00\"}}"], ["updated_at", "2019-10-13 19:03:38.105202"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ashanti_konopelski@stammmueller.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Ree7Szo2KBTCw00kbcB6ReJouKAv12YaoI8GvG5VoJX/dk10K5Q9a"], ["updated_at", "2019-10-13 19:03:38.287218"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:38.289018"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 183ms (Views: 0.1ms | ActiveRecord: 0.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "trevor@waelchi.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "trevor@waelchi.name"], ["encrypted_password", "$2a$04$.nHnuD/W8irX9.IqSUm8iuov67/tjw/fhEzxmCWC2t0RZzLjq1hDa"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:38.295970"], ["name", "Ewan Whatarmy"], ["email", "trevor@waelchi.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:38.296726"], ["updated_at", "2019-10-13 19:03:38.296726"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gBpF6ZVlyJPnWUAZxz5bGA\":{\"token\":\"$2a$12$Mh1d.sq6mJQWehWWy33wze8wfS8bXGD1AvCLVzYkolfV2OMvjE476\",\"expiry\":1572203018,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:38.297-05:00\"}}"], ["updated_at", "2019-10-13 19:03:38.480104"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "trevor@waelchi.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$pF1N5tUp9V77uYAUXU4rIONzvGEcNXKa7R9AOsGHUq85/lU3nt3CO"], ["updated_at", "2019-10-13 19:03:38.663197"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:38.665259"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 185ms (Views: 0.1ms | ActiveRecord: 0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "yolando_keebler@mitchell.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "yolando_keebler@mitchell.com"], ["encrypted_password", "$2a$04$xGau2neaKLr0I0NkF9eAE.IsBWK1/D.XEYad7c2Z/J2UcahAsJ3F6"], ["confirmed_at", "2019-10-13 19:03:38.672949"], ["name", "Ryan Coke"], ["email", "yolando_keebler@mitchell.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:38.673967"], ["updated_at", "2019-10-13 19:03:38.673967"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ecO3sGI1FqB2cJ-qvINQTQ\":{\"token\":\"$2a$12$9XNylvf0Ajzuv0FKkqwA7.aZgwH1NcF6f1.xfWIcgph1QIH5FJhzm\",\"expiry\":1572203018,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:38.675-05:00\"}}"], ["updated_at", "2019-10-13 19:03:38.863875"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "yolando_keebler@mitchell.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$euaYvpfJf6.A8UOR.e8WBetXvdCsXMhzSiBqAwIESXN7YyMD80h8q"], ["updated_at", "2019-10-13 19:03:39.036412"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 173ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sang_kunde@haagdouglas.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sang_kunde@haagdouglas.name"], ["encrypted_password", "$2a$04$BmL0PuKI/Y8Jd4ECAPCowuXKxwfx7sbr2s0N0E3c5mfsRzqZFpIAy"], ["confirmed_at", "2019-10-13 19:03:39.044103"], ["name", "Dusty Carr"], ["email", "sang_kunde@haagdouglas.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:39.045079"], ["updated_at", "2019-10-13 19:03:39.045079"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "beryl.paucek@haley.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "beryl.paucek@haley.name"], ["encrypted_password", "$2a$04$9ZhNAK..CBiZuAYR5SbHWeIG8cPRQ.Xa21urXibuPPttBIXCW.wkK"], ["confirmed_at", "2019-10-13 19:03:39.053155"], ["name", "Adam Sapple"], ["email", "beryl.paucek@haley.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:39.053873"], ["updated_at", "2019-10-13 19:03:39.053873"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b96ccc5f708c61d1c19bc8b94ad48b55adc5432816d99131c8e781312cd5fe71"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b96ccc5f708c61d1c19bc8b94ad48b55adc5432816d99131c8e781312cd5fe71"], ["reset_password_sent_at", "2019-10-13 19:03:39.055243"], ["updated_at", "2019-10-13 19:03:39.055433"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22GjDZe2AYK8Q9-a-e2KyX%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"GjDZe2AYK8Q9-a-e2KyX\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b96ccc5f708c61d1c19bc8b94ad48b55adc5432816d99131c8e781312cd5fe71"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BndSKedMxXNLq8NgTGIToA\":{\"token\":\"$2a$12$AjbD97cZcIXtJSUaWcFtPe5u8DylWQsBfUySEJKBHZ7xx9KWVRjBm\",\"expiry\":1572203019}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:39.237366"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BndSKedMxXNLq8NgTGIToA\":{\"token\":\"$2a$12$AjbD97cZcIXtJSUaWcFtPe5u8DylWQsBfUySEJKBHZ7xx9KWVRjBm\",\"expiry\":1572203019},\"KSEt7Y_EhKMZN2yA1bCUgQ\":{\"token\":\"$2a$12$IxkwVEISPMr15FUHsnfAD.2c8l4lXEKcMnsXbO0T0JGtL1HUAnWi2\",\"expiry\":1572203019,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:39.238-05:00\"}}"], ["updated_at", "2019-10-13 19:03:39.403329"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 347ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "milagros@walsh.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "milagros@walsh.biz"], ["encrypted_password", "$2a$04$ekN0FR94/gAmmqtvuHfROelr1/cLCcS6EhmdnVsvQSV2/G2yRx.dG"], ["confirmed_at", "2019-10-13 19:03:39.408765"], ["name", "Haywood Jashootmee"], ["email", "milagros@walsh.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:39.410058"], ["updated_at", "2019-10-13 19:03:39.410058"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4ebf9f3d2267aa3a8e02529bf20166b69d5768876e53d9296708fb8123329147"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "4ebf9f3d2267aa3a8e02529bf20166b69d5768876e53d9296708fb8123329147"], ["reset_password_sent_at", "2019-10-13 19:03:39.412151"], ["updated_at", "2019-10-13 19:03:39.412405"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%229PZvYQn9AvckRssAZSax%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"9PZvYQn9AvckRssAZSax\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4ebf9f3d2267aa3a8e02529bf20166b69d5768876e53d9296708fb8123329147"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZS-qfD1Ha6G5sDbFM2kQUg\":{\"token\":\"$2a$12$ysVHLALfslZJ4A072SQpcOI2ZNxm9hJxaONhswWO/5QXyLXi8W2n2\",\"expiry\":1572203019}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:39.595098"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1572203019&client=ZS-qfD1Ha6G5sDbFM2kQUg&client_id=ZS-qfD1Ha6G5sDbFM2kQUg&config=&expiry=1572203019&reset_password=true&token=1572203019&uid=milagros%40walsh.biz Completed 302 Found in 182ms (ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cuc@cruickshank.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cuc@cruickshank.info"], ["encrypted_password", "$2a$04$o2zHoWo8H79UTbC00HVa5edXvErxV25A7/gIbYxn1F.FCegx9BXe."], ["confirmed_at", "2019-10-13 09:03:39"], ["name", "M. Balmer"], ["email", "cuc@cruickshank.info"], ["tokens", "{}"], ["created_at", "2019-10-13 09:03:39"], ["updated_at", "2019-10-13 09:03:39"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f567a7fd23eca5442bb008fb72bcfaaa76084b40075958ed209f8c2584b55fee"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f567a7fd23eca5442bb008fb72bcfaaa76084b40075958ed209f8c2584b55fee"], ["reset_password_sent_at", "2019-10-13 09:03:39"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22eicpnhSgy3xzrGov3DVe%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"eicpnhSgy3xzrGov3DVe\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f567a7fd23eca5442bb008fb72bcfaaa76084b40075958ed209f8c2584b55fee"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "azalee.jacobs@crooks.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "azalee.jacobs@crooks.co"], ["encrypted_password", "$2a$04$tTxL0/LIXtkixR3PNckOW.KUD4F1HTJIRxIJ7FIi1ejQFvbwddMe2"], ["confirmed_at", "2019-10-13 19:03:39.614125"], ["name", "Misty Meanor"], ["email", "azalee.jacobs@crooks.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:39.614835"], ["updated_at", "2019-10-13 19:03:39.614835"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "6ef435466ee71e23f899004b20544c35e945072d6a284a0f8ecc96d2cc456687"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "6ef435466ee71e23f899004b20544c35e945072d6a284a0f8ecc96d2cc456687"], ["reset_password_sent_at", "2019-10-13 19:03:39.616206"], ["updated_at", "2019-10-13 19:03:39.616391"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22xvx5axJx8me7av_UtkMzinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"xvx5axJx8me7av_UtkMzinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "8264409f3f859a80142b44ae4d50ba2628018a22498fb58a1036495dd4042881"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bernard@parisian.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bernard@parisian.com"], ["encrypted_password", "$2a$04$pkzHRQQNyGgL/.C4ZBgrRu8wNsjYh92AEVuPSOX.EXsbF77vJ/fkK"], ["confirmation_token", "R7jxRteW_p_SCFyH29Rc"], ["confirmation_sent_at", "2019-10-13 19:03:39.653272"], ["name", "Ray Zenz"], ["email", "bernard@parisian.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:39.653140"], ["updated_at", "2019-10-13 19:03:39.653140"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.6ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.9ms Sent mail to bernard@parisian.com (1.8ms) Date: Sun, 13 Oct 2019 14:03:39 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: bernard@parisian.com Message-ID: <5da3750ba0977_d0d33fda1243202092719@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome bernard@parisian.com!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22R7jxRteW_p_SCFyH29Rc%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fweinat.net%2Froosevelt%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"R7jxRteW_p_SCFyH29Rc\"\n redirectUrl: \"http://weinat.net/roosevelt\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "R7jxRteW_p_SCFyH29Rc"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:39.663783"], ["updated_at", "2019-10-13 19:03:39.664199"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://weinat.net/roosevelt?account_confirmation_success=true Completed 302 Found in 5ms (ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "romana.muller@kreiger.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "romana.muller@kreiger.io"], ["encrypted_password", "$2a$04$d4R1IWh5sjS1j9Wn/UvW9ercQjHGZLVOTnHBp46acmFktZfLz20HO"], ["confirmation_token", "r17NUS_Y_MdcUiuBQRzF"], ["confirmation_sent_at", "2019-10-13 19:03:39.671654"], ["name", "Sheri Cola"], ["email", "romana.muller@kreiger.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:39.671560"], ["updated_at", "2019-10-13 19:03:39.671560"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22r17NUS_Y_MdcUiuBQRzF-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fschummrosenbaum.co%2Fbrendon%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"r17NUS_Y_MdcUiuBQRzF-invalid\"\n redirectUrl: \"http://schummrosenbaum.co/brendon\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "r17NUS_Y_MdcUiuBQRzF-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "e9e609bba550bccb53c7a66cd92dc63f24217c7cce7bafe21ff06ae0870afa43"], ["LIMIT", 1]] Completed 200 OK in 90ms (Views: 0.2ms | ActiveRecord: 0.1ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joanie@klocko.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "joanie@klocko.name"], ["encrypted_password", "$2a$04$DTq5msMPxUA/YQ/TMWU.fu3JbAn6nmCpVTL6kX6N32Nly12FeJ8Wy"], ["confirmed_at", "2019-10-13 19:03:39.768898"], ["name", "Harry Legg"], ["email", "joanie@klocko.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:39.771234"], ["updated_at", "2019-10-13 19:03:39.771234"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"zKCnbukGCXby1GzLizYqAw\":{\"token\":\"$2a$12$J1VTjUKi4AhLpaaHTbWQ1Oj.qoNtP/NgMJtwUwgzM54zXhs67tntW\",\"expiry\":1572203019,\"last_token\":null,\"updated_at\":\"2019-10-13T14:03:39.772-05:00\"}}"], ["updated_at", "2019-10-13 19:03:39.968255"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:39 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "joanie@klocko.name"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 177ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "thad@wehner.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "thad@wehner.biz"], ["encrypted_password", "$2a$04$vAJ6vA1HjqD0ZnrDxc11reOCdgQ6elDilCn2piUWvLWsNBxUoFuVC"], ["confirmed_at", "2019-10-13 19:03:40.152948"], ["name", "Tad Pohl"], ["email", "thad@wehner.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:03:40.153707"], ["updated_at", "2019-10-13 19:03:40.153707"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:40 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elijah@bernierhills.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "elijah@bernierhills.io"], ["encrypted_password", "$2a$04$5NJOrY6RhwpAONinMtIAlut7IhRQNdynynMvstuAfIsDncU8t1wxe"], ["confirmed_at", "2019-10-13 19:03:43.098656"], ["name", "Ty Tass"], ["email", "elijah@bernierhills.io"], ["created_at", "2019-10-13 19:03:43.102061"], ["updated_at", "2019-10-13 19:03:43.102061"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"elijah@bernierhills.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "elijah@bernierhills.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DG4suAZctPLWsL6x5g1n8Q\":{\"token\":\"$2a$10$5nA181PDhB314GFksLl/xuIghXX/B3ffidj/thOi0MbenXIeYQOOy\",\"expiry\":1572203023,\"updated_at\":\"2019-10-13 19:03:43 UTC\"}}"], ["updated_at", "2019-10-13 19:03:43.173131"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:03:43.176035"], ["last_sign_in_at", "2019-10-13 19:03:43.176035"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:03:43.176377"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 62ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "scottie@lynch.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "scottie@lynch.org"], ["encrypted_password", "$2a$04$VvLUhDd8gIkvQRrPglZ05OmRGh7SWhP2G1QCUyS.Sfnhmf.zi75eC"], ["confirmed_at", "2019-10-13 19:03:43.185395"], ["name", "Bowen Arrow"], ["email", "scottie@lynch.org"], ["created_at", "2019-10-13 19:03:43.186470"], ["updated_at", "2019-10-13 19:03:43.186470"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"scottie@lynch.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "scottie@lynch.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "manual@williamson.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "manual@williamson.com"], ["encrypted_password", "$2a$04$sybMhSayff/cAsX7LAbEbumJN/FGPc0rjalYuGx4WAT4h2jdZvOjy"], ["confirmation_token", "d3CWQ2yozipPvFsoz6_T"], ["confirmation_sent_at", "2019-10-13 19:03:43.198104"], ["name", "Biff Wellington"], ["email", "manual@williamson.com"], ["created_at", "2019-10-13 19:03:43.198002"], ["updated_at", "2019-10-13 19:03:43.198002"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"manual@williamson.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "manual@williamson.com"], ["LIMIT", 1]] Completed 200 OK in 18ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "andrea.raynor@greenholt.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "andrea.raynor@greenholt.name"], ["encrypted_password", "$2a$04$kG5p6nmdgeM7E.GKxAkjPe8UyF8bfY9Rsy4VEQyT1q4uO1joATDOK"], ["confirmed_at", "2019-10-13 19:03:43.221992"], ["locked_at", "2019-10-13 19:03:43.222005"], ["name", "Bjorn Free"], ["email", "andrea.raynor@greenholt.name"], ["created_at", "2019-10-13 19:03:43.222933"], ["updated_at", "2019-10-13 19:03:43.222933"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"andrea.raynor@greenholt.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "andrea.raynor@greenholt.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kathleen@koelpin.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kathleen@koelpin.net"], ["encrypted_password", "$2a$04$um/LYyCyFofDswz5CODf/.PsM0xCn5sBIYr6DAaMaLc7IDfa0bz2e"], ["confirmed_at", "2019-10-13 19:03:43.230215"], ["name", "Liz Onnia"], ["email", "kathleen@koelpin.net"], ["created_at", "2019-10-13 19:03:43.231065"], ["updated_at", "2019-10-13 19:03:43.231065"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kathleen@koelpin.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kathleen@koelpin.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "dolores@daugherty.biz"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.7ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "dolores@daugherty.biz"], ["encrypted_password", "$2a$04$mr/QzfblbL0.ij62p3AvY.C/0GQuk4dph/e0vNlFpNUH1y9KUlMX6"], ["confirmed_at", "2019-10-13 19:03:43.252039"], ["email", "dolores@daugherty.biz"], ["created_at", "2019-10-13 19:03:43.253878"], ["updated_at", "2019-10-13 19:03:43.253878"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"dolores@daugherty.biz\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "dolores@daugherty.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"GaAkVs473YXaTR5lV7GZog\":{\"token\":\"$2a$10$Q7EgTD4cesPz3PgjgXC8HOSBrB.StCBdVzx/CUCpuH4vlaWpABs1q\",\"expiry\":1572203023,\"updated_at\":\"2019-10-13 19:03:43 UTC\"}}"], ["updated_at", "2019-10-13 19:03:43.314742"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jarod@wintheiser.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jarod@wintheiser.info"], ["encrypted_password", "$2a$04$Ldng3h1UBZKG2ama1xPJkeTrw/MRaWJGcH.vM3eiSfrFf6vBnBFUa"], ["confirmed_at", "2019-10-13 19:03:43.319531"], ["name", "Tina See"], ["email", "jarod@wintheiser.info"], ["created_at", "2019-10-13 19:03:43.321709"], ["updated_at", "2019-10-13 19:03:43.321709"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dvQorpv9v5S2U-4UAaVlGQ\":{\"token\":\"$2a$10$YT238iUmDho5LbPiIBCHjOc5OnHJw/0tUtPikkU1242cnbmns2WKC\",\"expiry\":1572203023,\"updated_at\":\"2019-10-13 19:03:43 UTC\"}}"], ["updated_at", "2019-10-13 19:03:43.372637"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jarod@wintheiser.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:03:43.419272"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 46ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tammara_kuphal@balistreripadberg.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tammara_kuphal@balistreripadberg.co"], ["encrypted_password", "$2a$04$zUzqVtrd1WoO97J7GdCrR.Iy80ljsw2H/aDP7dQC9spIf52GeG9GS"], ["confirmed_at", "2019-10-13 19:03:43.426600"], ["name", "Tom Katz"], ["email", "tammara_kuphal@balistreripadberg.co"], ["created_at", "2019-10-13 19:03:43.427435"], ["updated_at", "2019-10-13 19:03:43.427435"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "jackqueline_keler@ward.biz"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jackqueline_keler@ward.biz"], ["encrypted_password", "$2a$04$W9a4NPbENNzEQudZ5IAMc.9phsKsPuX9SswluM9YKTCfE721KVZFW"], ["confirmed_at", "2019-10-13 19:03:43.430874"], ["email", "jackqueline_keler@ward.biz"], ["created_at", "2019-10-13 19:03:43.431618"], ["updated_at", "2019-10-13 19:03:43.431618"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"zJ5K1hST2NNbDk38FAwj1w\":{\"token\":\"$2a$10$7gucoMQ3W4UgdsG0/ko4m.fKYSXUw6z7smJnY7jcwDR7CXMXbE5E.\",\"expiry\":1572203023,\"updated_at\":\"2019-10-13 19:03:43 UTC\"}}"], ["updated_at", "2019-10-13 19:03:43.480402"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "jackqueline_keler@ward.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 Admin Update (0.0ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:03:43.526197"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 45ms (Views: 0.1ms | ActiveRecord: 0.2ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "donovan@king.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "donovan@king.biz"], ["encrypted_password", "$2a$04$6FlPKZ2LZImfLbPkW.FoLO4qn.3dazvKT3CdZ5FKrDGonuiF0mDU."], ["confirmed_at", "2019-10-13 19:03:43.532672"], ["name", "Will Power"], ["email", "donovan@king.biz"], ["created_at", "2019-10-13 19:03:43.533480"], ["updated_at", "2019-10-13 19:03:43.533480"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"donovan@king.biz\",\n redirectUrl: \"http://terrymclaughlin.info/randolph\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "donovan@king.biz"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "6b5259ffb1239507c95ab560353694c238780feda365b3ff07f6005b9c6c7da5"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "6b5259ffb1239507c95ab560353694c238780feda365b3ff07f6005b9c6c7da5"], ["reset_password_sent_at", "2019-10-13 19:03:43.613737"], ["updated_at", "2019-10-13 19:03:43.613988"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (1.5ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 107.3ms Sent mail to donovan@king.biz (3.4ms) Date: Sun, 13 Oct 2019 14:03:43 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: donovan@king.biz Message-ID: <5da3750fb0d56_d0ed3fe30203200834d4@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: donovan@king.biz provider: email redirect-url: http://terrymclaughlin.info/randolph client-config: default

Hello donovan@king.biz!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.4ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fterrymclaughlin.info%2Frandolph&variables%5Btoken%5D=xyx5sC4braHTXUMcRmyt" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://terrymclaughlin.info/randolph", "token"=>"xyx5sC4braHTXUMcRmyt"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "6b5259ffb1239507c95ab560353694c238780feda365b3ff07f6005b9c6c7da5"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"MNFgABqGA4atzSozsrYyrA\":{\"token\":\"$2a$10$XVP1KXgR9pmvT1ror.MICO/VmaKl7reHOJfurvF7R7mpYNOTqiJRq\",\"expiry\":1572203023}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:43.771702"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://terrymclaughlin.info/randolph?access-token=spBpTQJU1kgBf6YlPYYY7w&client=MNFgABqGA4atzSozsrYyrA&client_id=MNFgABqGA4atzSozsrYyrA&config=&expiry=1572203023&reset_password=true&token=spBpTQJU1kgBf6YlPYYY7w&uid=donovan%40king.biz Completed 302 Found in 45ms (ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://dach.name/christopher_paucek\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"lewis@homenick.com\"\n name: \"Monica Auer V\"\n password: \"4Ds6Hz96WhZ\"\n passwordConfirmation: \"4Ds6Hz96WhZ\"\n confirmSuccessUrl: \"http://langworth.net/yong\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lewis@homenick.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lewis@homenick.com"], ["encrypted_password", "$2a$04$qlzGC86IjckJtkYa/Dyjx.u4IMdGW1JFBf6OEztmnxURYCD03Mbeu"], ["confirmation_token", "pJL_g3dhvyx4Jyc1_3rf"], ["confirmation_sent_at", "2019-10-13 19:03:43.787102"], ["name", "Monica Auer V"], ["email", "lewis@homenick.com"], ["created_at", "2019-10-13 19:03:43.787024"], ["updated_at", "2019-10-13 19:03:43.787024"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.7ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.3ms Sent mail to lewis@homenick.com (1.0ms) Date: Sun, 13 Oct 2019 14:03:43 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: lewis@homenick.com Message-ID: <5da3750fc1594_d0ed3fe302032008355a@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://langworth.net/yong

Welcome lewis@homenick.com!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 9ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Flangworth.net%2Fyong&variables%5Btoken%5D=pJL_g3dhvyx4Jyc1_3rf" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://langworth.net/yong", "token"=>"pJL_g3dhvyx4Jyc1_3rf"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "pJL_g3dhvyx4Jyc1_3rf"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:43.798563"], ["updated_at", "2019-10-13 19:03:43.798977"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://langworth.net/yong?account_confirmation_success=true Completed 302 Found in 6ms (ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Clarissa Schroeder\"\n password: \"WdPeRxEj3\"\n passwordConfirmation: \"WdPeRxEj3\"\n confirmSuccessUrl: \"http://gottliebgislason.io/harry\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.3ms)  (0.6ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hans.bernhard@heaney.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hans.bernhard@heaney.biz"], ["encrypted_password", "$2a$04$OgYAhMEGKyhlHiTyAex2Q.l98vrcufoNitJRUS60XS9qyU.7Y6sX2"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:43.823934"], ["name", "Doug Hole"], ["email", "hans.bernhard@heaney.biz"], ["created_at", "2019-10-13 19:03:43.825792"], ["updated_at", "2019-10-13 19:03:43.825792"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"6mXr6W_XK6IlyGkSbYYJMg\":{\"token\":\"$2a$10$uJ2bxGtDvlwfQp053k7WvuWaJeIMhokjfcQbiQ4u61hWvdRJO0UCS\",\"expiry\":1572203023,\"updated_at\":\"2019-10-13 19:03:43 UTC\"}}"], ["updated_at", "2019-10-13 19:03:43.882525"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "hans.bernhard@heaney.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$tkZecE91.FGFxDNv2I/MKeai71sSy7IFvdE4YRdsFkZoWGghuqgbS"], ["updated_at", "2019-10-13 19:03:43.935506"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:43.937196"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.5ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "landon@gleichner.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "landon@gleichner.biz"], ["encrypted_password", "$2a$04$LYALBh7vQW0T/bVj1bmAROpwSoXysyNDi0LKvZbo6Qd7LuJ7Oafvq"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:43.944401"], ["name", "Mandy Lifeboats"], ["email", "landon@gleichner.biz"], ["created_at", "2019-10-13 19:03:43.945658"], ["updated_at", "2019-10-13 19:03:43.945658"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"xkHFb7cAfXnCXWt28AK_Xw\":{\"token\":\"$2a$10$3VzMdz3WihgY4sk8.43TTOyTG55/llrUGa4xX.ySFVXq6a6cQnvDa\",\"expiry\":1572203023,\"updated_at\":\"2019-10-13 19:03:43 UTC\"}}"], ["updated_at", "2019-10-13 19:03:43.996228"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "landon@gleichner.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$AY5lU1FkM14mOxZ0V4Ewq.rredA/gpeXDiVpE8T63ppi93yGzK7.i"], ["updated_at", "2019-10-13 19:03:44.047460"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:44.049084"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "timothy.mante@ullrich.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "timothy.mante@ullrich.io"], ["encrypted_password", "$2a$04$SMn6sl7K1pA6ARClrFmJy.cvyHeCcSt3cvNM3zD3mAAsy4.czYKS6"], ["confirmed_at", "2019-10-13 19:03:44.057917"], ["name", "Jeff Healitt"], ["email", "timothy.mante@ullrich.io"], ["created_at", "2019-10-13 19:03:44.059519"], ["updated_at", "2019-10-13 19:03:44.059519"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"HRaoJHUvJD1zvRy2UiIpWA\":{\"token\":\"$2a$10$kOhEdFAEd5yM/.KsvsBrSeAzemRZ.Lvo/krktawsbjHIwcbm..qLy\",\"expiry\":1572203024,\"updated_at\":\"2019-10-13 19:03:44 UTC\"}}"], ["updated_at", "2019-10-13 19:03:44.111228"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "timothy.mante@ullrich.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.3ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "miquel@mantealtenwerth.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "miquel@mantealtenwerth.info"], ["encrypted_password", "$2a$04$RT5nttfng2r.vPTJZ3laHuBk7r5Jyj7Nf1OFDj61zraRF2KmTROPu"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:44.168210"], ["name", "Rick Kleiner"], ["email", "miquel@mantealtenwerth.info"], ["created_at", "2019-10-13 19:03:44.169316"], ["updated_at", "2019-10-13 19:03:44.169316"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yHaDuayLKv9hWNh43FRk5Q\":{\"token\":\"$2a$10$9BajLE3ZT0blRKTyN9vgReWuxKbSiH1hV6sFe4b/Urb8Ycl1Bl2sS\",\"expiry\":1572203024,\"updated_at\":\"2019-10-13 19:03:44 UTC\"}}"], ["updated_at", "2019-10-13 19:03:44.218092"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "miquel@mantealtenwerth.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$EiJWgtwIzr4.q0EEk9KBe.v6BELZQiCYhvJIpWGAFPJHtbgRS41uO"], ["updated_at", "2019-10-13 19:03:44.268194"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:44.269783"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.4ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "barbra_lindgren@harris.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "barbra_lindgren@harris.info"], ["encrypted_password", "$2a$04$HQN4BcHMBY.ll2J8fqMWdOan1CderiEikAfI8IUA1vASjBDj2yGoK"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:44.275518"], ["name", "Bob Frapples"], ["email", "barbra_lindgren@harris.info"], ["created_at", "2019-10-13 19:03:44.277042"], ["updated_at", "2019-10-13 19:03:44.277042"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Gpei5gLtGLghkAm-G8mIug\":{\"token\":\"$2a$10$div9I1w.7ZK1XQQ1/kH7gOSe4b3ETHPvIWovYMmjEylIDBNwauqyu\",\"expiry\":1572203024,\"updated_at\":\"2019-10-13 19:03:44 UTC\"}}"], ["updated_at", "2019-10-13 19:03:44.325129"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "barbra_lindgren@harris.info"], ["LIMIT", 1]]  (0.2ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$U72E7K4ZPevfgczsLrofwewUAI0E20K2N1tupa7n7i5bDegCY.v32"], ["updated_at", "2019-10-13 19:03:44.374734"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:44.375860"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "herschel_bogisich@breitenbergterry.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "herschel_bogisich@breitenbergterry.info"], ["encrypted_password", "$2a$04$xMecXwlWcsVNB4sksUtq7uKAl6i3yAJgyecQ6zFyeGa7UFwHH5cwe"], ["confirmed_at", "2019-10-13 19:03:44.382091"], ["name", "Stew Ng"], ["email", "herschel_bogisich@breitenbergterry.info"], ["created_at", "2019-10-13 19:03:44.382925"], ["updated_at", "2019-10-13 19:03:44.382925"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lidcj52nC1EK979xE9B1eA\":{\"token\":\"$2a$10$7zd8AJTTcrBmRr65XQ5/te8s5YB6lk1KEVLO5UYsUUdMswg/4nura\",\"expiry\":1572203024,\"updated_at\":\"2019-10-13 19:03:44 UTC\"}}"], ["updated_at", "2019-10-13 19:03:44.429279"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "herschel_bogisich@breitenbergterry.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$xRckk0az62V1q1/n2P/o9.iHVPuEHt3QV7/iRS4x.zkfTgl9dZDRy"], ["updated_at", "2019-10-13 19:03:44.479922"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sean_marvin@kemmer.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sean_marvin@kemmer.name"], ["encrypted_password", "$2a$04$cx/tmAev4ymvaBCbtf9K5.jLPqByRzrGu/po8loi.Z32RK3SWH/Eu"], ["confirmed_at", "2019-10-13 19:03:44.487260"], ["name", "Bill Dollar"], ["email", "sean_marvin@kemmer.name"], ["created_at", "2019-10-13 19:03:44.488091"], ["updated_at", "2019-10-13 19:03:44.488091"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "basil.williamson@hilll.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "basil.williamson@hilll.org"], ["encrypted_password", "$2a$04$AV7AclYr.T/i1MIDZyZMx.TpeQTjqcLwzp.egqUgQpzYS77PoJKxi"], ["confirmed_at", "2019-10-13 19:03:44.494878"], ["name", "Misty Meanor"], ["email", "basil.williamson@hilll.org"], ["created_at", "2019-10-13 19:03:44.495749"], ["updated_at", "2019-10-13 19:03:44.495749"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5f74bffb1f51beedd899f425a12b09e49563c357ff64f4c60258964b911fb0f5"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "5f74bffb1f51beedd899f425a12b09e49563c357ff64f4c60258964b911fb0f5"], ["reset_password_sent_at", "2019-10-13 19:03:44.497519"], ["updated_at", "2019-10-13 19:03:44.497813"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%2282jJvUaUE2QmYaMQ8zyz%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"82jJvUaUE2QmYaMQ8zyz\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5f74bffb1f51beedd899f425a12b09e49563c357ff64f4c60258964b911fb0f5"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"1JVT3_XbrGFO7_AnO5uDYA\":{\"token\":\"$2a$10$udPzXb1yuAQIAbc4ZGFBO.4XQLceU/aq0t09GFLvwFZbmnj/QoqHK\",\"expiry\":1572203024}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:44.554263"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"1JVT3_XbrGFO7_AnO5uDYA\":{\"token\":\"$2a$10$udPzXb1yuAQIAbc4ZGFBO.4XQLceU/aq0t09GFLvwFZbmnj/QoqHK\",\"expiry\":1572203024},\"ocXZqA9TxIDmUe-ceORVSg\":{\"token\":\"$2a$10$rN.VSrgxtBZxwXV8ZIbzdOfhlOcXIMeq7mskFzSx43KfcBjm.yEZi\",\"expiry\":1572203024,\"updated_at\":\"2019-10-13 19:03:44 UTC\"}}"], ["updated_at", "2019-10-13 19:03:44.598533"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 99ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rubin@mayergislason.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rubin@mayergislason.name"], ["encrypted_password", "$2a$04$N59VnXGmmGWrDlAYNRw2YuQdk9Y2ws4V4Uurjrlbt46J6j3y7v42u"], ["confirmed_at", "2019-10-13 19:03:44.603008"], ["name", "Hilda Climb"], ["email", "rubin@mayergislason.name"], ["created_at", "2019-10-13 19:03:44.603956"], ["updated_at", "2019-10-13 19:03:44.603956"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ec91b08934fabcd93cc29410cefc7e0ca18e5ececde241513f5a0acca705f83e"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "ec91b08934fabcd93cc29410cefc7e0ca18e5ececde241513f5a0acca705f83e"], ["reset_password_sent_at", "2019-10-13 19:03:44.605310"], ["updated_at", "2019-10-13 19:03:44.605488"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22krXCsxRmJHscjcaXCik-%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"krXCsxRmJHscjcaXCik-\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ec91b08934fabcd93cc29410cefc7e0ca18e5ececde241513f5a0acca705f83e"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nThgD4O11kPXV9W4slGuCQ\":{\"token\":\"$2a$10$rfyAInGGYuz3xVaVtlzueuRb2tIJcWn1AEq/QtUUJA0BQ7B9XiO6O\",\"expiry\":1572203024}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:44.656628"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=JsSvwXuuEqVdaOMcpu3L5w&client=nThgD4O11kPXV9W4slGuCQ&client_id=nThgD4O11kPXV9W4slGuCQ&config=&expiry=1572203024&reset_password=true&token=JsSvwXuuEqVdaOMcpu3L5w&uid=rubin%40mayergislason.name Completed 302 Found in 51ms (ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mauricio@gorczany.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mauricio@gorczany.net"], ["encrypted_password", "$2a$04$nniU9JhOAioymsqI2C..AeJBQH/RUPIgwwKt701H9BlsBQp7oMxuK"], ["confirmed_at", "2019-10-13 09:03:44"], ["name", "Ayma Moron"], ["email", "mauricio@gorczany.net"], ["created_at", "2019-10-13 09:03:44"], ["updated_at", "2019-10-13 09:03:44"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "fff4f9fda0157de1690aae700313ff8bca063d543ee9f5c469d4acd8f7af92c3"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "fff4f9fda0157de1690aae700313ff8bca063d543ee9f5c469d4acd8f7af92c3"], ["reset_password_sent_at", "2019-10-13 09:03:44"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22XrL8pbF84YWpaqTXcaEz%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"XrL8pbF84YWpaqTXcaEz\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "fff4f9fda0157de1690aae700313ff8bca063d543ee9f5c469d4acd8f7af92c3"], ["LIMIT", 1]] Completed 200 OK in 28ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "scotty.abshire@halvorsonhermann.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "scotty.abshire@halvorsonhermann.co"], ["encrypted_password", "$2a$04$HbBBfKc1hN0cFZ52bBrbF.XxgXQgzKeHIitlEFRn3TdAdeoLq7urO"], ["confirmed_at", "2019-10-13 19:03:44.698024"], ["name", "Raynor Schein"], ["email", "scotty.abshire@halvorsonhermann.co"], ["created_at", "2019-10-13 19:03:44.698913"], ["updated_at", "2019-10-13 19:03:44.698913"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "fe5fc27e6611a0a6975c80cc06bd43bed9fece48cb370153d8f97bb14145fb2c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "fe5fc27e6611a0a6975c80cc06bd43bed9fece48cb370153d8f97bb14145fb2c"], ["reset_password_sent_at", "2019-10-13 19:03:44.700375"], ["updated_at", "2019-10-13 19:03:44.700599"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22XEVEX7nE8rE9K4XAkyJ9invalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"XEVEX7nE8rE9K4XAkyJ9invalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "29e96b5f78fbbc93aee86dc74b4aef4b68ece58e2c67b3a5c59f16649bfd85b6"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tania@murazik.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tania@murazik.biz"], ["encrypted_password", "$2a$04$T7EwLITwRbQTU7dulb06iuR8k7gtkniH9j8EF2ZTYrn95.EDLdlYO"], ["confirmation_token", "gdcxaY9z_Q3wv6QytN8X"], ["confirmation_sent_at", "2019-10-13 19:03:44.708156"], ["name", "Warren T."], ["email", "tania@murazik.biz"], ["created_at", "2019-10-13 19:03:44.708078"], ["updated_at", "2019-10-13 19:03:44.708078"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.4ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.3ms Sent mail to tania@murazik.biz (1.2ms) Date: Sun, 13 Oct 2019 14:03:44 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: tania@murazik.biz Message-ID: <5da37510ad9f0_d0ed3fe3020320083672@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome tania@murazik.biz!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22gdcxaY9z_Q3wv6QytN8X%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fthielgulgowski.co%2Fchung.grady%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"gdcxaY9z_Q3wv6QytN8X\"\n redirectUrl: \"http://thielgulgowski.co/chung.grady\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "gdcxaY9z_Q3wv6QytN8X"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:44.714893"], ["updated_at", "2019-10-13 19:03:44.715213"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://thielgulgowski.co/chung.grady?account_confirmation_success=true Completed 302 Found in 3ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mitch.frami@marvin.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mitch.frami@marvin.name"], ["encrypted_password", "$2a$04$9sNMaMg3FTCseRp5BEgT0erkmhWpW2N8IwKmaV.yxwtYpMVFe2T1q"], ["confirmation_token", "4gWs2Sf5HzGhKmstVsEZ"], ["confirmation_sent_at", "2019-10-13 19:03:44.721738"], ["name", "Douglas Furr"], ["email", "mitch.frami@marvin.name"], ["created_at", "2019-10-13 19:03:44.721625"], ["updated_at", "2019-10-13 19:03:44.721625"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%224gWs2Sf5HzGhKmstVsEZ-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fryan.net%2Fozzie_quitzon%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"4gWs2Sf5HzGhKmstVsEZ-invalid\"\n redirectUrl: \"http://ryan.net/ozzie_quitzon\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "4gWs2Sf5HzGhKmstVsEZ-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "4a0b03936851c6f8f984b58475388bb7207277c66bed0f7f6a52ef8530c1d619"], ["LIMIT", 1]] Completed 200 OK in 89ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marty.murray@kertzmann.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marty.murray@kertzmann.name"], ["encrypted_password", "$2a$04$8fAFwdyEhxy2l5V2.n3F1.7GwQdCNgDKmk6Y.sLlq6Vo.PaTZjmb6"], ["confirmed_at", "2019-10-13 19:03:44.817435"], ["name", "Warren Piece"], ["email", "marty.murray@kertzmann.name"], ["created_at", "2019-10-13 19:03:44.818099"], ["updated_at", "2019-10-13 19:03:44.818099"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Ninc8pUok0g62XpbwD52QQ\":{\"token\":\"$2a$10$5P4uoZioeIpGIeWrtuZtTeFtb9d0WVz3jkyWgG5NX2uEnmSBmWp6W\",\"expiry\":1572203024,\"updated_at\":\"2019-10-13 19:03:44 UTC\"}}"], ["updated_at", "2019-10-13 19:03:44.865755"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:44 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "marty.murray@kertzmann.name"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "margarito@mante.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "margarito@mante.com"], ["encrypted_password", "$2a$04$Te5/FXl1bLg5KqbWwGcTzOATSGIDvg0oRQ5UnSwnYGu8Qu8RyHyuO"], ["confirmed_at", "2019-10-13 19:03:44.927556"], ["name", "Skip Roper"], ["email", "margarito@mante.com"], ["created_at", "2019-10-13 19:03:44.928651"], ["updated_at", "2019-10-13 19:03:44.928651"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:44 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lesia_will@thompsonprosacco.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lesia_will@thompsonprosacco.org"], ["encrypted_password", "$2a$04$6sKXtXw9PywlTik2yk8QPOfw1F2X4AG0ZTbkzV54XfLqrLv7Bb6nq"], ["confirmed_at", "2019-10-13 19:03:47.847525"], ["name", "Rhoda Mule"], ["email", "lesia_will@thompsonprosacco.org"], ["created_at", "2019-10-13 19:03:47.848759"], ["updated_at", "2019-10-13 19:03:47.848759"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lesia_will@thompsonprosacco.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lesia_will@thompsonprosacco.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"aFfBzv5i0s5rxuA3qaZz1Q\":{\"token\":\"$2a$10$M4pRVBjktMvL4M5dTDHA3.fW3QLMPMWgtq3l9AaqjISZiWA8CooAC\",\"expiry\":1572203027,\"updated_at\":\"2019-10-13 19:03:47 UTC\"}}"], ["updated_at", "2019-10-13 19:03:47.917243"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:03:47.921052"], ["last_sign_in_at", "2019-10-13 19:03:47.921052"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:03:47.921301"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.7ms | Allocations: 22886) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eugene.ullrich@krajcik.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "eugene.ullrich@krajcik.co"], ["encrypted_password", "$2a$04$dXk0B4pFHdqDTp0laLIQG.qIhcdXQq5wMmzT2VhUu0j0vImM7W1z6"], ["confirmed_at", "2019-10-13 19:03:47.929950"], ["name", "Cole Durkee"], ["email", "eugene.ullrich@krajcik.co"], ["created_at", "2019-10-13 19:03:47.930862"], ["updated_at", "2019-10-13 19:03:47.930862"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"eugene.ullrich@krajcik.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "eugene.ullrich@krajcik.co"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2386)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "josef@williamson.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "josef@williamson.biz"], ["encrypted_password", "$2a$04$.XJsHMXCQXOGpJbOBJB0AetRuhxwG0iRL.Cq3NldmcgmCQTRu1dU2"], ["confirmation_token", "g7MX9f2S8VgkVA4C4SbR"], ["confirmation_sent_at", "2019-10-13 19:03:47.940741"], ["name", "Diane Toluvia"], ["email", "josef@williamson.biz"], ["created_at", "2019-10-13 19:03:47.940658"], ["updated_at", "2019-10-13 19:03:47.940658"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"josef@williamson.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "josef@williamson.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1704)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dion@mclaughlin.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dion@mclaughlin.net"], ["encrypted_password", "$2a$04$8./livNjwevoSZltEL1s/uo/6KmE/OT5Y6n29rnbynPR6Mor9nGom"], ["confirmed_at", "2019-10-13 19:03:47.948029"], ["locked_at", "2019-10-13 19:03:47.948060"], ["name", "Penny Nichols"], ["email", "dion@mclaughlin.net"], ["created_at", "2019-10-13 19:03:47.950076"], ["updated_at", "2019-10-13 19:03:47.950076"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dion@mclaughlin.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dion@mclaughlin.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1723)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gayle.dickinson@auer.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gayle.dickinson@auer.io"], ["encrypted_password", "$2a$04$8ZOawFzmsLIS9AEHAFNfZeMfiVSXZt51miIGF.KVxWH.kQWCuop.a"], ["confirmed_at", "2019-10-13 19:03:47.959472"], ["name", "Ty Tannick"], ["email", "gayle.dickinson@auer.io"], ["created_at", "2019-10-13 19:03:47.960565"], ["updated_at", "2019-10-13 19:03:47.960565"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"gayle.dickinson@auer.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gayle.dickinson@auer.io"], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 1701)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "carin_yost@stamm.co"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "carin_yost@stamm.co"], ["encrypted_password", "$2a$04$OvhWQvn21PGw/aj.7DYJvO8hNpJ5.IGejw4NU8h.wBHJ0NaRH8x1i"], ["confirmed_at", "2019-10-13 19:03:47.985292"], ["email", "carin_yost@stamm.co"], ["created_at", "2019-10-13 19:03:47.986694"], ["updated_at", "2019-10-13 19:03:47.986694"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"carin_yost@stamm.co\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "carin_yost@stamm.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"N_SxtRqxm35AvD4YZFnw3g\":{\"token\":\"$2a$10$hTimKDKKlNmUXlo1toIca./P55x1WU/WNf57Oz9l0oTKPBReON.G6\",\"expiry\":1572203028,\"updated_at\":\"2019-10-13 19:03:47 UTC\"}}"], ["updated_at", "2019-10-13 19:03:48.046769"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2750)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gerard_jacobson@raudare.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gerard_jacobson@raudare.info"], ["encrypted_password", "$2a$04$bijF8cdLWrxxJjBsLok0vuofqSq2ii.7kY548RWhCGwRq8YTaCp6y"], ["confirmed_at", "2019-10-13 19:03:48.053625"], ["name", "Rex Karrs"], ["email", "gerard_jacobson@raudare.info"], ["created_at", "2019-10-13 19:03:48.054839"], ["updated_at", "2019-10-13 19:03:48.054839"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"zQjRD6BwD7dg8de6QRKsow\":{\"token\":\"$2a$10$qRKpYcRaT7ZUlLtprcYMQ.vsk5JgCMGh6mWw3.whl5ZYJO.55qiWm\",\"expiry\":1572203028,\"updated_at\":\"2019-10-13 19:03:48 UTC\"}}"], ["updated_at", "2019-10-13 19:03:48.103765"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gerard_jacobson@raudare.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:03:48.152077"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2197) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1237)  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mervin.auer@legros.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mervin.auer@legros.com"], ["encrypted_password", "$2a$04$OT6LIVLv2m9uGfTB8.MkL.xrByMOZoVB2yTY2ffFigL1cXp0jLBju"], ["confirmed_at", "2019-10-13 19:03:48.159621"], ["name", "Pat Pending"], ["email", "mervin.auer@legros.com"], ["created_at", "2019-10-13 19:03:48.160400"], ["updated_at", "2019-10-13 19:03:48.160400"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "lynell_kuhlman@flatley.biz"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "lynell_kuhlman@flatley.biz"], ["encrypted_password", "$2a$04$.AGni1ogv19xFCqLSCyIu.4TsLym.tfTcGk6UbY2Vmb9cXcibmCKW"], ["confirmed_at", "2019-10-13 19:03:48.164244"], ["email", "lynell_kuhlman@flatley.biz"], ["created_at", "2019-10-13 19:03:48.166093"], ["updated_at", "2019-10-13 19:03:48.166093"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"x9Gvrcnehl5Fp5HyAs18Xw\":{\"token\":\"$2a$10$J28U1F8fIIphvC4POyqKYOtgXVWDRQm24xQD4bxDuSX9mssiX5zle\",\"expiry\":1572203028,\"updated_at\":\"2019-10-13 19:03:48 UTC\"}}"], ["updated_at", "2019-10-13 19:03:48.218021"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "lynell_kuhlman@flatley.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:03:48.265794"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2126) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mose.ko@lubowitzlemke.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mose.ko@lubowitzlemke.org"], ["encrypted_password", "$2a$04$qVNiuIRihJkq/GYuWCiOROKIAR1vXRE25u9DcBBdwGsA0on7A0P6S"], ["confirmed_at", "2019-10-13 19:03:48.273813"], ["name", "Marj Oram"], ["email", "mose.ko@lubowitzlemke.org"], ["created_at", "2019-10-13 19:03:48.274763"], ["updated_at", "2019-10-13 19:03:48.274763"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"mose.ko@lubowitzlemke.org\",\n redirectUrl: \"http://hintz.com/wilbur.lockman\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "mose.ko@lubowitzlemke.org"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d1eb15177a67f92fe5311f2168a5a348dfe3e802af09bb862347330e7b5895d8"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "d1eb15177a67f92fe5311f2168a5a348dfe3e802af09bb862347330e7b5895d8"], ["reset_password_sent_at", "2019-10-13 19:03:48.359064"], ["updated_at", "2019-10-13 19:03:48.359227"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.5ms | Allocations: 1295) Devise::Mailer#reset_password_instructions: processed outbound mail in 118.2ms Delivered mail 5da37514755c6_d1063ffbb102ffd4926c1@Marios-MacBook-Pro.local.mail (4.2ms) Date: Sun, 13 Oct 2019 14:03:48 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: mose.ko@lubowitzlemke.org Message-ID: <5da37514755c6_d1063ffbb102ffd4926c1@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: mose.ko@lubowitzlemke.org provider: email redirect-url: http://hintz.com/wilbur.lockman client-config: default

Hello mose.ko@lubowitzlemke.org!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 206ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 68099) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fhintz.com%2Fwilbur.lockman&variables%5Btoken%5D=GsMAUzRk9fYosVQe9kwY" for 127.0.0.1 at 2019-10-13 14:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://hintz.com/wilbur.lockman", "token"=>"GsMAUzRk9fYosVQe9kwY"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d1eb15177a67f92fe5311f2168a5a348dfe3e802af09bb862347330e7b5895d8"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kPpgkPm2I-pf90T-xFzbKQ\":{\"token\":\"$2a$10$ZpSf8vNEOy8hF4CI.kpWB.XB34XeyUIjgv8wtIQpBklkV70Xx2Hxm\",\"expiry\":1572203028}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:48.529086"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://hintz.com/wilbur.lockman?access-token=Dn2HrxWBktJIHZajUpha6w&client=kPpgkPm2I-pf90T-xFzbKQ&client_id=kPpgkPm2I-pf90T-xFzbKQ&config=&expiry=1572203028&reset_password=true&token=Dn2HrxWBktJIHZajUpha6w&uid=mose.ko%40lubowitzlemke.org Completed 302 Found in 45ms (ActiveRecord: 0.2ms | Allocations: 2474) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://sporer.name/derek.lebsack\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1519)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"janee_lowe@bechtelarsanford.io\"\n name: \"Stasia Cronin\"\n password: \"LiBzT3eUm\"\n passwordConfirmation: \"LiBzT3eUm\"\n confirmSuccessUrl: \"http://pfeffer.org/patrick.reichert\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "janee_lowe@bechtelarsanford.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "janee_lowe@bechtelarsanford.io"], ["encrypted_password", "$2a$04$XGavvXrEnInQQkh.tX1tLuAiERTztrBFIDcUMzaFP/pRpWb45GdgC"], ["confirmation_token", "VVyHnxcwyAAe5Vjp4TYH"], ["confirmation_sent_at", "2019-10-13 19:03:48.544219"], ["name", "Stasia Cronin"], ["email", "janee_lowe@bechtelarsanford.io"], ["created_at", "2019-10-13 19:03:48.544149"], ["updated_at", "2019-10-13 19:03:48.544149"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.7ms | Allocations: 587) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.8ms Delivered mail 5da3751485aff_d1063ffbb102ffd492727@Marios-MacBook-Pro.local.mail (1.1ms) Date: Sun, 13 Oct 2019 14:03:48 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: janee_lowe@bechtelarsanford.io Message-ID: <5da3751485aff_d1063ffbb102ffd492727@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://pfeffer.org/patrick.reichert

Welcome janee_lowe@bechtelarsanford.io!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5854)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fpfeffer.org%2Fpatrick.reichert&variables%5Btoken%5D=VVyHnxcwyAAe5Vjp4TYH" for 127.0.0.1 at 2019-10-13 14:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://pfeffer.org/patrick.reichert", "token"=>"VVyHnxcwyAAe5Vjp4TYH"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "VVyHnxcwyAAe5Vjp4TYH"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:48.555698"], ["updated_at", "2019-10-13 19:03:48.555923"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://pfeffer.org/patrick.reichert?account_confirmation_success=true Completed 302 Found in 6ms (ActiveRecord: 0.4ms | Allocations: 2516) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"John Erdman\"\n password: \"0L2lBo5XeDhX\"\n passwordConfirmation: \"0L2lBo5XeDhX\"\n confirmSuccessUrl: \"http://langworth.biz/grayce_kerluke\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 3063)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elise@schroeder.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elise@schroeder.info"], ["encrypted_password", "$2a$04$JEm6TimwdYEntHYO3yVeaeB78A0Ukx1dzDr.kX8W5rN3fREFYSdzO"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:48.574301"], ["name", "Luna Tick"], ["email", "elise@schroeder.info"], ["created_at", "2019-10-13 19:03:48.575483"], ["updated_at", "2019-10-13 19:03:48.575483"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NzE_noDQwegSZVLI82Wfxg\":{\"token\":\"$2a$10$amB89biP/GAGG0wKf65x0eO9KYvR49G4IHZKaEwzs7GDqAr.ytCku\",\"expiry\":1572203028,\"updated_at\":\"2019-10-13 19:03:48 UTC\"}}"], ["updated_at", "2019-10-13 19:03:48.631433"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "elise@schroeder.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$81t6KJNJl28KZwz986Nu6O.iYOkIbIaymWIYbVAiaKLPhBh0Wo1D2"], ["updated_at", "2019-10-13 19:03:48.678542"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:48.679372"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 3223) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bobbie.lehner@beahan.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bobbie.lehner@beahan.org"], ["encrypted_password", "$2a$04$KySwfP9.2F6N9MycyK51HuYwP5P78u7KlPtKjs2O82uyKBgH6rbjm"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:48.684590"], ["name", "Fletcher Bisceps"], ["email", "bobbie.lehner@beahan.org"], ["created_at", "2019-10-13 19:03:48.685456"], ["updated_at", "2019-10-13 19:03:48.685456"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gCK9CXaEF3eRp3ikR3L0dA\":{\"token\":\"$2a$10$QbgMgYQr0WodACYTUSaL8eIE/4tD9Oe.iqAMJm9jyee/Yfc4sCmTO\",\"expiry\":1572203028,\"updated_at\":\"2019-10-13 19:03:48 UTC\"}}"], ["updated_at", "2019-10-13 19:03:48.732467"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "bobbie.lehner@beahan.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$pSiuP85xnUR/rR/L3iy3repvJd/rSfsrS/B.hj4iJu31hHvUoGt5a"], ["updated_at", "2019-10-13 19:03:48.779314"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:48.780139"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 3218) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jacinto.donnelly@ferryvonrueden.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jacinto.donnelly@ferryvonrueden.net"], ["encrypted_password", "$2a$04$wQ4URB1xIa8c39xRZlQir.6IMRaVHoXGu4A1PfC1Q7FvXe6CHhCxa"], ["confirmed_at", "2019-10-13 19:03:48.787144"], ["name", "Anna Septic"], ["email", "jacinto.donnelly@ferryvonrueden.net"], ["created_at", "2019-10-13 19:03:48.788128"], ["updated_at", "2019-10-13 19:03:48.788128"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"WZ6p7cLynzttvn3cZe0-dw\":{\"token\":\"$2a$10$Xh5eqJEFpNWVXa116sT.n.C3AoKqc3/W10wKL./zvzbuRjDB5uNrC\",\"expiry\":1572203028,\"updated_at\":\"2019-10-13 19:03:48 UTC\"}}"], ["updated_at", "2019-10-13 19:03:48.837281"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jacinto.donnelly@ferryvonrueden.net"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2683) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kevin@rosenbaum.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kevin@rosenbaum.biz"], ["encrypted_password", "$2a$04$tuPlTsOTsu0gwQFf/osFA.yQ2cvat5RqweC4.nZAjUl5iR13ZW2m6"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:48.889677"], ["name", "Brandy Bottle"], ["email", "kevin@rosenbaum.biz"], ["created_at", "2019-10-13 19:03:48.890402"], ["updated_at", "2019-10-13 19:03:48.890402"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5DX5SiUydf0XwiSP-IhybQ\":{\"token\":\"$2a$10$HnN5yy2ig85WOYZTMnEryeaTpNu47Eo.0rdzr78krC2iv0uBopw7.\",\"expiry\":1572203028,\"updated_at\":\"2019-10-13 19:03:48 UTC\"}}"], ["updated_at", "2019-10-13 19:03:48.937774"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kevin@rosenbaum.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$hpLklZTgkfjR5.Z2iDShQOJXXEbQkJsH8uDQUxCGjUP2soUjzjgfa"], ["updated_at", "2019-10-13 19:03:48.985626"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:48.986584"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 3215) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rico.hermiston@bergstrom.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rico.hermiston@bergstrom.com"], ["encrypted_password", "$2a$04$BBx67IlPu/EDQBv8H44J9O3zd2vHHOSO4QVkKLNRb9lAWPDBOfq22"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:48.991460"], ["name", "Melba Crisp"], ["email", "rico.hermiston@bergstrom.com"], ["created_at", "2019-10-13 19:03:48.992213"], ["updated_at", "2019-10-13 19:03:48.992213"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-KT5sIt52Mx2IhhiXTXiYg\":{\"token\":\"$2a$10$ICSuTp4TAyS73VYANgbfAed92Mm7FA7Q3Xnxqu6PZA09ZWopuzRqW\",\"expiry\":1572203029,\"updated_at\":\"2019-10-13 19:03:48 UTC\"}}"], ["updated_at", "2019-10-13 19:03:49.041655"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "rico.hermiston@bergstrom.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$/b1Cy/OIFyFj/2f7qKb2xe4.kdqTzrhiEQiT386qbmWehGC9jEgN6"], ["updated_at", "2019-10-13 19:03:49.088840"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:49.089680"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 3218) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leonida@schuppe.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "leonida@schuppe.net"], ["encrypted_password", "$2a$04$R9RZ/0hxNyTTEEUH1nDPhuQlqcnLZfG9sKmbBwu3u.bPayrwFWfxK"], ["confirmed_at", "2019-10-13 19:03:49.095732"], ["name", "Rhoda Mule"], ["email", "leonida@schuppe.net"], ["created_at", "2019-10-13 19:03:49.096763"], ["updated_at", "2019-10-13 19:03:49.096763"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"tMqDCKSND8E8h7lSZZk9Kg\":{\"token\":\"$2a$10$TsEKlKhvEQIVtdnjmNIdveAdmPkzYK9jYUBQAuHpCe4I2AdgAQfby\",\"expiry\":1572203029,\"updated_at\":\"2019-10-13 19:03:49 UTC\"}}"], ["updated_at", "2019-10-13 19:03:49.144405"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "leonida@schuppe.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$st5vuEOGvJ3qIY4xzkTt7O2BGXiPIVMhuu0FSiEYh/VbNTQyqFmTS"], ["updated_at", "2019-10-13 19:03:49.192260"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2981) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "franklyn_walker@stantondoyle.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "franklyn_walker@stantondoyle.com"], ["encrypted_password", "$2a$04$PPNYb.WOe0gAmdFHP8yvFuS78XY7yCYg0nBulr13..OawJw250Sc6"], ["confirmed_at", "2019-10-13 19:03:49.198690"], ["name", "Abe Rudder"], ["email", "franklyn_walker@stantondoyle.com"], ["created_at", "2019-10-13 19:03:49.199476"], ["updated_at", "2019-10-13 19:03:49.199476"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1487) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kory.haley@willbrakus.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kory.haley@willbrakus.org"], ["encrypted_password", "$2a$04$C7aARv7w5Lips8LKI6WGqujFmOYZcVSNUuvFvccgWvEKehpwImNGG"], ["confirmed_at", "2019-10-13 19:03:49.206312"], ["name", "Owen Cash"], ["email", "kory.haley@willbrakus.org"], ["created_at", "2019-10-13 19:03:49.207579"], ["updated_at", "2019-10-13 19:03:49.207579"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7c385bc80cfd2840a2edc974406f38a1edc83f081d0e942f1bedfbd02bd9d3c9"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7c385bc80cfd2840a2edc974406f38a1edc83f081d0e942f1bedfbd02bd9d3c9"], ["reset_password_sent_at", "2019-10-13 19:03:49.209608"], ["updated_at", "2019-10-13 19:03:49.209768"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%225uhC3YrpWGTqsENotgz1%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"5uhC3YrpWGTqsENotgz1\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7c385bc80cfd2840a2edc974406f38a1edc83f081d0e942f1bedfbd02bd9d3c9"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5mTwHM5IclKVP0RRkVlfcA\":{\"token\":\"$2a$10$m70/k7Riose62gUz82mW6egxmgb7Z3iY5D9kDwhGbcq2Luhi7fcKu\",\"expiry\":1572203029}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:49.262978"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5mTwHM5IclKVP0RRkVlfcA\":{\"token\":\"$2a$10$m70/k7Riose62gUz82mW6egxmgb7Z3iY5D9kDwhGbcq2Luhi7fcKu\",\"expiry\":1572203029},\"KNAL2ns2OH9uYH-SBdJ4hA\":{\"token\":\"$2a$10$mtxVm0qjroZnYekRi7CX6.j1SEZgHSLnWQk15LV.SyjqK4pZBQf9u\",\"expiry\":1572203029,\"updated_at\":\"2019-10-13 19:03:49 UTC\"}}"], ["updated_at", "2019-10-13 19:03:49.307773"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 97ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2971)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dean@pourosferry.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dean@pourosferry.co"], ["encrypted_password", "$2a$04$DRf6Ej7/zRIBIR/jnqFjYOH80vMHZ/ZiRhcm8F51If2Y6obe9t1LK"], ["confirmed_at", "2019-10-13 19:03:49.314276"], ["name", "Evans Gayte"], ["email", "dean@pourosferry.co"], ["created_at", "2019-10-13 19:03:49.315122"], ["updated_at", "2019-10-13 19:03:49.315122"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7673b4e2a9181c13a5a84f2ad4ee7324f0075edf770d6a1df31c19383cd8abf9"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7673b4e2a9181c13a5a84f2ad4ee7324f0075edf770d6a1df31c19383cd8abf9"], ["reset_password_sent_at", "2019-10-13 19:03:49.317082"], ["updated_at", "2019-10-13 19:03:49.317281"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22i2G7PvKXHy4vn8DUeK5j%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"i2G7PvKXHy4vn8DUeK5j\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7673b4e2a9181c13a5a84f2ad4ee7324f0075edf770d6a1df31c19383cd8abf9"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"P_hVhL12TVYPiSkroBCYwQ\":{\"token\":\"$2a$10$j5pQVDJTWWPnDECIIZSRqOBU4K0lT/D.xlbJJkwOKHK1rUthClN8m\",\"expiry\":1572203029}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:49.366782"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=YbhvUmnflJCLiTKyEOzoBQ&client=P_hVhL12TVYPiSkroBCYwQ&client_id=P_hVhL12TVYPiSkroBCYwQ&config=&expiry=1572203029&reset_password=true&token=YbhvUmnflJCLiTKyEOzoBQ&uid=dean%40pourosferry.co Completed 302 Found in 49ms (ActiveRecord: 0.2ms | Allocations: 2231) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jaclyn.koch@bernhard.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jaclyn.koch@bernhard.biz"], ["encrypted_password", "$2a$04$jDQr2DQivm.FjjXSkZVGjeqriuZul8baKzmoyfwTOd9d8hTOdpPrO"], ["confirmed_at", "2019-10-13 09:03:49"], ["name", "Lou Zar"], ["email", "jaclyn.koch@bernhard.biz"], ["created_at", "2019-10-13 09:03:49"], ["updated_at", "2019-10-13 09:03:49"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "61c8ff7b588c79dac1c7d7d3acded9bc27ea2f6e7c13264906ce3f05d40e9cb8"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "61c8ff7b588c79dac1c7d7d3acded9bc27ea2f6e7c13264906ce3f05d40e9cb8"], ["reset_password_sent_at", "2019-10-13 09:03:49"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22o7vy2KYavcT3KsfD3wod%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"o7vy2KYavcT3KsfD3wod\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "61c8ff7b588c79dac1c7d7d3acded9bc27ea2f6e7c13264906ce3f05d40e9cb8"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1572)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "charlyn.greenfelder@rodriguez.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "charlyn.greenfelder@rodriguez.org"], ["encrypted_password", "$2a$04$8cVmOlhR6M/KNtEGjYQaSuIajjk/APK0yArZ0xgkoN2/U./OsxY0y"], ["confirmed_at", "2019-10-13 19:03:49.381082"], ["name", "Marlon Fisher"], ["email", "charlyn.greenfelder@rodriguez.org"], ["created_at", "2019-10-13 19:03:49.381774"], ["updated_at", "2019-10-13 19:03:49.381774"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "9f2ef0824e8dba0e1a1054f6ea50fbf9a39f2abbd773702f8abe5221e26b531f"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "9f2ef0824e8dba0e1a1054f6ea50fbf9a39f2abbd773702f8abe5221e26b531f"], ["reset_password_sent_at", "2019-10-13 19:03:49.383025"], ["updated_at", "2019-10-13 19:03:49.383124"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22PHiSHsxBLxpKHVJ-Nby1invalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"PHiSHsxBLxpKHVJ-Nby1invalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f1db895b8de144760318338bce7c3c1ea0ea7b0af67df38ec36fd9889c66ed7e"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1530)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "verona@stiedemann.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "verona@stiedemann.io"], ["encrypted_password", "$2a$04$of5psvoFN0/UEiy/YGp8Qe0LAJqPc1KH6xjIvHcyBryfgFdeM4Phq"], ["confirmation_token", "enzVbRL-ZERsFrxsLoKX"], ["confirmation_sent_at", "2019-10-13 19:03:49.391596"], ["name", "Don Thatt"], ["email", "verona@stiedemann.io"], ["created_at", "2019-10-13 19:03:49.391494"], ["updated_at", "2019-10-13 19:03:49.391494"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.4ms | Allocations: 414) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.3ms Delivered mail 5da3751560625_d1063ffbb102ffd492863@Marios-MacBook-Pro.local.mail (1.2ms) Date: Sun, 13 Oct 2019 14:03:49 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: verona@stiedemann.io Message-ID: <5da3751560625_d1063ffbb102ffd492863@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome verona@stiedemann.io!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22enzVbRL-ZERsFrxsLoKX%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fdach.name%2Fmarquitta%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"enzVbRL-ZERsFrxsLoKX\"\n redirectUrl: \"http://dach.name/marquitta\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "enzVbRL-ZERsFrxsLoKX"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:49.398810"], ["updated_at", "2019-10-13 19:03:49.398991"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://dach.name/marquitta?account_confirmation_success=true Completed 302 Found in 3ms (ActiveRecord: 0.2ms | Allocations: 2115) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alexandria@runolfsdottir.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alexandria@runolfsdottir.net"], ["encrypted_password", "$2a$04$hnCKMmtMTarwQYIiBfynMOV7EZ21ai09Tda8M/yErV3ZYJmlD2Mlm"], ["confirmation_token", "9YzLsRKHbhBsA3yYjYz-"], ["confirmation_sent_at", "2019-10-13 19:03:49.405552"], ["name", "Rich Kidd"], ["email", "alexandria@runolfsdottir.net"], ["created_at", "2019-10-13 19:03:49.405444"], ["updated_at", "2019-10-13 19:03:49.405444"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%229YzLsRKHbhBsA3yYjYz--invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Frodriguezjakubowski.io%2Fkristeen%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"9YzLsRKHbhBsA3yYjYz--invalid\"\n redirectUrl: \"http://rodriguezjakubowski.io/kristeen\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "9YzLsRKHbhBsA3yYjYz--invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "244b7b29991276c9325b680ecbb4fb97da9606da0cd5f7176e0beb0242270528"], ["LIMIT", 1]] Completed 200 OK in 90ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2326) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lyn@beattygoodwin.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lyn@beattygoodwin.info"], ["encrypted_password", "$2a$04$JBC2.o7SQWT.1E8zBypdkOoopCQMAbqK8kCHPR9scdk2x0VLLYMRO"], ["confirmed_at", "2019-10-13 19:03:49.503607"], ["name", "Doug Witherspoon"], ["email", "lyn@beattygoodwin.info"], ["created_at", "2019-10-13 19:03:49.504654"], ["updated_at", "2019-10-13 19:03:49.504654"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"oxXbVnHlh41h2HjIocF6rg\":{\"token\":\"$2a$10$1O1InBHiyVrgrrY9uSRRMuttQXtrtFwtFUIegqnVwX1OWCFMmdxUa\",\"expiry\":1572203029,\"updated_at\":\"2019-10-13 19:03:49 UTC\"}}"], ["updated_at", "2019-10-13 19:03:49.560432"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:49 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lyn@beattygoodwin.info"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 11693)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dorsey.lowe@schmeler.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dorsey.lowe@schmeler.co"], ["encrypted_password", "$2a$04$Tl98UhCZICBL.cwf9w8ioO9eG4hn2xxHw60ClLJ0Ekn6hxUZVYEku"], ["confirmed_at", "2019-10-13 19:03:49.628638"], ["name", "Xavier Money"], ["email", "dorsey.lowe@schmeler.co"], ["created_at", "2019-10-13 19:03:49.629544"], ["updated_at", "2019-10-13 19:03:49.629544"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:49 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.2ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tom@treutel.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tom@treutel.info"], ["encrypted_password", "$2a$04$i3MgY9OfGl9oH4.DuzdMYOiYCe8lfQofqCnNs9mgWlwr/Xh9CvtMC"], ["confirmed_at", "2019-10-13 19:03:52.564568"], ["name", "Barry Cade"], ["email", "tom@treutel.info"], ["created_at", "2019-10-13 19:03:52.566013"], ["updated_at", "2019-10-13 19:03:52.566013"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tom@treutel.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tom@treutel.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"_sFKbrSg0jnj2fINO_wrew\":{\"token\":\"$2a$10$aCeJbDp5iLAs85mCDQf.RepHOrbcpWQ1QUpwY5IySn5cfqr9mWP2S\",\"expiry\":1572203032,\"updated_at\":\"2019-10-13 19:03:52 UTC\"}}"], ["updated_at", "2019-10-13 19:03:52.646165"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:03:52.649054"], ["last_sign_in_at", "2019-10-13 19:03:52.649054"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:03:52.649254"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 68ms (Views: 0.1ms | ActiveRecord: 0.7ms | Allocations: 18368) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "malik.effertz@pollich.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "malik.effertz@pollich.biz"], ["encrypted_password", "$2a$04$VUlVdyks3x8PshyneGBKCO0eQogs1653ZkhDHrYrY6YR7tSHfTnH2"], ["confirmed_at", "2019-10-13 19:03:52.656791"], ["name", "Rusty Fossat"], ["email", "malik.effertz@pollich.biz"], ["created_at", "2019-10-13 19:03:52.657679"], ["updated_at", "2019-10-13 19:03:52.657679"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"malik.effertz@pollich.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "malik.effertz@pollich.biz"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2044)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "beverley@mertzheidenreich.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "beverley@mertzheidenreich.biz"], ["encrypted_password", "$2a$04$7RQz0POm6Xg1sTqClAjxSuxrbZ2n7bcKKNUNUMtHlPxRwZzQaP/RC"], ["confirmation_token", "5uF9fExAyS35oUbyxBS7"], ["confirmation_sent_at", "2019-10-13 19:03:52.667435"], ["name", "Chrystal Glass"], ["email", "beverley@mertzheidenreich.biz"], ["created_at", "2019-10-13 19:03:52.667359"], ["updated_at", "2019-10-13 19:03:52.667359"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"beverley@mertzheidenreich.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "beverley@mertzheidenreich.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1363)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "madelyn.fadel@murazik.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "madelyn.fadel@murazik.info"], ["encrypted_password", "$2a$04$RNsZSmKFDwQACBlFsevpsOomjXSeKjApAAz0LQt9.etasun/FiM9a"], ["confirmed_at", "2019-10-13 19:03:52.673876"], ["locked_at", "2019-10-13 19:03:52.673886"], ["name", "Hein Noon"], ["email", "madelyn.fadel@murazik.info"], ["created_at", "2019-10-13 19:03:52.674604"], ["updated_at", "2019-10-13 19:03:52.674604"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"madelyn.fadel@murazik.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "madelyn.fadel@murazik.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1381)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "domonique_mitchell@jacobsonbins.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "domonique_mitchell@jacobsonbins.biz"], ["encrypted_password", "$2a$04$VPREa6NvYbE9iMvZjAJWVulM62PTzm2odyDXV4NY9kXTZLERhAdd2"], ["confirmed_at", "2019-10-13 19:03:52.680832"], ["name", "Rowan Boatman"], ["email", "domonique_mitchell@jacobsonbins.biz"], ["created_at", "2019-10-13 19:03:52.681560"], ["updated_at", "2019-10-13 19:03:52.681560"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"domonique_mitchell@jacobsonbins.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "domonique_mitchell@jacobsonbins.biz"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 1359)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "harold@collins.net"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.6ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "harold@collins.net"], ["encrypted_password", "$2a$04$CBIA920YdsubHb2FoXyJQe9FuHvicFfsj3jBDL0OfdeeCZEVa3sgG"], ["confirmed_at", "2019-10-13 19:03:52.701867"], ["email", "harold@collins.net"], ["created_at", "2019-10-13 19:03:52.704505"], ["updated_at", "2019-10-13 19:03:52.704505"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"harold@collins.net\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "harold@collins.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"ArcOFKTWQDsR1nx7iIgzZA\":{\"token\":\"$2a$10$NdPis.H/k2IlU0wP88Ba.ucIKIJZ5XYKnf.9bdKgeVSFVcRbFXKq.\",\"expiry\":1572203032,\"updated_at\":\"2019-10-13 19:03:52 UTC\"}}"], ["updated_at", "2019-10-13 19:03:52.765493"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2402)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "claudio@hagenesleannon.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "claudio@hagenesleannon.com"], ["encrypted_password", "$2a$04$ftWFCOq42RsKuHy8rzQfQeuCXRJ1jo.I8Y3OMcEbAOABGouvOmPNG"], ["confirmed_at", "2019-10-13 19:03:52.770749"], ["name", "Lily Pond"], ["email", "claudio@hagenesleannon.com"], ["created_at", "2019-10-13 19:03:52.771610"], ["updated_at", "2019-10-13 19:03:52.771610"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"M-KZTtkJovQgniJGno7kbg\":{\"token\":\"$2a$10$8.gDTcziJqCXwB0scAU7C.WIVc/OiJmAlALMIc1o0.oq5quCWKMwu\",\"expiry\":1572203032,\"updated_at\":\"2019-10-13 19:03:52 UTC\"}}"], ["updated_at", "2019-10-13 19:03:52.824528"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "claudio@hagenesleannon.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:03:52.873379"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1898) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elayne_satterfield@zieme.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "elayne_satterfield@zieme.name"], ["encrypted_password", "$2a$04$EP6Y9nPxOnhgHKJ4jDwuUuE.KcxopklgzUX0NBl.CcHhc.t9HI30y"], ["confirmed_at", "2019-10-13 19:03:52.881011"], ["name", "Cammie Sole"], ["email", "elayne_satterfield@zieme.name"], ["created_at", "2019-10-13 19:03:52.881817"], ["updated_at", "2019-10-13 19:03:52.881817"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "enriqueta@wizaquigley.com"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "enriqueta@wizaquigley.com"], ["encrypted_password", "$2a$04$Uvh55FfE4kXkdgtfkLVVNOHik7LxNO.D4d7Y7XEzq3.rT1DqMN/L6"], ["confirmed_at", "2019-10-13 19:03:52.887294"], ["email", "enriqueta@wizaquigley.com"], ["created_at", "2019-10-13 19:03:52.888992"], ["updated_at", "2019-10-13 19:03:52.888992"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"iKLCdsWSllrGIiexinLkWA\":{\"token\":\"$2a$10$9Zsm.JBzLN.mjA5F8uNaMOhvnhMFpgOsC/oiBVwyvpg3x5jO8Diz.\",\"expiry\":1572203032,\"updated_at\":\"2019-10-13 19:03:52 UTC\"}}"], ["updated_at", "2019-10-13 19:03:52.944732"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "enriqueta@wizaquigley.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:03:52.991555"], ["id", 1]]  (0.3ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 1827) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kristina_bartell@yostrunolfon.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kristina_bartell@yostrunolfon.net"], ["encrypted_password", "$2a$04$jKWfYjozVvoFRNY6v4O/L.QnINSckqAAedHCLrnSxzhiqlwz5SgGa"], ["confirmed_at", "2019-10-13 19:03:53.001278"], ["name", "Emerald Stone"], ["email", "kristina_bartell@yostrunolfon.net"], ["created_at", "2019-10-13 19:03:53.003276"], ["updated_at", "2019-10-13 19:03:53.003276"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"kristina_bartell@yostrunolfon.net\",\n redirectUrl: \"http://keeblercollins.co/randolph\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "kristina_bartell@yostrunolfon.net"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "965166f05e4221e75ea5dbd436ed2b408b1e544839248d42491f826de5e30b11"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "965166f05e4221e75ea5dbd436ed2b408b1e544839248d42491f826de5e30b11"], ["reset_password_sent_at", "2019-10-13 19:03:53.090336"], ["updated_at", "2019-10-13 19:03:53.090508"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 2.1ms | Allocations: 1295) Devise::Mailer#reset_password_instructions: processed outbound mail in 121.2ms Delivered mail 5da3751934716_d11e3fe6adc3202039515@Marios-MacBook-Pro.local.mail (4.1ms) Date: Sun, 13 Oct 2019 14:03:53 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: kristina_bartell@yostrunolfon.net Message-ID: <5da3751934716_d11e3fe6adc3202039515@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: kristina_bartell@yostrunolfon.net provider: email redirect-url: http://keeblercollins.co/randolph client-config: default

Hello kristina_bartell@yostrunolfon.net!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 211ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 67776) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fkeeblercollins.co%2Frandolph&variables%5Btoken%5D=DQve22DzmvbStZ7FM5AA" for 127.0.0.1 at 2019-10-13 14:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://keeblercollins.co/randolph", "token"=>"DQve22DzmvbStZ7FM5AA"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "965166f05e4221e75ea5dbd436ed2b408b1e544839248d42491f826de5e30b11"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"FpyffTN00Poms1MtKSMPkA\":{\"token\":\"$2a$10$F9mujVZqrGt37z8RwBz.Beq.T26fqTcB.jkwzp2Eldh.Pt4m9fYYC\",\"expiry\":1572203033}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:53.263510"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://keeblercollins.co/randolph?access-token=p4NGAcn4sardAkVpdY5LYw&client=FpyffTN00Poms1MtKSMPkA&client_id=FpyffTN00Poms1MtKSMPkA&config=&expiry=1572203033&reset_password=true&token=p4NGAcn4sardAkVpdY5LYw&uid=kristina_bartell%40yostrunolfon.net Completed 302 Found in 46ms (ActiveRecord: 0.4ms | Allocations: 2147) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://cain.net/armand_simonis\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"perry@wisoky.co\"\n name: \"Ronda Romaguera\"\n password: \"V2c7BvYg\"\n passwordConfirmation: \"V2c7BvYg\"\n confirmSuccessUrl: \"http://jenkins.com/reena\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "perry@wisoky.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "perry@wisoky.co"], ["encrypted_password", "$2a$04$tTMusA478jwQgOwgCjsYCerGK2AG0UXkQoCb0QMrbKx.WiG4zN/qK"], ["confirmation_token", "iycZ3afjgzo6CEK7hwq2"], ["confirmation_sent_at", "2019-10-13 19:03:53.276747"], ["name", "Ronda Romaguera"], ["email", "perry@wisoky.co"], ["created_at", "2019-10-13 19:03:53.276667"], ["updated_at", "2019-10-13 19:03:53.276667"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.7ms | Allocations: 586) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.8ms Delivered mail 5da37519445c8_d11e3fe6adc32020396c2@Marios-MacBook-Pro.local.mail (1.0ms) Date: Sun, 13 Oct 2019 14:03:53 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: perry@wisoky.co Message-ID: <5da37519445c8_d11e3fe6adc32020396c2@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://jenkins.com/reena

Welcome perry@wisoky.co!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5461)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fjenkins.com%2Freena&variables%5Btoken%5D=iycZ3afjgzo6CEK7hwq2" for 127.0.0.1 at 2019-10-13 14:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://jenkins.com/reena", "token"=>"iycZ3afjgzo6CEK7hwq2"}} User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "iycZ3afjgzo6CEK7hwq2"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:53.292153"], ["updated_at", "2019-10-13 19:03:53.292445"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://jenkins.com/reena?account_confirmation_success=true Completed 302 Found in 10ms (ActiveRecord: 1.1ms | Allocations: 2178) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Dr. Everett Bruen\"\n password: \"YpCeM3qIoR4dH\"\n passwordConfirmation: \"YpCeM3qIoR4dH\"\n confirmSuccessUrl: \"http://heaney.org/shanel\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.2ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 0.8ms | ActiveRecord: 0.3ms | Allocations: 2710)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rana_abshire@welch.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rana_abshire@welch.biz"], ["encrypted_password", "$2a$04$e3uxJhJTFt0gUh3w3axnHONg6VwYepaeBH9Ik4w623WZ90YyASqfK"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:53.323966"], ["name", "Jim Sox"], ["email", "rana_abshire@welch.biz"], ["created_at", "2019-10-13 19:03:53.325548"], ["updated_at", "2019-10-13 19:03:53.325548"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DurwBk615Q9cQhHHvi4GXQ\":{\"token\":\"$2a$10$uWSW1C8mtHG3nJFQKriO7uggvwld3UGWvj9qBwl600h2zuAlyeXBi\",\"expiry\":1572203033,\"updated_at\":\"2019-10-13 19:03:53 UTC\"}}"], ["updated_at", "2019-10-13 19:03:53.390582"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "rana_abshire@welch.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$jNUp63261pwdShT0aijdi.Cx7J/a5sQ./SOHDrOQQeQIPdb5cEyMm"], ["updated_at", "2019-10-13 19:03:53.452182"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:53.454222"], ["id", 1]]  (0.5ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 62ms (Views: 0.1ms | ActiveRecord: 0.9ms | Allocations: 2882) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lawerence.witting@greenfelder.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lawerence.witting@greenfelder.co"], ["encrypted_password", "$2a$04$wgJZycNrcbOo5GANGOuWEOp..X3U8WNQT76ofgGXAmJ79oLmLFP8C"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:53.462082"], ["name", "Ann Chovie"], ["email", "lawerence.witting@greenfelder.co"], ["created_at", "2019-10-13 19:03:53.462862"], ["updated_at", "2019-10-13 19:03:53.462862"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"84Hg4BF-qgv3OsHw-1GiBg\":{\"token\":\"$2a$10$DFpHC.qhceGjYDQiWi3nHO5WMYecStcAe8aoVEfsyHmDSgXDzLz6C\",\"expiry\":1572203033,\"updated_at\":\"2019-10-13 19:03:53 UTC\"}}"], ["updated_at", "2019-10-13 19:03:53.515487"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lawerence.witting@greenfelder.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$52zAll/WRRPaFkkHRGNek.nlsH2zx/LgQccRpRyPb6MUkM5snQ5OK"], ["updated_at", "2019-10-13 19:03:53.565871"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:53.566942"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "camie@reynolds.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "camie@reynolds.co"], ["encrypted_password", "$2a$04$FqtVVCMHR5/NHXvnGG0A/eOsU0pHvg0.lbuR.DqDDwPyI3Qi4.o2C"], ["confirmed_at", "2019-10-13 19:03:53.575675"], ["name", "Anita Bathe"], ["email", "camie@reynolds.co"], ["created_at", "2019-10-13 19:03:53.576944"], ["updated_at", "2019-10-13 19:03:53.576944"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"cga6n6yN-AXlXIEslYRhow\":{\"token\":\"$2a$10$yFoioEzS3h9pWTYbOP04Ru0LqM1TsqqwVN/t1W/5V1DVvRKoWX1JC\",\"expiry\":1572203033,\"updated_at\":\"2019-10-13 19:03:53 UTC\"}}"], ["updated_at", "2019-10-13 19:03:53.627293"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "camie@reynolds.co"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2358) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wilbur@casperfeeney.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "wilbur@casperfeeney.org"], ["encrypted_password", "$2a$04$NJKv6JOMJTNMTmri5pgL.uY5dRyaM1f5Q7dep9uDGJwfGvD5tF4Ca"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:53.681854"], ["name", "Rufus Leaking"], ["email", "wilbur@casperfeeney.org"], ["created_at", "2019-10-13 19:03:53.682747"], ["updated_at", "2019-10-13 19:03:53.682747"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"X1dIVqCq4-W-Sx2OprPIFg\":{\"token\":\"$2a$10$FlQZaLCfjv84YitYjH9/P.gp1zqek9D4NdhLkF4QlHNKjVPoHS.PG\",\"expiry\":1572203033,\"updated_at\":\"2019-10-13 19:03:53 UTC\"}}"], ["updated_at", "2019-10-13 19:03:53.733338"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "wilbur@casperfeeney.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$6A4WNEiNLyUTmeb0dwMLX.JzFHEFDYoLyMzRffc.uGO2ht.OGy8fq"], ["updated_at", "2019-10-13 19:03:53.782736"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:53.783793"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "yoko@wuckert.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "yoko@wuckert.io"], ["encrypted_password", "$2a$04$Gm7J3r7Q79qdHnDRfpECU.0h/pR.P2acIcIudEzcH4aifFtDcyydG"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:53.789057"], ["name", "Chrystal Glass"], ["email", "yoko@wuckert.io"], ["created_at", "2019-10-13 19:03:53.789927"], ["updated_at", "2019-10-13 19:03:53.789927"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"uIhZv8GU4rbOEVkiOnIyJg\":{\"token\":\"$2a$10$rLkgZ1V6kn15Krp.qOmo0u8CXPSUpc9NqtgeUy8d1JpAbkbDBYHUq\",\"expiry\":1572203033,\"updated_at\":\"2019-10-13 19:03:53 UTC\"}}"], ["updated_at", "2019-10-13 19:03:53.837343"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "yoko@wuckert.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$IWlD8U09HdUaSFGXJ44OKeSssvxPh1plXINl279Uc03IiUk1lEzhG"], ["updated_at", "2019-10-13 19:03:53.886908"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:53.888077"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2874) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dulce@gerlachhane.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dulce@gerlachhane.io"], ["encrypted_password", "$2a$04$sHMkD.TvZM4N2VA3PRVhUeZWbKDXUTBIqIOixzzgIc68LcfAb.q4O"], ["confirmed_at", "2019-10-13 19:03:53.896196"], ["name", "Brock Lee"], ["email", "dulce@gerlachhane.io"], ["created_at", "2019-10-13 19:03:53.897557"], ["updated_at", "2019-10-13 19:03:53.897557"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"joaLLhcB3YmEjGDWZ_M8Lg\":{\"token\":\"$2a$10$DpsdFbhJz0HMA2/On25YkuPcT0pX8t33hsLmAYWccEP9KBCfD9zM.\",\"expiry\":1572203033,\"updated_at\":\"2019-10-13 19:03:53 UTC\"}}"], ["updated_at", "2019-10-13 19:03:53.948872"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dulce@gerlachhane.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Mo3yshLA4JWD3ISmdw4FSO3fUFTxTb1O4vUmnMbGpjYC5dzQTitfu"], ["updated_at", "2019-10-13 19:03:53.997569"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2640) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sean@sauer.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sean@sauer.name"], ["encrypted_password", "$2a$04$dUR/6Pz6O81lT7KXjbrs1uc1Z0uqE0reApP/GB0UggXRqDxxMPZnS"], ["confirmed_at", "2019-10-13 19:03:54.006541"], ["name", "Otto Carr"], ["email", "sean@sauer.name"], ["created_at", "2019-10-13 19:03:54.007598"], ["updated_at", "2019-10-13 19:03:54.007598"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lai_grant@wolf.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lai_grant@wolf.info"], ["encrypted_password", "$2a$04$TmOsTss34mzdGOjLI9.GXeu3bW.jfb/4WDsfBqJPSCbP90Wub3lcm"], ["confirmed_at", "2019-10-13 19:03:54.016037"], ["name", "Ryan Carnation"], ["email", "lai_grant@wolf.info"], ["created_at", "2019-10-13 19:03:54.017233"], ["updated_at", "2019-10-13 19:03:54.017233"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ce57a92dde77f004b2461bf84b93c11eda7ec2c8a4a2a9342e180b1391d20ba7"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "ce57a92dde77f004b2461bf84b93c11eda7ec2c8a4a2a9342e180b1391d20ba7"], ["reset_password_sent_at", "2019-10-13 19:03:54.019011"], ["updated_at", "2019-10-13 19:03:54.019360"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22w7-Rf8xpz-ub4B68tXbY%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"w7-Rf8xpz-ub4B68tXbY\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ce57a92dde77f004b2461bf84b93c11eda7ec2c8a4a2a9342e180b1391d20ba7"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fNdljCeI6ADxLL81n-a31w\":{\"token\":\"$2a$10$V1DqUkFF7.BJbUsFO4UvhexcZLrSAwdwQSiJlqxkDGQO8bXMrzSTa\",\"expiry\":1572203034}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:54.078177"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fNdljCeI6ADxLL81n-a31w\":{\"token\":\"$2a$10$V1DqUkFF7.BJbUsFO4UvhexcZLrSAwdwQSiJlqxkDGQO8bXMrzSTa\",\"expiry\":1572203034},\"aKmxQWVTkdK12prG4ePhGw\":{\"token\":\"$2a$10$Ft8iqO2GeJRIiDbewljZ3uspaA9eKIEAjglyzs3h1GIo3BktCTtP2\",\"expiry\":1572203034,\"updated_at\":\"2019-10-13 19:03:54 UTC\"}}"], ["updated_at", "2019-10-13 19:03:54.127132"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 107ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2654)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lon.doyle@luettgen.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lon.doyle@luettgen.info"], ["encrypted_password", "$2a$04$Hl8sele25GNhmtPYaSX2wu9S/d.0e1qZcWASt/E3Dwd69BxKov2fa"], ["confirmed_at", "2019-10-13 19:03:54.133551"], ["name", "Armand Hammer"], ["email", "lon.doyle@luettgen.info"], ["created_at", "2019-10-13 19:03:54.134345"], ["updated_at", "2019-10-13 19:03:54.134345"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ea49a884ffbfd897311d45242c4c125761ca376b78f0e24b8ad8432c2e396211"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "ea49a884ffbfd897311d45242c4c125761ca376b78f0e24b8ad8432c2e396211"], ["reset_password_sent_at", "2019-10-13 19:03:54.160179"], ["updated_at", "2019-10-13 19:03:54.160343"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22_QWRitxJ3PG-xAnKiJsT%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"_QWRitxJ3PG-xAnKiJsT\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ea49a884ffbfd897311d45242c4c125761ca376b78f0e24b8ad8432c2e396211"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bI9xkXEMamLSdF8DBJF-1A\":{\"token\":\"$2a$10$I5Fv/hiWOnShRIoYKvrsueVLlMHxMlpW2Gu2cg5P9XmV/6sg6moD6\",\"expiry\":1572203034}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:54.219925"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=Ss_yr-yVN4pIvbW5oomNjA&client=bI9xkXEMamLSdF8DBJF-1A&client_id=bI9xkXEMamLSdF8DBJF-1A&config=&expiry=1572203034&reset_password=true&token=Ss_yr-yVN4pIvbW5oomNjA&uid=lon.doyle%40luettgen.info Completed 302 Found in 59ms (ActiveRecord: 0.2ms | Allocations: 1918) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sol@bashirian.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sol@bashirian.org"], ["encrypted_password", "$2a$04$HOLztKVJxyp9glbuap9h0e8IewthnvfpXaBisXo8Rv3snzPJogWKq"], ["confirmed_at", "2019-10-13 09:03:54"], ["name", "Lon Moore"], ["email", "sol@bashirian.org"], ["created_at", "2019-10-13 09:03:54"], ["updated_at", "2019-10-13 09:03:54"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b0f0f59025cdf9b3caea718380cbba333ee861344371c9997bbedca2b2546333"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b0f0f59025cdf9b3caea718380cbba333ee861344371c9997bbedca2b2546333"], ["reset_password_sent_at", "2019-10-13 09:03:54"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22gy8_CQC_zrQzhUc7_kiE%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"gy8_CQC_zrQzhUc7_kiE\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b0f0f59025cdf9b3caea718380cbba333ee861344371c9997bbedca2b2546333"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1266)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "berry@parker.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "berry@parker.name"], ["encrypted_password", "$2a$04$vYog61b0hBhxgCHgpnwAZOZ869BRoWjexX9Y7thlCjpAHhX7c58l."], ["confirmed_at", "2019-10-13 19:03:54.233603"], ["name", "Joaquin DeFlores"], ["email", "berry@parker.name"], ["created_at", "2019-10-13 19:03:54.234322"], ["updated_at", "2019-10-13 19:03:54.234322"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cadb34675709b6e9b81437d7e9b4ce341d2da276f8468dc5fde3b94cae8840fe"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "cadb34675709b6e9b81437d7e9b4ce341d2da276f8468dc5fde3b94cae8840fe"], ["reset_password_sent_at", "2019-10-13 19:03:54.235625"], ["updated_at", "2019-10-13 19:03:54.235730"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22fpyNDuvQjkx2ARK3czSsinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"fpyNDuvQjkx2ARK3czSsinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "299df298716a5a058c31890f5349d70758891a714cdf5e4bf9b8de7ccfbb1dfa"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dede@wiegand.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dede@wiegand.biz"], ["encrypted_password", "$2a$04$2FjY8XNkMkIt6hvdmoJTSuSwJVFRyWtaMFxVdUUGwWuWgTv1cGpVS"], ["confirmation_token", "kLXhXw_b1xuUPNf3tD8w"], ["confirmation_sent_at", "2019-10-13 19:03:54.244132"], ["name", "Oliver Sutton"], ["email", "dede@wiegand.biz"], ["created_at", "2019-10-13 19:03:54.244029"], ["updated_at", "2019-10-13 19:03:54.244029"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.4ms | Allocations: 414) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.3ms Delivered mail 5da3751a3c5a4_d11e3fe6adc32020397c7@Marios-MacBook-Pro.local.mail (1.2ms) Date: Sun, 13 Oct 2019 14:03:54 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: dede@wiegand.biz Message-ID: <5da3751a3c5a4_d11e3fe6adc32020397c7@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome dede@wiegand.biz!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22kLXhXw_b1xuUPNf3tD8w%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fchamplin.com%2Fkeith_ferry%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"kLXhXw_b1xuUPNf3tD8w\"\n redirectUrl: \"http://champlin.com/keith_ferry\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "kLXhXw_b1xuUPNf3tD8w"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:54.251054"], ["updated_at", "2019-10-13 19:03:54.251237"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://champlin.com/keith_ferry?account_confirmation_success=true Completed 302 Found in 3ms (ActiveRecord: 0.3ms | Allocations: 1790) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eleanor_goyette@trantow.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "eleanor_goyette@trantow.io"], ["encrypted_password", "$2a$04$UKLr1cXp0bXuRM2JUaEvbOTF5hfwuSZLluCppSWSJKxRaSRvsxwCa"], ["confirmation_token", "W9n64xq-Tbdeeg1vQ7rh"], ["confirmation_sent_at", "2019-10-13 19:03:54.258049"], ["name", "Ben Lyon"], ["email", "eleanor_goyette@trantow.io"], ["created_at", "2019-10-13 19:03:54.257929"], ["updated_at", "2019-10-13 19:03:54.257929"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22W9n64xq-Tbdeeg1vQ7rh-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Frobertsweinat.biz%2Falexandra%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"W9n64xq-Tbdeeg1vQ7rh-invalid\"\n redirectUrl: \"http://robertsweinat.biz/alexandra\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "W9n64xq-Tbdeeg1vQ7rh-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "f659041ad90e51d09c3d852fc9122e066c30fbe7b7ec3febc3c6a4666e14afa2"], ["LIMIT", 1]] Completed 200 OK in 89ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2009) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "liette_mann@dubuque.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "liette_mann@dubuque.co"], ["encrypted_password", "$2a$04$y6H8FvinQv6zPcBf1A3QIOTf0sfu5pMzcEGBeqRi44d6yYqrErFFe"], ["confirmed_at", "2019-10-13 19:03:54.353925"], ["name", "Shanda Lear"], ["email", "liette_mann@dubuque.co"], ["created_at", "2019-10-13 19:03:54.354780"], ["updated_at", "2019-10-13 19:03:54.354780"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ug7h2xKx3viBAzBqDBjkow\":{\"token\":\"$2a$10$YzzCULkf79yUpNXduyGLQe3x7KzxCufpDkc/dXNm.gekp0SSNsbu2\",\"expiry\":1572203034,\"updated_at\":\"2019-10-13 19:03:54 UTC\"}}"], ["updated_at", "2019-10-13 19:03:54.403547"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:54 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "liette_mann@dubuque.co"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 9654)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sam@schulist.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sam@schulist.io"], ["encrypted_password", "$2a$04$IlMd/FCs3gkXD24nw3uJVug32JEn4w0nhRKWF87YBlUhAfxlaYrX2"], ["confirmed_at", "2019-10-13 19:03:54.460831"], ["name", "Ellie Noise"], ["email", "sam@schulist.io"], ["created_at", "2019-10-13 19:03:54.461589"], ["updated_at", "2019-10-13 19:03:54.461589"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:54 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.2ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rosita@adams.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rosita@adams.io"], ["encrypted_password", "$2a$04$Nfz1ywIi./1jnDynJ2JTtOEjiAUI8Wn4Rd1DxgFIY8FRMDEj.bMiW"], ["confirmed_at", "2019-10-13 19:03:57.326954"], ["name", "Ima Klotz"], ["email", "rosita@adams.io"], ["created_at", "2019-10-13 19:03:57.328211"], ["updated_at", "2019-10-13 19:03:57.328211"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rosita@adams.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rosita@adams.io"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"q-3ag6UFFKGK_0598GYffA\":{\"token\":\"$2a$10$Oxub6nVvyE4QFHBCvSibN.dzdObhOvavMqwtC2DWQ9Eufx4XN/7U6\",\"expiry\":1572203037,\"updated_at\":\"2019-10-13 19:03:57 UTC\"}}"], ["updated_at", "2019-10-13 19:03:57.398717"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:03:57.401670"], ["last_sign_in_at", "2019-10-13 19:03:57.401670"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:03:57.401884"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 62ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 18411) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lucien@rau.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lucien@rau.biz"], ["encrypted_password", "$2a$04$AjGkadQ5pC8s62yphl8Ga.4X3QtE3bwbfWyrse4nDhCdhc6ZpllwC"], ["confirmed_at", "2019-10-13 19:03:57.409716"], ["name", "Gene Poole"], ["email", "lucien@rau.biz"], ["created_at", "2019-10-13 19:03:57.410505"], ["updated_at", "2019-10-13 19:03:57.410505"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lucien@rau.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lucien@rau.biz"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2061) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "neville.weber@robelhintz.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "neville.weber@robelhintz.org"], ["encrypted_password", "$2a$04$dEthlgwLejr7c7rah3oEEOPCDxna0IH9teij0ieDcv6Iwpm.Ii21q"], ["confirmation_token", "zx2FzXmyMQUX3ZoU1m3z"], ["confirmation_sent_at", "2019-10-13 19:03:57.420132"], ["name", "Dee Zaster"], ["email", "neville.weber@robelhintz.org"], ["created_at", "2019-10-13 19:03:57.420057"], ["updated_at", "2019-10-13 19:03:57.420057"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"neville.weber@robelhintz.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "neville.weber@robelhintz.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1351) TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "waylon.ondricka@anderson.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "waylon.ondricka@anderson.org"], ["encrypted_password", "$2a$04$ahENUHkiG99p5NYGaqAfneo8hIVpl5CByKZqMEUHP1ROI1Nz99zoO"], ["confirmed_at", "2019-10-13 19:03:57.426530"], ["locked_at", "2019-10-13 19:03:57.426539"], ["name", "Tate Urtots"], ["email", "waylon.ondricka@anderson.org"], ["created_at", "2019-10-13 19:03:57.427392"], ["updated_at", "2019-10-13 19:03:57.427392"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"waylon.ondricka@anderson.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "waylon.ondricka@anderson.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1369) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "charles_schowalter@labadie.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "charles_schowalter@labadie.name"], ["encrypted_password", "$2a$04$npvD9qX6WMvi0wr7IHA5Q.Q6uTWuI2mUNp7RiEgKj7BvI6Gwm4i9i"], ["confirmed_at", "2019-10-13 19:03:57.436008"], ["name", "Leo Tarred"], ["email", "charles_schowalter@labadie.name"], ["created_at", "2019-10-13 19:03:57.436978"], ["updated_at", "2019-10-13 19:03:57.436978"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"charles_schowalter@labadie.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "charles_schowalter@labadie.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1347) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "laurence_koepp@hermannconnelly.co"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "laurence_koepp@hermannconnelly.co"], ["encrypted_password", "$2a$04$4RNmbdlkGHjuZq65bq3gauJ6p6hPTEjR94zlKGTBNNKU5HTkPYXSa"], ["confirmed_at", "2019-10-13 19:03:57.457516"], ["email", "laurence_koepp@hermannconnelly.co"], ["created_at", "2019-10-13 19:03:57.458776"], ["updated_at", "2019-10-13 19:03:57.458776"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"laurence_koepp@hermannconnelly.co\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "laurence_koepp@hermannconnelly.co"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"c0bVTt6w74spGmULeRS4XQ\":{\"token\":\"$2a$10$f4RMJYdI.Lfq7A/s3W1IauGw6UR/leJn5Es/B269.NvMaJ4olvP9.\",\"expiry\":1572203037,\"updated_at\":\"2019-10-13 19:03:57 UTC\"}}"], ["updated_at", "2019-10-13 19:03:57.517704"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2376) TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "demetra@heathcote.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "demetra@heathcote.biz"], ["encrypted_password", "$2a$04$JpG8nY8/QC3ipuEjm1E4eOEKCbjr45AHGaYEmslaVWKair7TeGwwq"], ["confirmed_at", "2019-10-13 19:03:57.522615"], ["name", "Rusty Dorr"], ["email", "demetra@heathcote.biz"], ["created_at", "2019-10-13 19:03:57.523455"], ["updated_at", "2019-10-13 19:03:57.523455"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"VAgT9m71etjKwjKG6nOu6A\":{\"token\":\"$2a$10$tRHB50KvtGsDhAP6ebuO8e4Rp3VzYy7Y6IylHjMRF2eAKlQHNkYjS\",\"expiry\":1572203037,\"updated_at\":\"2019-10-13 19:03:57 UTC\"}}"], ["updated_at", "2019-10-13 19:03:57.570759"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "demetra@heathcote.biz"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:03:57.618447"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1885) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.8ms) rollback transaction TRANSACTION (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 943) TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stephenie@okeefekohler.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "stephenie@okeefekohler.name"], ["encrypted_password", "$2a$04$An6dVj2fyCKlQ0GMJfoANuhRDRWw2MujRTxkwAL1xRyIlHGWAcWUe"], ["confirmed_at", "2019-10-13 19:03:57.626943"], ["name", "Terry Bull"], ["email", "stephenie@okeefekohler.name"], ["created_at", "2019-10-13 19:03:57.628344"], ["updated_at", "2019-10-13 19:03:57.628344"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "drusilla_renner@kunze.co"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "drusilla_renner@kunze.co"], ["encrypted_password", "$2a$04$/ObabpcXY7Iu2W3hkOB1LebKXRGXcFi.WcxF6pgxNzryfbWHsypdO"], ["confirmed_at", "2019-10-13 19:03:57.634101"], ["email", "drusilla_renner@kunze.co"], ["created_at", "2019-10-13 19:03:57.635140"], ["updated_at", "2019-10-13 19:03:57.635140"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"TlsCDUQjWOXnEBsnVzDTjQ\":{\"token\":\"$2a$10$MMUIGeqckn2hXWJwcZ4lA.cgpg6rUJpI0Ef19iK8xxSZR4Y6NpuLO\",\"expiry\":1572203037,\"updated_at\":\"2019-10-13 19:03:57 UTC\"}}"], ["updated_at", "2019-10-13 19:03:57.686997"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.3ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "drusilla_renner@kunze.co"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:03:57.734226"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 1816) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "milan@reilly.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "milan@reilly.org"], ["encrypted_password", "$2a$04$F2aVsKCAmj5hAqENhyavU.pvGy8OmCfBMrnLawM6bqkDrw0FXUPW2"], ["confirmed_at", "2019-10-13 19:03:57.742014"], ["name", "Brice Tagg"], ["email", "milan@reilly.org"], ["created_at", "2019-10-13 19:03:57.742884"], ["updated_at", "2019-10-13 19:03:57.742884"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"milan@reilly.org\",\n redirectUrl: \"http://creminmante.io/arthur\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "milan@reilly.org"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d8751268d3e8641e18eff329b20a1060a65d94b9a030802ce02049f5906d3de7"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "d8751268d3e8641e18eff329b20a1060a65d94b9a030802ce02049f5906d3de7"], ["reset_password_sent_at", "2019-10-13 19:03:57.827957"], ["updated_at", "2019-10-13 19:03:57.828118"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.6ms | Allocations: 1280) Devise::Mailer#reset_password_instructions: processed outbound mail in 114.5ms Delivered mail 5da3751de6e4e_d1373fc297c2ffd079395@Marios-MacBook-Pro.local.mail (4.0ms) Date: Sun, 13 Oct 2019 14:03:57 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: milan@reilly.org Message-ID: <5da3751de6e4e_d1373fc297c2ffd079395@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: milan@reilly.org provider: email redirect-url: http://creminmante.io/arthur client-config: default

Hello milan@reilly.org!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 202ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 67635) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fcreminmante.io%2Farthur&variables%5Btoken%5D=kEm92kTbCnTg6LBHcyKs" for 127.0.0.1 at 2019-10-13 14:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://creminmante.io/arthur", "token"=>"kEm92kTbCnTg6LBHcyKs"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d8751268d3e8641e18eff329b20a1060a65d94b9a030802ce02049f5906d3de7"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EnXM6_Ioa4BeHig40Y7qjw\":{\"token\":\"$2a$10$Qs2h48Rhbjyb9hovRptjJO0F1bVlRFc0p7.DzvVzyEeVkklG7mhri\",\"expiry\":1572203037}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:57.993291"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://creminmante.io/arthur?access-token=N2az8ce4wjwPugzj7qZr_w&client=EnXM6_Ioa4BeHig40Y7qjw&client_id=EnXM6_Ioa4BeHig40Y7qjw&config=&expiry=1572203037&reset_password=true&token=N2az8ce4wjwPugzj7qZr_w&uid=milan%40reilly.org Completed 302 Found in 44ms (ActiveRecord: 0.2ms | Allocations: 2126) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.8ms) rollback transaction TRANSACTION (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://hermiston.co/fredrick\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1192) TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"karie@stiedemannjohnson.io\"\n name: \"Ms. Marhta Hintz\"\n password: \"EqIlAsTiGeShR\"\n passwordConfirmation: \"EqIlAsTiGeShR\"\n confirmSuccessUrl: \"http://cronagreenholt.co/pricilla\"\n ) {\n user {\n email\n name\n }\n }\n }\n"} TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "karie@stiedemannjohnson.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "karie@stiedemannjohnson.io"], ["encrypted_password", "$2a$04$tgwpZpVPoKM4j.rFNKNCL.lT9RFSwLv5.0Cn5VlDa8cwzM2nYQFeC"], ["confirmation_token", "ft7Se68RkARixAJWMUDr"], ["confirmation_sent_at", "2019-10-13 19:03:58.005698"], ["name", "Ms. Marhta Hintz"], ["email", "karie@stiedemannjohnson.io"], ["created_at", "2019-10-13 19:03:58.005629"], ["updated_at", "2019-10-13 19:03:58.005629"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.6ms | Allocations: 578) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.8ms Delivered mail 5da3751e2337_d1373fc297c2ffd079444@Marios-MacBook-Pro.local.mail (1.1ms) Date: Sun, 13 Oct 2019 14:03:58 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: karie@stiedemannjohnson.io Message-ID: <5da3751e2337_d1373fc297c2ffd079444@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://cronagreenholt.co/pricilla

Welcome karie@stiedemannjohnson.io!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5422)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fcronagreenholt.co%2Fpricilla&variables%5Btoken%5D=ft7Se68RkARixAJWMUDr" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://cronagreenholt.co/pricilla", "token"=>"ft7Se68RkARixAJWMUDr"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "ft7Se68RkARixAJWMUDr"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:58.014884"], ["updated_at", "2019-10-13 19:03:58.015065"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://cronagreenholt.co/pricilla?account_confirmation_success=true Completed 302 Found in 6ms (ActiveRecord: 0.5ms | Allocations: 2176) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Tifany Witting\"\n password: \"As7Hz2Ck2P6\"\n passwordConfirmation: \"As7Hz2Ck2P6\"\n confirmSuccessUrl: \"http://parker.org/lakendra_crooks\"\n ) {\n user {\n email\n name\n }\n }\n }\n"} TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]] TRANSACTION (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2707)  (0.1ms) SELECT COUNT(*) FROM "users" TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tyrell.jakubowski@schumm.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tyrell.jakubowski@schumm.io"], ["encrypted_password", "$2a$04$K7C0nb7euSiGq1sy5j.6m.4IHYc5IZWBtgPc9lIuPhvj8Ryryn.lq"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:58.032928"], ["name", "Cy Burns"], ["email", "tyrell.jakubowski@schumm.io"], ["created_at", "2019-10-13 19:03:58.034499"], ["updated_at", "2019-10-13 19:03:58.034499"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"AuoP1GqBZBHLqViZThJJeQ\":{\"token\":\"$2a$10$Up9K0H8q3ByyooFRzuew6epuAyiqPIGCz2UUMJgPjAxHv2UD2z2cO\",\"expiry\":1572203038,\"updated_at\":\"2019-10-13 19:03:58 UTC\"}}"], ["updated_at", "2019-10-13 19:03:58.092548"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tyrell.jakubowski@schumm.io"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$eY0lir1XC4fF9p5TYNQb.OX8MgHCwUJ8HSgpQZuY4wVE7pvgRd5VC"], ["updated_at", "2019-10-13 19:03:58.140106"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:58.140952"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2869) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tad.pollich@lowe.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tad.pollich@lowe.biz"], ["encrypted_password", "$2a$04$xKAGCnUhkXQLujTE8mbQJ.Kwso2OFmXnKS7IYmvaTi4L7Jy.Qb4ta"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:58.145240"], ["name", "Lowden Clear"], ["email", "tad.pollich@lowe.biz"], ["created_at", "2019-10-13 19:03:58.145802"], ["updated_at", "2019-10-13 19:03:58.145802"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"crE0HicSnn_1h0savUmyQA\":{\"token\":\"$2a$10$zoi6oqLs4L3BoziWE6EXAuZmozvg8Hq4vk7onNoYZtnlweBMrQ.La\",\"expiry\":1572203038,\"updated_at\":\"2019-10-13 19:03:58 UTC\"}}"], ["updated_at", "2019-10-13 19:03:58.194862"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tad.pollich@lowe.biz"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$zHbmRD2hINM4laha1hP78uImUzQJrJQsGlCVHuQxgvu9uTuCcbp/6"], ["updated_at", "2019-10-13 19:03:58.241770"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:58.242618"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2858) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "duncan.langosh@mertz.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "duncan.langosh@mertz.co"], ["encrypted_password", "$2a$04$4SUtQuGDSpusWMvCm1cfZe4UaYCFPibXmLGs8AK6tigwKyPi/Y2V2"], ["confirmed_at", "2019-10-13 19:03:58.248445"], ["name", "Joy Kil"], ["email", "duncan.langosh@mertz.co"], ["created_at", "2019-10-13 19:03:58.250251"], ["updated_at", "2019-10-13 19:03:58.250251"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"D8q-PrjoeBXNUmSwW9AN1g\":{\"token\":\"$2a$10$S4CtvDEDFMAeMg0FCQDoOe1RQLju6Wq8Q.8ENjc1givaw6F0rypAi\",\"expiry\":1572203038,\"updated_at\":\"2019-10-13 19:03:58 UTC\"}}"], ["updated_at", "2019-10-13 19:03:58.300100"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "duncan.langosh@mertz.co"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2329) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gabriele_turcotte@schmittondricka.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gabriele_turcotte@schmittondricka.com"], ["encrypted_password", "$2a$04$TFkXwJZmPPp062PRO6oqXO/vogAjyhkEc51MD60uOHtZylpoB5vbG"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:58.353399"], ["name", "Penny Nichols"], ["email", "gabriele_turcotte@schmittondricka.com"], ["created_at", "2019-10-13 19:03:58.354187"], ["updated_at", "2019-10-13 19:03:58.354187"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9WsQaE9IG6DoaEO2f5jdfg\":{\"token\":\"$2a$10$G/JILahfHA33yG11.Tdfh.x85XNHwqJnF3kz3UAqnSM3qTKJkXfle\",\"expiry\":1572203038,\"updated_at\":\"2019-10-13 19:03:58 UTC\"}}"], ["updated_at", "2019-10-13 19:03:58.403811"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gabriele_turcotte@schmittondricka.com"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$ZKqID8A6BZ3G3RVThvw5heJ7RebvWJBaGtifjaMUbGagV8HuB5GeW"], ["updated_at", "2019-10-13 19:03:58.450951"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:58.451825"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2861) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "camie@mann.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "camie@mann.name"], ["encrypted_password", "$2a$04$onl2QODnegtCP7acnItbc.LbIwZkFc5omQzzcekDvBsnmN6vJY9Ue"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:03:58.457197"], ["name", "Moe Skeeto"], ["email", "camie@mann.name"], ["created_at", "2019-10-13 19:03:58.458399"], ["updated_at", "2019-10-13 19:03:58.458399"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"d_mQ4Rb0kBS8lV1LGJU1xg\":{\"token\":\"$2a$10$pOv5ZKX49zuPY1AFpxLSG.B/vbjWxpMQ.MHnLirYgXYZ5l1d8jFDW\",\"expiry\":1572203038,\"updated_at\":\"2019-10-13 19:03:58 UTC\"}}"], ["updated_at", "2019-10-13 19:03:58.506533"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "camie@mann.name"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$7eFAi06GKAfS2vk8P4XkW.rMjlKdM1sXCXspZyAU8.tTbhCWeBOgW"], ["updated_at", "2019-10-13 19:03:58.554023"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:03:58.554990"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2858) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sunday@harvey.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sunday@harvey.co"], ["encrypted_password", "$2a$04$ith9E57xscyft0ioBukFIelaAfRPcgoed.5IXLWXRDnx.lJOPTErW"], ["confirmed_at", "2019-10-13 19:03:58.561458"], ["name", "Duane DeVane"], ["email", "sunday@harvey.co"], ["created_at", "2019-10-13 19:03:58.562509"], ["updated_at", "2019-10-13 19:03:58.562509"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BEU21ByxiZJj8qYN7rJ5yw\":{\"token\":\"$2a$10$40XEf33JQKBmBEiMBuCf8u.FOpZBtslUEIaKgREpglIHeVDmbksKi\",\"expiry\":1572203038,\"updated_at\":\"2019-10-13 19:03:58 UTC\"}}"], ["updated_at", "2019-10-13 19:03:58.610875"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sunday@harvey.co"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$nftl/EYTdZYD5DkgjnFH5ulEzSPgun.v/AXXv2Ze1Nxfj2aZfjHwe"], ["updated_at", "2019-10-13 19:03:58.658633"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2628) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "denny@hellerwindler.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.8ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "denny@hellerwindler.org"], ["encrypted_password", "$2a$04$rk/h4Yb6AjBgdAJ0u0N5GeiJYFX4I5CwUMK8t3V38Yk3l2/zW/whW"], ["confirmed_at", "2019-10-13 19:03:58.664846"], ["name", "Ivan Oder"], ["email", "denny@hellerwindler.org"], ["created_at", "2019-10-13 19:03:58.666618"], ["updated_at", "2019-10-13 19:03:58.666618"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1150) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arden.von@conn.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "arden.von@conn.net"], ["encrypted_password", "$2a$04$L3NE3zgM56yzTXLzAhtA3.gSmRHpy70fl9gwLhFVfl9iP3HRcWJBG"], ["confirmed_at", "2019-10-13 19:03:58.676567"], ["name", "Nick O'Time"], ["email", "arden.von@conn.net"], ["created_at", "2019-10-13 19:03:58.677814"], ["updated_at", "2019-10-13 19:03:58.677814"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "799ac50b2cfdc85bdf6b48c32af70a31db26cb6af15a7cd81ff015cff83e2925"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "799ac50b2cfdc85bdf6b48c32af70a31db26cb6af15a7cd81ff015cff83e2925"], ["reset_password_sent_at", "2019-10-13 19:03:58.679760"], ["updated_at", "2019-10-13 19:03:58.679929"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22tt33Cs7CXN8t3un7ty-R%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"tt33Cs7CXN8t3un7ty-R\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "799ac50b2cfdc85bdf6b48c32af70a31db26cb6af15a7cd81ff015cff83e2925"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LN4FGlJMXXPSxLvtgscwWQ\":{\"token\":\"$2a$10$95piyecHB3rZAd7Dh4AMS.5GWSZhDMP5EliYE8F1XTrWLvP3lOlvi\",\"expiry\":1572203038}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:58.737167"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LN4FGlJMXXPSxLvtgscwWQ\":{\"token\":\"$2a$10$95piyecHB3rZAd7Dh4AMS.5GWSZhDMP5EliYE8F1XTrWLvP3lOlvi\",\"expiry\":1572203038},\"o0zXZfXR1DiZq6OHABolZA\":{\"token\":\"$2a$10$9Rb2ICpRj1COkgGCDYKEy.5rgXHPUy2DgmoGPSCDOxPDBp/wbCTeS\",\"expiry\":1572203038,\"updated_at\":\"2019-10-13 19:03:58 UTC\"}}"], ["updated_at", "2019-10-13 19:03:58.783973"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 103ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2648) TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "pasquale@turcotte.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "pasquale@turcotte.org"], ["encrypted_password", "$2a$04$pAxJxxXGSEq6Hw0Bf5QS4.KURLJnEak/Wpd12zAQuvDuY2ovnyU2u"], ["confirmed_at", "2019-10-13 19:03:58.789354"], ["name", "Annie Buddyhome"], ["email", "pasquale@turcotte.org"], ["created_at", "2019-10-13 19:03:58.790231"], ["updated_at", "2019-10-13 19:03:58.790231"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e74e9f0f8e3770ff8daa1d772e29ae3807d45f1ba078a4bfae653f20ac5ff2f0"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "e74e9f0f8e3770ff8daa1d772e29ae3807d45f1ba078a4bfae653f20ac5ff2f0"], ["reset_password_sent_at", "2019-10-13 19:03:58.791676"], ["updated_at", "2019-10-13 19:03:58.791775"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22PfwnDh6sTxeZXC4ieAyx%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"PfwnDh6sTxeZXC4ieAyx\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e74e9f0f8e3770ff8daa1d772e29ae3807d45f1ba078a4bfae653f20ac5ff2f0"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0KMnkQxakJjX5TuHvuEh1A\":{\"token\":\"$2a$10$giLbNAkj9uJ4/sawq4.wCOaJkpSdkrTjvnOBsoEQ2xfPPNy1Kp5Eu\",\"expiry\":1572203038}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:03:58.842712"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=uhPd1Wx0TBptYoVESgheaw&client=0KMnkQxakJjX5TuHvuEh1A&client_id=0KMnkQxakJjX5TuHvuEh1A&config=&expiry=1572203038&reset_password=true&token=uhPd1Wx0TBptYoVESgheaw&uid=pasquale%40turcotte.org Completed 302 Found in 50ms (ActiveRecord: 0.2ms | Allocations: 1904) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "candra@braun.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "candra@braun.name"], ["encrypted_password", "$2a$04$OqdnSrSHdWymiPOHU74HGOmpOtBPDPaqVtMeZDqRUQKyrj59efRQC"], ["confirmed_at", "2019-10-13 09:03:58"], ["name", "Ken Dahl"], ["email", "candra@braun.name"], ["created_at", "2019-10-13 09:03:58"], ["updated_at", "2019-10-13 09:03:58"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5cf76eaba01fb1d0c4f5e654867fd6a6e3842f8aa8900a066fa16b80c8ed8812"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "5cf76eaba01fb1d0c4f5e654867fd6a6e3842f8aa8900a066fa16b80c8ed8812"], ["reset_password_sent_at", "2019-10-13 09:03:58"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22YRHd_RHtrJKAyrJSw11X%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"YRHd_RHtrJKAyrJSw11X\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5cf76eaba01fb1d0c4f5e654867fd6a6e3842f8aa8900a066fa16b80c8ed8812"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1259) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "christine@quitzon.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "christine@quitzon.biz"], ["encrypted_password", "$2a$04$vtQnq2lbnrw/7K4y.NATt.I2ESH7m2tm0yiJGLSbITZqiL/Fgfrxq"], ["confirmed_at", "2019-10-13 19:03:58.861135"], ["name", "Sarah Doctorinthehouse"], ["email", "christine@quitzon.biz"], ["created_at", "2019-10-13 19:03:58.862135"], ["updated_at", "2019-10-13 19:03:58.862135"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3f49e9bce265dc87e573bc89b092e34fca87f4a9e0c104865699476ea6f37912"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "3f49e9bce265dc87e573bc89b092e34fca87f4a9e0c104865699476ea6f37912"], ["reset_password_sent_at", "2019-10-13 19:03:58.863674"], ["updated_at", "2019-10-13 19:03:58.863791"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22CmDpQ7rxSzKzw5isNgypinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"CmDpQ7rxSzKzw5isNgypinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "870f9f4004df870dd43e715226a4e9b1da489755c9acfbb1162f8363b6beeef2"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 1217) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clair_olson@daniel.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "clair_olson@daniel.co"], ["encrypted_password", "$2a$04$34gg5uY4NVOq.cyrNk5s/eBut7vFuBbFuXON.LR/ks0xdKOHaqSdK"], ["confirmation_token", "aJcSbTBDMWzWdPjRrQ7q"], ["confirmation_sent_at", "2019-10-13 19:03:58.874790"], ["name", "Ilene Wright"], ["email", "clair_olson@daniel.co"], ["created_at", "2019-10-13 19:03:58.874681"], ["updated_at", "2019-10-13 19:03:58.874681"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.5ms | Allocations: 405) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.6ms Delivered mail 5da3751ed6894_d1373fc297c2ffd0795e1@Marios-MacBook-Pro.local.mail (1.6ms) Date: Sun, 13 Oct 2019 14:03:58 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: clair_olson@daniel.co Message-ID: <5da3751ed6894_d1373fc297c2ffd0795e1@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome clair_olson@daniel.co!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22aJcSbTBDMWzWdPjRrQ7q%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fwindler.name%2Froger%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"aJcSbTBDMWzWdPjRrQ7q\"\n redirectUrl: \"http://windler.name/roger\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "aJcSbTBDMWzWdPjRrQ7q"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:03:58.883704"], ["updated_at", "2019-10-13 19:03:58.883936"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://windler.name/roger?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.4ms | Allocations: 1792) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jacqueline@wehnerbartell.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jacqueline@wehnerbartell.info"], ["encrypted_password", "$2a$04$ALYPLZPgqdOUxIex3HbxX.xzH6AgUd0JInO4yLTP3.8mCJEv1UKZi"], ["confirmation_token", "p_S8PihGJEjzaamPJKLg"], ["confirmation_sent_at", "2019-10-13 19:03:58.892085"], ["name", "Hugo First"], ["email", "jacqueline@wehnerbartell.info"], ["created_at", "2019-10-13 19:03:58.891987"], ["updated_at", "2019-10-13 19:03:58.891987"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22p_S8PihGJEjzaamPJKLg-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fmooregoldner.co%2Flu_christiansen%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:03:58 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"p_S8PihGJEjzaamPJKLg-invalid\"\n redirectUrl: \"http://mooregoldner.co/lu_christiansen\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "p_S8PihGJEjzaamPJKLg-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "210aedea6c4dd0a46ce4aebaf6fa384083cb488338039e6efc8707e1486b5bea"], ["LIMIT", 1]] Completed 200 OK in 87ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1626) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leland_dubuque@schiller.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "leland_dubuque@schiller.name"], ["encrypted_password", "$2a$04$/HZE09hn2yJMhVwVZAzxQulJbafotfy4mPmx8FtXUXJjhZnLsk0H2"], ["confirmed_at", "2019-10-13 19:03:58.985882"], ["name", "Rocky Beach"], ["email", "leland_dubuque@schiller.name"], ["created_at", "2019-10-13 19:03:58.986611"], ["updated_at", "2019-10-13 19:03:58.986611"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"MBJM0rMSh71w0hxMbmKAww\":{\"token\":\"$2a$10$Od5kPIGe4c/LFdqGSdqBI.hDBN5MJUuBVOu7/cjK570K3cIP/MY1.\",\"expiry\":1572203039,\"updated_at\":\"2019-10-13 19:03:58 UTC\"}}"], ["updated_at", "2019-10-13 19:03:59.032174"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:59 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "leland_dubuque@schiller.name"], ["LIMIT", 1]] Completed 500 Internal Server Error in 47ms (ActiveRecord: 0.0ms | Allocations: 4090) TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "velia_schamberger@spinka.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "velia_schamberger@spinka.io"], ["encrypted_password", "$2a$04$xgLbDp/0G.906REC7QA4a.bye0DGUfQj3s3IiwR0GRnxkTcKndlHq"], ["confirmed_at", "2019-10-13 19:03:59.086360"], ["name", "Anita Bathe"], ["email", "velia_schamberger@spinka.io"], ["created_at", "2019-10-13 19:03:59.087125"], ["updated_at", "2019-10-13 19:03:59.087125"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:03:59 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 161) TRANSACTION (0.2ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "misty@crist.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "misty@crist.co"], ["encrypted_password", "$2a$04$MtaMtBrDmUlbp8TDc3q8/.iQBBJrfbg.9JGp8z/l.w4MTAtGypce6"], ["confirmed_at", "2019-10-13 19:05:45.394657"], ["name", "Annie Buddyhome"], ["email", "misty@crist.co"], ["created_at", "2019-10-13 19:05:45.395892"], ["updated_at", "2019-10-13 19:05:45.395892"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"JzZUNuxX9x6gDeRPNIT7ZQ\":{\"token\":\"$2a$10$vlcAal1hP10rVpDuKm9W1eJDBByFzH8S.XfLUbv5k2OgGbskn2Kz6\",\"expiry\":1572203145,\"updated_at\":\"2019-10-13 19:05:45 UTC\"}}"], ["updated_at", "2019-10-13 19:05:45.439679"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:05:45 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "misty@crist.co"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 10606)  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'tristan_jacobson@monahanglover.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Jack Pott"], ["email", "tristan_jacobson@monahanglover.name"], ["encrypted_password", "$2a$04$4qSUq5.ep3zFc53DSrpLeeZv.7fDv0fwKIHdJTKiku8uisPAIDNXK"], ["confirmed_at", "2019-10-13 19:06:14.664652"], ["uid", "tristan_jacobson@monahanglover.name"], ["created_at", "2019-10-13 19:06:14.670167"], ["updated_at", "2019-10-13 19:06:14.670167"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tristan_jacobson@monahanglover.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "tristan_jacobson@monahanglover.name"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dTUmPjso7BbTKct_9LjxEA\":{\"token\":\"$2a$10$qRaTLm3xU1KcYXVB4ujeiuf7fAlqAl3VeQuJ2WzSLtbtMGGCn3gE.\",\"expiry\":1572203174,\"updated_at\":\"2019-10-13 19:06:14 UTC\"}}"], ["updated_at", "2019-10-13 19:06:14.755156"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-10-13 19:06:14.759557"], ["current_sign_in_at", "2019-10-13 19:06:14.759557"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:06:14.759954"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 69ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'felecia.terry@wolf.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Ginger Snapp"], ["email", "felecia.terry@wolf.net"], ["encrypted_password", "$2a$04$rbneRm2lNaLGm02oUjntV.tV9OIo/bWumrg5lgENA1xWsi3HggDQe"], ["confirmed_at", "2019-10-13 19:06:14.766772"], ["uid", "felecia.terry@wolf.net"], ["created_at", "2019-10-13 19:06:14.767627"], ["updated_at", "2019-10-13 19:06:14.767627"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"felecia.terry@wolf.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "felecia.terry@wolf.net"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'dorine.prohaska@rogahn.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Ilene Dover"], ["email", "dorine.prohaska@rogahn.name"], ["encrypted_password", "$2a$04$z5FvTmRrdJ1u5j1T.2Ck..NBK.cC3OSu0iDtv5HBdzJCik7GmqKpO"], ["uid", "dorine.prohaska@rogahn.name"], ["created_at", "2019-10-13 19:06:14.779423"], ["updated_at", "2019-10-13 19:06:14.779423"], ["confirmation_token", "fUAanZZ--Lkca3briYys"], ["confirmation_sent_at", "2019-10-13 19:06:14.779570"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dorine.prohaska@rogahn.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "dorine.prohaska@rogahn.name"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'ezequiel@kshlerinrunolfsdottir.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Ray Zenz"], ["email", "ezequiel@kshlerinrunolfsdottir.info"], ["encrypted_password", "$2a$04$5icebCSUU9nwRN5Ok7IQlOg9dyIB3mOgFxt1NT05bw11q0LRNwEcy"], ["confirmed_at", "2019-10-13 19:06:14.788884"], ["locked_at", "2019-10-13 19:06:14.788967"], ["uid", "ezequiel@kshlerinrunolfsdottir.info"], ["created_at", "2019-10-13 19:06:14.790138"], ["updated_at", "2019-10-13 19:06:14.790138"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ezequiel@kshlerinrunolfsdottir.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "ezequiel@kshlerinrunolfsdottir.info"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'emelina@nikolauswisoky.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Marv Ellis"], ["email", "emelina@nikolauswisoky.name"], ["encrypted_password", "$2a$04$gsYeaotdprNvqSm/L9vQqubENDnUSU8UjOXdPf3Ss6PO8Hqphotmm"], ["confirmed_at", "2019-10-13 19:06:14.801155"], ["auth_available", "f"], ["uid", "emelina@nikolauswisoky.name"], ["created_at", "2019-10-13 19:06:14.802583"], ["updated_at", "2019-10-13 19:06:14.802583"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"emelina@nikolauswisoky.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "emelina@nikolauswisoky.name"]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE ("admins"."email" = 'sterling_considine@schuppe.co' AND "admins"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "admins" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sterling_considine@schuppe.co"], ["encrypted_password", "$2a$04$p4UjYKuwKKfbAE9.NEBgpOv9tYuNOwKaRh3R3D4HFQckJYzDLrf3i"], ["confirmed_at", "2019-10-13 19:06:14.822833"], ["uid", "sterling_considine@schuppe.co"], ["created_at", "2019-10-13 19:06:14.824254"], ["updated_at", "2019-10-13 19:06:14.824254"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"sterling_considine@schuppe.co\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT 1 [["email", "sterling_considine@schuppe.co"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"BinnGVK3yP8Ny8feUG0A3Q\":{\"token\":\"$2a$10$9IgRrdbIpgDdGkoJ69NtfeJWfCB.39Ebnn5WO.asLqssimQThtOpu\",\"expiry\":1572203174,\"updated_at\":\"2019-10-13 19:06:14 UTC\"}}"], ["updated_at", "2019-10-13 19:06:14.889732"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'daphne@starkmurray.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Ali Gaither"], ["email", "daphne@starkmurray.org"], ["encrypted_password", "$2a$04$nDDbqsnAUeN0NNjoEgpgbug4K17PSTEI7TfVm4pLjQbcrqlQ.rxPS"], ["confirmed_at", "2019-10-13 19:06:14.894152"], ["uid", "daphne@starkmurray.org"], ["created_at", "2019-10-13 19:06:14.894949"], ["updated_at", "2019-10-13 19:06:14.894949"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"cva-itEhIBrVapRzwd7csQ\":{\"token\":\"$2a$10$F5PtibcP2eePTTOOGjIj6ebF/JfJXo6MVajrdbPan2k6a2jU1E1T.\",\"expiry\":1572203174,\"updated_at\":\"2019-10-13 19:06:14 UTC\"}}"], ["updated_at", "2019-10-13 19:06:14.946505"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "daphne@starkmurray.org"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:06:14.997089"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'stormy@stracke.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Helena Hanbaskett"], ["email", "stormy@stracke.info"], ["encrypted_password", "$2a$04$I7frmYVTWRtgjmIXE/14JeM1z3YY.4zvAmZCKLB0pU6ttZsMm2uce"], ["confirmed_at", "2019-10-13 19:06:15.005333"], ["uid", "stormy@stracke.info"], ["created_at", "2019-10-13 19:06:15.006113"], ["updated_at", "2019-10-13 19:06:15.006113"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE ("admins"."email" = 'julieann_aufderhar@rippinpagac.info' AND "admins"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "admins" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "julieann_aufderhar@rippinpagac.info"], ["encrypted_password", "$2a$04$xA/OKXvyYfapA6kISi7fl.29vBsZ8pNE3ujtlhI9T.CHcPN9bQlN6"], ["confirmed_at", "2019-10-13 19:06:15.009634"], ["uid", "julieann_aufderhar@rippinpagac.info"], ["created_at", "2019-10-13 19:06:15.010586"], ["updated_at", "2019-10-13 19:06:15.010586"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"TGksUY4liUeZC9FGj5GVIg\":{\"token\":\"$2a$10$ISYyaOZjYEQWPnFGUKZlJOItb3DthZwuSEHtKvcfW.v2syfpQjsdC\",\"expiry\":1572203175,\"updated_at\":\"2019-10-13 19:06:15 UTC\"}}"], ["updated_at", "2019-10-13 19:06:15.060690"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT 1 [["uid", "julieann_aufderhar@rippinpagac.info"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:06:15.110155"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.2ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'calista@pfefferhoeger.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Charity Case"], ["email", "calista@pfefferhoeger.org"], ["encrypted_password", "$2a$04$WEMaWPlaKtr/JtW4NPJE4e1G23uJsZgxDO9YBvyk.SXVfDm5B8d9i"], ["confirmed_at", "2019-10-13 19:06:15.117246"], ["uid", "calista@pfefferhoeger.org"], ["created_at", "2019-10-13 19:06:15.118437"], ["updated_at", "2019-10-13 19:06:15.118437"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"calista@pfefferhoeger.org\",\n redirectUrl: \"http://collins.net/warner_dickinson\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "calista@pfefferhoeger.org"], ["provider", "email"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "7008f8c2d9b1b1a1d47dac3fa7625fc832cc481abe937414cccd8ebf9bad9baa"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7008f8c2d9b1b1a1d47dac3fa7625fc832cc481abe937414cccd8ebf9bad9baa"], ["reset_password_sent_at", "2019-10-13 19:06:15.205680"], ["updated_at", "2019-10-13 19:06:15.205940"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (2.0ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 127.4ms Sent mail to calista@pfefferhoeger.org (3.4ms) Date: Sun, 13 Oct 2019 14:06:15 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: calista@pfefferhoeger.org Message-ID: <5da375a752450_d2013ff16183201014724@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: calista@pfefferhoeger.org provider: email redirect-url: http://collins.net/warner_dickinson client-config: default

Hello calista@pfefferhoeger.org!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 214ms (Views: 0.1ms | ActiveRecord: 0.4ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fcollins.net%2Fwarner_dickinson&variables%5Btoken%5D=Xr7szrfS4x-p9iHS7_K6" for 127.0.0.1 at 2019-10-13 14:06:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://collins.net/warner_dickinson", "token"=>"Xr7szrfS4x-p9iHS7_K6"}} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "7008f8c2d9b1b1a1d47dac3fa7625fc832cc481abe937414cccd8ebf9bad9baa"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mLdGY_oeOU4YD7w-qbBcSw\":{\"token\":\"$2a$10$NracmETE3JhjC2MIc7q7eOyKcDlQ8nz3N8jIqBeaRgesZuHVIhRAS\",\"expiry\":1572203175}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:15.384108"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://collins.net/warner_dickinson?access-token=iEbJ5swKeHVEynv0rt0FnA&client=mLdGY_oeOU4YD7w-qbBcSw&client_id=mLdGY_oeOU4YD7w-qbBcSw&config=&expiry=&reset_password=true&token=iEbJ5swKeHVEynv0rt0FnA&uid=calista%40pfefferhoeger.org Completed 302 Found in 45ms (ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://westgoldner.com/gene\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "nothere@gmail.com"], ["provider", "email"]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"johnie_dibbert@murphy.net\"\n name: \"Sharleen Padberg\"\n password: \"M1wAlWgJ\"\n passwordConfirmation: \"M1wAlWgJ\"\n confirmSuccessUrl: \"http://kreiger.biz/samantha\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'johnie_dibbert@murphy.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("encrypted_password", "name", "email", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["encrypted_password", "$2a$04$trUPZbj9dLtH66UCCzBF/uCXWFJIdsvPACZJPQz.pyZko.lN7GS9."], ["name", "Sharleen Padberg"], ["email", "johnie_dibbert@murphy.net"], ["uid", "johnie_dibbert@murphy.net"], ["created_at", "2019-10-13 19:06:15.398495"], ["updated_at", "2019-10-13 19:06:15.398495"], ["confirmation_token", "tKyGuZhLZBBKodySvsBm"], ["confirmation_sent_at", "2019-10-13 19:06:15.398637"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.7ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.5ms Sent mail to johnie_dibbert@murphy.net (1.0ms) Date: Sun, 13 Oct 2019 14:06:15 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: johnie_dibbert@murphy.net Message-ID: <5da375a76292f_d2013ff161832010148d2@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://kreiger.biz/samantha

Welcome johnie_dibbert@murphy.net!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 10ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.0ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1 Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fkreiger.biz%2Fsamantha&variables%5Btoken%5D=tKyGuZhLZBBKodySvsBm" for 127.0.0.1 at 2019-10-13 14:06:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://kreiger.biz/samantha", "token"=>"tKyGuZhLZBBKodySvsBm"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "tKyGuZhLZBBKodySvsBm"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:06:15.409376"], ["updated_at", "2019-10-13 19:06:15.409648"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://kreiger.biz/samantha?account_confirmation_success=true Completed 302 Found in 5ms (ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Chadwick Hodkiewicz\"\n password: \"OpWnZwZ4j\"\n passwordConfirmation: \"OpWnZwZ4j\"\n confirmSuccessUrl: \"http://mitchell.co/cody.von\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = '' AND "users"."provider" = 'email') LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'joshua@millerskiles.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Anna Sasin"], ["email", "joshua@millerskiles.name"], ["encrypted_password", "$2a$04$MOp6GFLLv4Lh8z6fk.ApHucr51S/Ms9c0TEtj3ym3iSeEUziL9Eci"], ["confirmed_at", "2019-10-13 19:06:15.428029"], ["allow_password_change", "t"], ["uid", "joshua@millerskiles.name"], ["created_at", "2019-10-13 19:06:15.429402"], ["updated_at", "2019-10-13 19:06:15.429402"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"FVRM2sJVltjtgSw9AyO9KQ\":{\"token\":\"$2a$10$sb/m9MooDL2FfalJnn50wOZSKDeEphVOKmrWWYVqo0x47Sf/H4Gq6\",\"expiry\":1572203175,\"updated_at\":\"2019-10-13 19:06:15 UTC\"}}"], ["updated_at", "2019-10-13 19:06:15.488021"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "joshua@millerskiles.name"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$H62DXxE1F9uNxSWyES5XT.XgRVaBgNypESE/2NZXh6lcq1zqwq/cK"], ["updated_at", "2019-10-13 19:06:15.542204"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:15.543187"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'joetta@gulgowski.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Liv Long"], ["email", "joetta@gulgowski.biz"], ["encrypted_password", "$2a$04$z3clcsd7f8tOXLgeU53kguXDHbPNonyewXqTs6tFVXXSZ35P7hGAW"], ["confirmed_at", "2019-10-13 19:06:15.548152"], ["allow_password_change", "t"], ["uid", "joetta@gulgowski.biz"], ["created_at", "2019-10-13 19:06:15.549017"], ["updated_at", "2019-10-13 19:06:15.549017"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"6RACmVTGUf86waSVe4czQA\":{\"token\":\"$2a$10$XgzXQEoAJW9HX5lFM9ZVT..mKLvLNFoLWzcUjHVqghsBvHVYiEp5e\",\"expiry\":1572203175,\"updated_at\":\"2019-10-13 19:06:15 UTC\"}}"], ["updated_at", "2019-10-13 19:06:15.595292"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "joetta@gulgowski.biz"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$v1hfsQH7sjzrpRelo8llPOnG39WQTSHX/af/o28mpzSKWqWgx.dMy"], ["updated_at", "2019-10-13 19:06:15.647350"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:15.648298"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'german@harrisosinski.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Buck Ng"], ["email", "german@harrisosinski.biz"], ["encrypted_password", "$2a$04$j1o0P1l6HDFg2//AiQRlZuwC76rLotjzs.qgo/AwY8Puux2CcT1m2"], ["confirmed_at", "2019-10-13 19:06:15.654133"], ["uid", "german@harrisosinski.biz"], ["created_at", "2019-10-13 19:06:15.655039"], ["updated_at", "2019-10-13 19:06:15.655039"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"rD-wE8eLlPiDtJ6KJZ9sKQ\":{\"token\":\"$2a$10$nc.vmD8I6ZoSHCM66KYd5uqglHkNWgocHF/SO48zSLHZEjYpU8cUC\",\"expiry\":1572203175,\"updated_at\":\"2019-10-13 19:06:15 UTC\"}}"], ["updated_at", "2019-10-13 19:06:15.702148"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "german@harrisosinski.biz"]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'luke.bernier@lemke.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Chris Mass"], ["email", "luke.bernier@lemke.io"], ["encrypted_password", "$2a$04$5FwtY8okr6vMVHEEfVHlEe9fdX33nQSlTf6oFRYa2wbixstbWMKcu"], ["confirmed_at", "2019-10-13 19:06:15.760377"], ["allow_password_change", "t"], ["uid", "luke.bernier@lemke.io"], ["created_at", "2019-10-13 19:06:15.761184"], ["updated_at", "2019-10-13 19:06:15.761184"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fOSVRVsKsRcAhPNH6TLZoQ\":{\"token\":\"$2a$10$/BImJp2dk9PiUCkhg5pT1.TDkxyDhQFeTX4H0ZFaTiMJor3NhdfCS\",\"expiry\":1572203175,\"updated_at\":\"2019-10-13 19:06:15 UTC\"}}"], ["updated_at", "2019-10-13 19:06:15.807111"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "luke.bernier@lemke.io"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$HJTj0eEsjHw/zHLqW1FiN.Aq.Fz9Tw8xa8VvPV.IVqhkPI01NFoay"], ["updated_at", "2019-10-13 19:06:15.860025"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:15.860959"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'german_haag@wiegandgorczany.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Barry D'Alive"], ["email", "german_haag@wiegandgorczany.net"], ["encrypted_password", "$2a$04$P1ydBDMgC4Jl3/Vf8NP.FewEJ8HGdrHplWrTPjqX..7a3H4nR6NTe"], ["confirmed_at", "2019-10-13 19:06:15.867452"], ["allow_password_change", "t"], ["uid", "german_haag@wiegandgorczany.net"], ["created_at", "2019-10-13 19:06:15.868650"], ["updated_at", "2019-10-13 19:06:15.868650"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"e3rsdChecdqhfJ5fPcIrHA\":{\"token\":\"$2a$10$oVsfPtYDbRV4mZxjRQnZleHjYrUbwWBwPwGxNsLUi18YEAWuSoA.6\",\"expiry\":1572203175,\"updated_at\":\"2019-10-13 19:06:15 UTC\"}}"], ["updated_at", "2019-10-13 19:06:15.917559"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "german_haag@wiegandgorczany.net"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$fkZ2/.F4oni6LuT3Ota95.jFdVzgQMjfEqGuY81vYdbUTn0Uc2U5a"], ["updated_at", "2019-10-13 19:06:15.970044"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:15.970974"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'orville_abshire@weimann.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Dee Liver"], ["email", "orville_abshire@weimann.io"], ["encrypted_password", "$2a$04$CP7.4HHGuWwNnjgfD7Zbv.6qM6QXTBfNet0hxNyW1BxXVdldyEM.W"], ["confirmed_at", "2019-10-13 19:06:15.976791"], ["uid", "orville_abshire@weimann.io"], ["created_at", "2019-10-13 19:06:15.978195"], ["updated_at", "2019-10-13 19:06:15.978195"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jieUjCRqW7I7YUzzxwAHIA\":{\"token\":\"$2a$10$GeEie/FkMMsttJxblPNdmeGhkLdRdGpd8gMNH34x2PUu6v3l4GgVG\",\"expiry\":1572203176,\"updated_at\":\"2019-10-13 19:06:15 UTC\"}}"], ["updated_at", "2019-10-13 19:06:16.025646"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "orville_abshire@weimann.io"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$nLF397MggiiyFiENOkW.D.HW48OJwfeJhvKEZmkc7l9BSYp/wWbvS"], ["updated_at", "2019-10-13 19:06:16.078721"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'levi@barrows.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Bill Board"], ["email", "levi@barrows.biz"], ["encrypted_password", "$2a$04$jkGGMNAAnMeuxrVeF8m3BudeB/Cfr7ukKP1aW2D56LpHiXqTggjuy"], ["confirmed_at", "2019-10-13 19:06:16.085296"], ["uid", "levi@barrows.biz"], ["created_at", "2019-10-13 19:06:16.086204"], ["updated_at", "2019-10-13 19:06:16.086204"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'lucio@metzjohnston.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Sandy Beech"], ["email", "lucio@metzjohnston.biz"], ["encrypted_password", "$2a$04$j4j7II5ZG5UO930RVJiMK.ZuDb3xoq1SvuKzwSeAt0PSnrw5SIobq"], ["confirmed_at", "2019-10-13 19:06:16.096261"], ["uid", "lucio@metzjohnston.biz"], ["created_at", "2019-10-13 19:06:16.097842"], ["updated_at", "2019-10-13 19:06:16.097842"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "4407a4c5e7edd9ffa4fc196f1fe76af21bb432e54e6468da8bdc75147962e597"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "4407a4c5e7edd9ffa4fc196f1fe76af21bb432e54e6468da8bdc75147962e597"], ["reset_password_sent_at", "2019-10-13 19:06:16.099442"], ["updated_at", "2019-10-13 19:06:16.099660"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22tUTgv7G2BxvVAevcsZ2n%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"tUTgv7G2BxvVAevcsZ2n\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "4407a4c5e7edd9ffa4fc196f1fe76af21bb432e54e6468da8bdc75147962e597"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ahpOawGMOX4bKgLQeV4LDA\":{\"token\":\"$2a$10$Aq6LfdBRHV0UGn3UUF3lVeRAUBUrupUTInJ2yosLu81REUj.nOkVi\",\"expiry\":1572203176}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:16.162180"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ahpOawGMOX4bKgLQeV4LDA\":{\"token\":\"$2a$10$Aq6LfdBRHV0UGn3UUF3lVeRAUBUrupUTInJ2yosLu81REUj.nOkVi\",\"expiry\":1572203176},\"dHF4V9NCMK-R7ANHKHVxbQ\":{\"token\":\"$2a$10$Ev3TfgCx1fPBBpTjroQ8PevSXRhYApX0YtgIYracygwJeb63PPw1a\",\"expiry\":1572203176,\"updated_at\":\"2019-10-13 19:06:16 UTC\"}}"], ["updated_at", "2019-10-13 19:06:16.207624"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 104ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'katerine.denesik@terrygaylord.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Tom Katt"], ["email", "katerine.denesik@terrygaylord.info"], ["encrypted_password", "$2a$04$77vdtVwa1heRjcqIQgnIZ.8i0wsYt2pLbUGtYRrNWX7NSLNMNwXAG"], ["confirmed_at", "2019-10-13 19:06:16.211346"], ["uid", "katerine.denesik@terrygaylord.info"], ["created_at", "2019-10-13 19:06:16.211979"], ["updated_at", "2019-10-13 19:06:16.211979"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "fd1a112559c5fadad747a7e13cbf0cc8796f8e1233de6f4bc7b69c75bd4325db"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "fd1a112559c5fadad747a7e13cbf0cc8796f8e1233de6f4bc7b69c75bd4325db"], ["reset_password_sent_at", "2019-10-13 19:06:16.213055"], ["updated_at", "2019-10-13 19:06:16.213211"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22yKfwbXTcGTKtc-pwCNhW%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"yKfwbXTcGTKtc-pwCNhW\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "fd1a112559c5fadad747a7e13cbf0cc8796f8e1233de6f4bc7b69c75bd4325db"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TT6vwAdEKx24EGMoTpH6LA\":{\"token\":\"$2a$10$7y4KoixIb0dHRo6xZUzMdOFcKe0m9pgO3LHz8/w5yZM6J0NTL5Jdy\",\"expiry\":1572203176}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:16.265620"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=lYW-BIQO98hJC6g1UGuTDg&client=TT6vwAdEKx24EGMoTpH6LA&client_id=TT6vwAdEKx24EGMoTpH6LA&config=&expiry=&reset_password=true&token=lYW-BIQO98hJC6g1UGuTDg&uid=katerine.denesik%40terrygaylord.info Completed 302 Found in 50ms (ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'carey.mosciski@shanahan.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.0ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Kandi Apple"], ["email", "carey.mosciski@shanahan.biz"], ["encrypted_password", "$2a$04$qQm3mREXLYX6XWaZB2HSF.MiEoKt5ZZkezmNf9KPAlirR7yvs5vFS"], ["confirmed_at", "2019-10-13 09:06:16.000000"], ["uid", "carey.mosciski@shanahan.biz"], ["created_at", "2019-10-13 09:06:16.000000"], ["updated_at", "2019-10-13 09:06:16.000000"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "09827e415e95df92435d340e237821eebff9abc929b55cf742090441df2f3c68"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "09827e415e95df92435d340e237821eebff9abc929b55cf742090441df2f3c68"], ["reset_password_sent_at", "2019-10-13 09:06:16.000000"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22osdTEU3PJygTn9EpzbzS%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"osdTEU3PJygTn9EpzbzS\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "09827e415e95df92435d340e237821eebff9abc929b55cf742090441df2f3c68"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'waldo@kohlerhoppe.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Molly Kuehl"], ["email", "waldo@kohlerhoppe.biz"], ["encrypted_password", "$2a$04$elBA.p3Y5xiFKRD69D714eue91OQnL1lsAp3mgJRD5Mhs2VHKjzqq"], ["confirmed_at", "2019-10-13 19:06:16.282833"], ["uid", "waldo@kohlerhoppe.biz"], ["created_at", "2019-10-13 19:06:16.283938"], ["updated_at", "2019-10-13 19:06:16.283938"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "fc29ff995af9045c7b902e6f43f3e27958ef395248f6d441b90d29c67df5fd82"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "fc29ff995af9045c7b902e6f43f3e27958ef395248f6d441b90d29c67df5fd82"], ["reset_password_sent_at", "2019-10-13 19:06:16.285685"], ["updated_at", "2019-10-13 19:06:16.286003"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%227b1ZxFaKaWhyajBQXBhtinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"7b1ZxFaKaWhyajBQXBhtinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "23cd56020eb015c24898771bbb95b230a1fd9288c365cf524ceae1197cfb7266"]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'alisha@breitenberg.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Lynn Meabuck"], ["email", "alisha@breitenberg.org"], ["encrypted_password", "$2a$04$ep1jkcW8qSqo3VpIHUe7le.sLjwLgFmlnx27QOtNFixmj52uIG8mC"], ["uid", "alisha@breitenberg.org"], ["created_at", "2019-10-13 19:06:16.300342"], ["updated_at", "2019-10-13 19:06:16.300342"], ["confirmation_token", "SHTXdU7HTNsretj9xQFH"], ["confirmation_sent_at", "2019-10-13 19:06:16.300561"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (20.4ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 21.4ms Sent mail to alisha@breitenberg.org (1.4ms) Date: Sun, 13 Oct 2019 14:06:16 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: alisha@breitenberg.org Message-ID: <5da375a84f26f_d2013ff161832010149b8@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome alisha@breitenberg.org!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22SHTXdU7HTNsretj9xQFH%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fernserzemlak.net%2Fagustina%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"SHTXdU7HTNsretj9xQFH\"\n redirectUrl: \"http://ernserzemlak.net/agustina\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "SHTXdU7HTNsretj9xQFH"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:06:16.331491"], ["updated_at", "2019-10-13 19:06:16.331867"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://ernserzemlak.net/agustina?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'wesley.zemlak@friesen.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Emerald Stone"], ["email", "wesley.zemlak@friesen.info"], ["encrypted_password", "$2a$04$0qULIqPH8uEUQHkDi7BxUOMi2zyDRWGa6SNjbV4iQ2i0kqC0LKcz2"], ["uid", "wesley.zemlak@friesen.info"], ["created_at", "2019-10-13 19:06:16.339311"], ["updated_at", "2019-10-13 19:06:16.339311"], ["confirmation_token", "gs_SZnzyQz43EXt-SxNm"], ["confirmation_sent_at", "2019-10-13 19:06:16.339518"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22gs_SZnzyQz43EXt-SxNm-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Ftrantow.name%2Fdahlia%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"gs_SZnzyQz43EXt-SxNm-invalid\"\n redirectUrl: \"http://trantow.name/dahlia\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "gs_SZnzyQz43EXt-SxNm-invalid"]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "adc8391c13be94153e404b01ed23da7552c395b5d90ddbe38d5f4072cda1e165"]] Completed 200 OK in 95ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'carla@barrows.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Peg Legge"], ["email", "carla@barrows.biz"], ["encrypted_password", "$2a$04$m2OnlSDu5UGb4zcd7Hrw0.jhtdeHCbAkWFwSSJrM8D9JcwT6rWHhu"], ["confirmed_at", "2019-10-13 19:06:16.444604"], ["uid", "carla@barrows.biz"], ["created_at", "2019-10-13 19:06:16.445373"], ["updated_at", "2019-10-13 19:06:16.445373"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"WO56sv6UtfBmvewEjEqosA\":{\"token\":\"$2a$10$92LcxqPAodMC0mbI9elLb.nTr5ClghIXOlpcvJiWsQBB.dlfIxtky\",\"expiry\":1572203176,\"updated_at\":\"2019-10-13 19:06:16 UTC\"}}"], ["updated_at", "2019-10-13 19:06:16.494473"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:06:16 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "carla@barrows.biz"]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'kyle_bergnaum@haneanderson.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Ryan Carnation"], ["email", "kyle_bergnaum@haneanderson.biz"], ["encrypted_password", "$2a$04$zxSE3ecQbC30.Ob4IZanze5xzu6e7/EIaLbLGzFWFfPtHugn/0Fa."], ["confirmed_at", "2019-10-13 19:06:16.558863"], ["uid", "kyle_bergnaum@haneanderson.biz"], ["created_at", "2019-10-13 19:06:16.561840"], ["updated_at", "2019-10-13 19:06:16.561840"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:06:16 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "claire@crooks.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "claire@crooks.io"], ["encrypted_password", "$2a$04$0KcgePHwYgx5/LZ2yhf2Je8YlKasKyRIuJ5.tAF3gCfYLYAVzOhb2"], ["confirmed_at", "2019-10-13 19:06:19.291313"], ["name", "Marco DeStinkshun"], ["email", "claire@crooks.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:19.296143"], ["updated_at", "2019-10-13 19:06:19.296143"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"claire@crooks.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "claire@crooks.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"sYf664MddBO9XLOETEzHuw\":{\"token\":\"$2a$12$Be4vsgr38w6aXGxpf4mC/OydNj440imK2MJ5Lfs/dMupTsIOVGJyq\",\"expiry\":1572203179,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:19.322-05:00\"}}"], ["updated_at", "2019-10-13 19:06:19.499641"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:06:19.504176"], ["last_sign_in_at", "2019-10-13 19:06:19.504176"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:06:19.504563"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 195ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kory@ratke.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kory@ratke.com"], ["encrypted_password", "$2a$04$8geJTb9VU4LxnXTUlw7JYOkNzoXyS2jv84M1fpzzDNkzaVPPHJRbW"], ["confirmed_at", "2019-10-13 19:06:19.511428"], ["name", "Kat Toy"], ["email", "kory@ratke.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:19.512187"], ["updated_at", "2019-10-13 19:06:19.512187"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kory@ratke.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kory@ratke.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-10-13 19:06:19.516172"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "luella@bernhard.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "luella@bernhard.com"], ["encrypted_password", "$2a$04$4yFDLxqmvtrEIra47DZ9reqMVtyRG/jjvC.D2PvdyyqBUVqdLQ.eS"], ["confirmation_token", "ZZRyTzGgeAg4qaHsx1Rh"], ["confirmation_sent_at", "2019-10-13 19:06:19.520163"], ["name", "Juan Nightstand"], ["email", "luella@bernhard.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:19.520091"], ["updated_at", "2019-10-13 19:06:19.520091"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"luella@bernhard.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "luella@bernhard.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ethan@keelingmarvin.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ethan@keelingmarvin.com"], ["encrypted_password", "$2a$04$ZI0wWC5kT1VhsG2Y.u0p5eVHuirracnAWbxkgQIto48T.f/i3hq0G"], ["confirmed_at", "2019-10-13 19:06:19.525545"], ["locked_at", "2019-10-13 19:06:19.525553"], ["name", "Raynor Schein"], ["email", "ethan@keelingmarvin.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:19.526174"], ["updated_at", "2019-10-13 19:06:19.526174"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ethan@keelingmarvin.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ethan@keelingmarvin.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carol@botsfordwolff.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "carol@botsfordwolff.com"], ["encrypted_password", "$2a$04$E17P99hRIqTU/5vkPZlG7e.cj2uO0WDyvfWKoFcgf7ZqIVChfO.Vy"], ["confirmed_at", "2019-10-13 19:06:19.532081"], ["name", "Evan Keel"], ["email", "carol@botsfordwolff.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:19.533126"], ["updated_at", "2019-10-13 19:06:19.533126"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"carol@botsfordwolff.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "carol@botsfordwolff.com"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "dwayne@senger.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dwayne@senger.info"], ["encrypted_password", "$2a$04$V.Sa.gWBHompFu/x/A17y.YbrNypI5Vl/wE28ImAstFiN43Xb5mpG"], ["confirmed_at", "2019-10-13 19:06:19.550854"], ["email", "dwayne@senger.info"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:19.552500"], ["updated_at", "2019-10-13 19:06:19.552500"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"dwayne@senger.info\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "dwayne@senger.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"yWTD234EieCJZjBDdamGUA\":{\"token\":\"$2a$12$tMbLfZkMAagK/8c1Qkq7Iego5NzuLGMM5QV6uSRNGtRzE17k0643u\",\"expiry\":1572203179,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:19.558-05:00\"}}"], ["updated_at", "2019-10-13 19:06:19.743017"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 189ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "willie.herman@grant.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "willie.herman@grant.io"], ["encrypted_password", "$2a$04$6CsmSLrUDfDgpGBxUzwo3.Xh7..Fd0EQxjgWB80L3Gq6xEsMYuSle"], ["confirmed_at", "2019-10-13 19:06:19.747743"], ["name", "Bea Sting"], ["email", "willie.herman@grant.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:19.748507"], ["updated_at", "2019-10-13 19:06:19.748507"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0_kbkFnmXAO4xjtpliTlqg\":{\"token\":\"$2a$12$Sy2OIDlyiq6KtnPkvhwo0eSUu/ofLMzaqiXkKgERsYNm.JAxnYeSO\",\"expiry\":1572203179,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:19.749-05:00\"}}"], ["updated_at", "2019-10-13 19:06:19.923765"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "willie.herman@grant.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 19:06:20.095860"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 172ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "irma_ratke@toy.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "irma_ratke@toy.co"], ["encrypted_password", "$2a$04$hLQKLOhBZ7XyenqPddB1wuwjkmPpWjQLO5g8c93894I6P8ygReeHC"], ["confirmed_at", "2019-10-13 19:06:20.103705"], ["name", "Izzy Backyet"], ["email", "irma_ratke@toy.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:20.104488"], ["updated_at", "2019-10-13 19:06:20.104488"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "latisha_macejkovic@mcclurewuckert.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "latisha_macejkovic@mcclurewuckert.io"], ["encrypted_password", "$2a$04$F9qOsgrJKv/FAvf5XPnoCe4z1Ny1piyazemfEJvjhrUvImsrNL88u"], ["confirmed_at", "2019-10-13 19:06:20.108172"], ["email", "latisha_macejkovic@mcclurewuckert.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:20.109027"], ["updated_at", "2019-10-13 19:06:20.109027"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"oJSRZuGLgSO7fVLyPvZmfw\":{\"token\":\"$2a$12$7u0hAyjZmtchgUbv/TDvAOEdDmbQF/BoEUCBdcTNkCudDxWu7a2Ea\",\"expiry\":1572203180,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:20.110-05:00\"}}"], ["updated_at", "2019-10-13 19:06:20.315656"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "latisha_macejkovic@mcclurewuckert.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 19:06:20.500877"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 184ms (Views: 0.1ms | ActiveRecord: 0.3ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jan.lang@bergnaum.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jan.lang@bergnaum.co"], ["encrypted_password", "$2a$04$Vf3E0gG9MhKEKMNNQ6VW8uP5bvz0CxsoZADcTHogCIdoPxnh.fM6a"], ["confirmed_at", "2019-10-13 19:06:20.507987"], ["name", "Ilene North"], ["email", "jan.lang@bergnaum.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:20.508897"], ["updated_at", "2019-10-13 19:06:20.508897"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"jan.lang@bergnaum.co\",\n redirectUrl: \"http://gislason.info/karrie\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE (uid = 'jan.lang@bergnaum.co' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "091aa730e7e4aa7f3012b9db10658d523d5239cb85b793f5e12171d67bc2a18b"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "091aa730e7e4aa7f3012b9db10658d523d5239cb85b793f5e12171d67bc2a18b"], ["reset_password_sent_at", "2019-10-13 19:06:20.596281"], ["updated_at", "2019-10-13 19:06:20.596782"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (4.0ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 126.3ms Sent mail to jan.lang@bergnaum.co (4.0ms) Date: Sun, 13 Oct 2019 14:06:20 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: jan.lang@bergnaum.co Message-ID: <5da375acb1b10_d21a3ff799c2ffd02791@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: jan.lang@bergnaum.co provider: email redirect-url: http://gislason.info/karrie client-config: default

Hello jan.lang@bergnaum.co!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 219ms (Views: 0.2ms | ActiveRecord: 0.5ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fgislason.info%2Fkarrie&variables%5Btoken%5D=uieizdEyCadv4Z6D6CL1" for 127.0.0.1 at 2019-10-13 14:06:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://gislason.info/karrie", "token"=>"uieizdEyCadv4Z6D6CL1"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "091aa730e7e4aa7f3012b9db10658d523d5239cb85b793f5e12171d67bc2a18b"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-i07S1tr62i2lG0FzZeuVw\":{\"token\":\"$2a$12$mqESCoD.H3kkDyY1CVP6Jex43VhDSMtj4OMiOYaPTUdPOCEJ15LEe\",\"expiry\":1572203180}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:20.912284"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://gislason.info/karrie?access-token=1572203180&client=-i07S1tr62i2lG0FzZeuVw&client_id=-i07S1tr62i2lG0FzZeuVw&config=&expiry=1572203180&reset_password=true&token=1572203180&uid=jan.lang%40bergnaum.co Completed 302 Found in 181ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://leuschkebayer.com/benjamin\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE (uid = 'nothere@gmail.com' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"alexis@bednar.info\"\n name: \"Oliver Sawayn\"\n password: \"Wx7DwEyQ9h\"\n passwordConfirmation: \"Wx7DwEyQ9h\"\n confirmSuccessUrl: \"http://turner.name/bula\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alexis@bednar.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alexis@bednar.info"], ["encrypted_password", "$2a$04$T2j6xKleYOXvxEMdsD2EuuwLFqv1Ajy0ZrWfQOu3713.Kc6iTUCFO"], ["confirmation_token", "ypsPT9Txy3zyPWBCiGiw"], ["confirmation_sent_at", "2019-10-13 19:06:20.928191"], ["name", "Oliver Sawayn"], ["email", "alexis@bednar.info"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:20.928102"], ["updated_at", "2019-10-13 19:06:20.928102"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.8ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 4.0ms Sent mail to alexis@bednar.info (1.1ms) Date: Sun, 13 Oct 2019 14:06:20 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: alexis@bednar.info Message-ID: <5da375ace40da_d21a3ff799c2ffd028079@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://turner.name/bula

Welcome alexis@bednar.info!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fturner.name%2Fbula&variables%5Btoken%5D=ypsPT9Txy3zyPWBCiGiw" for 127.0.0.1 at 2019-10-13 14:06:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://turner.name/bula", "token"=>"ypsPT9Txy3zyPWBCiGiw"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "ypsPT9Txy3zyPWBCiGiw"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:06:20.943951"], ["updated_at", "2019-10-13 19:06:20.944616"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Redirected to http://turner.name/bula?account_confirmation_success=true Completed 302 Found in 7ms (ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Raleigh Larson\"\n password: \"RsWdWnPqE\"\n passwordConfirmation: \"RsWdWnPqE\"\n confirmSuccessUrl: \"http://hauck.info/edna\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stephane@boyle.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "stephane@boyle.co"], ["encrypted_password", "$2a$04$GYCRFhknFqgQo8JBVupJ2ebR4ba6FoDYOgT5NmWD7IyhfHvs7vr.2"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:20.963837"], ["name", "Rhoda Booke"], ["email", "stephane@boyle.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:20.965336"], ["updated_at", "2019-10-13 19:06:20.965336"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yjm9wdA4iveIpswB2k00ww\":{\"token\":\"$2a$12$pNVGQ3CWSRE3/MDjGdmkEOKPMe0JGCooim1EBz.8N0cRKvYWV0joy\",\"expiry\":1572203180,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:20.966-05:00\"}}"], ["updated_at", "2019-10-13 19:06:21.161937"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "stephane@boyle.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$NUBHh4IJzdyrfBAziJNBPOm0M/dtZGRnDXHx4NcLxdQBkb.YGLgyW"], ["updated_at", "2019-10-13 19:06:21.342185"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:21.343340"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 181ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "charmain.beier@reichert.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "charmain.beier@reichert.io"], ["encrypted_password", "$2a$04$341CSiAjQ/V3En4QdEHxduZ6wOjq0EXyTFBTYF/KXzPgjU48dcwRS"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:21.349097"], ["name", "Skip Dover"], ["email", "charmain.beier@reichert.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:21.349865"], ["updated_at", "2019-10-13 19:06:21.349865"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3AnX8h-omSGUhSyYmLMj6w\":{\"token\":\"$2a$12$a540O7B8zsL.RPfVuZFsq.ws8IdudheIkZdZvNx1PADd24U.NDw2a\",\"expiry\":1572203181,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:21.351-05:00\"}}"], ["updated_at", "2019-10-13 19:06:21.536357"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "charmain.beier@reichert.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$VwaJtzmon.n.RBqqY9QAEeGIHFh5Xaio3YVe/ZLvZwgl6eRiDuApC"], ["updated_at", "2019-10-13 19:06:21.718792"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:21.721342"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 185ms (Views: 0.1ms | ActiveRecord: 0.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.6ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "quentin@boyerstehr.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "quentin@boyerstehr.name"], ["encrypted_password", "$2a$04$v546OBadU7ltTufXqqjDo.D9GQbOv6eSm.czksxhzlw27KJZGha92"], ["confirmed_at", "2019-10-13 19:06:21.730642"], ["name", "Sandy Spring"], ["email", "quentin@boyerstehr.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:21.732247"], ["updated_at", "2019-10-13 19:06:21.732247"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"a1Ntqxy3jFQx6-llKvdFCQ\":{\"token\":\"$2a$12$50GKjZ0Q0ODBqSWDpgQ0P.gaLR6ZD/AqPTdbXozSd/KGfHjaYYMJ6\",\"expiry\":1572203181,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:21.734-05:00\"}}"], ["updated_at", "2019-10-13 19:06:21.930023"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "quentin@boyerstehr.name"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 190ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "argentina.kunze@damore.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "argentina.kunze@damore.net"], ["encrypted_password", "$2a$04$35cSzOyzsP96FJmrtmgMqe9UuAzeEvKErohpat49408K8BqGJgUAW"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:22.129646"], ["name", "Barb Dwyer"], ["email", "argentina.kunze@damore.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:22.131184"], ["updated_at", "2019-10-13 19:06:22.131184"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NoPA5wmIbJj0Jf5u8IaGOg\":{\"token\":\"$2a$12$5IMrXRg48ia2JkghsOtmouer9fpp8GHe8MwFqc7xbln5K4PWD4/k2\",\"expiry\":1572203182,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:22.132-05:00\"}}"], ["updated_at", "2019-10-13 19:06:22.316600"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "argentina.kunze@damore.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$To9Z.wSRu2hh04aRIIKJdOocz.sfP/Klbg7TNgUjQSRLKKqCK4/2O"], ["updated_at", "2019-10-13 19:06:22.497533"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:22.499632"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 183ms (Views: 0.5ms | ActiveRecord: 0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ingeborg_labadie@lockman.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ingeborg_labadie@lockman.co"], ["encrypted_password", "$2a$04$X7LOvy3ndQqA1tGIzsMKc.SFgOMOmeW4t19vYntAl4Nk7ktr4VS2e"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:22.507431"], ["name", "Sue Shi"], ["email", "ingeborg_labadie@lockman.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:22.508331"], ["updated_at", "2019-10-13 19:06:22.508331"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"M1OUV5jCbJs4N0mequau3Q\":{\"token\":\"$2a$12$ayOEfw0HxAZUxwymU3beaOFx3gocNDnKSvhUWaTcjOjaQdZFOE2W.\",\"expiry\":1572203182,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:22.509-05:00\"}}"], ["updated_at", "2019-10-13 19:06:22.696373"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ingeborg_labadie@lockman.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$/x387UehPLo/7Xe.zIex4O83/nT5cy/F3uxvKiLk0LMdPjzM8UP6m"], ["updated_at", "2019-10-13 19:06:22.875716"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:22.876999"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 180ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lindsey.weber@lynchpfeffer.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lindsey.weber@lynchpfeffer.biz"], ["encrypted_password", "$2a$04$ofIeOCbsvMAZcYN6GSe61e7Bxqg0fVeXEru8KHs5OCSYnDwYuRF/q"], ["confirmed_at", "2019-10-13 19:06:22.885039"], ["name", "Jacques Strap"], ["email", "lindsey.weber@lynchpfeffer.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:22.886330"], ["updated_at", "2019-10-13 19:06:22.886330"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"SGe37QSmUdHpx2MsuYHJNw\":{\"token\":\"$2a$12$9EJKntgzv1cANYxTBHgZDOb5h8jH3jKzi/nuPm2vS0Qv0aWukr6DG\",\"expiry\":1572203182,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:22.888-05:00\"}}"], ["updated_at", "2019-10-13 19:06:23.071990"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lindsey.weber@lynchpfeffer.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$pktmfbA9kp5yIV/0z6HUyu10FTd.4nKwMxtKhUi6ewlf6sU2DSyNy"], ["updated_at", "2019-10-13 19:06:23.254106"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 182ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "andrea@blanda.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "andrea@blanda.co"], ["encrypted_password", "$2a$04$.hM6y9qc8Csewbjm/BhZh.G/pbwMAv1KzoSrb2WOcyw1gjsDDY6Ji"], ["confirmed_at", "2019-10-13 19:06:23.261412"], ["name", "Des Buratto"], ["email", "andrea@blanda.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:23.262340"], ["updated_at", "2019-10-13 19:06:23.262340"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "devora@hettinger.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "devora@hettinger.biz"], ["encrypted_password", "$2a$04$ZA9MKIcBNjQb8OZFcj4.X.owJWCKVwff7xtkS.14mIzAl8X3xP4Ia"], ["confirmed_at", "2019-10-13 19:06:23.269827"], ["name", "Lance Lyde"], ["email", "devora@hettinger.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:23.270692"], ["updated_at", "2019-10-13 19:06:23.270692"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f6b8540361e41379732be15771d83a198707e46930f151fb57fa9fdb27a30ba9"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f6b8540361e41379732be15771d83a198707e46930f151fb57fa9fdb27a30ba9"], ["reset_password_sent_at", "2019-10-13 19:06:23.272529"], ["updated_at", "2019-10-13 19:06:23.272835"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22Xh85QKnSauytH_SryACx%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"Xh85QKnSauytH_SryACx\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f6b8540361e41379732be15771d83a198707e46930f151fb57fa9fdb27a30ba9"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"FPcQoFSEpQyI_MKKcqqaYg\":{\"token\":\"$2a$12$Qq0zrIn5QSaUZyyPHoPZY.BE7NQn/6VDWdfoQtnmuZPslE/NT4xLS\",\"expiry\":1572203183}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:23.464214"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"FPcQoFSEpQyI_MKKcqqaYg\":{\"token\":\"$2a$12$Qq0zrIn5QSaUZyyPHoPZY.BE7NQn/6VDWdfoQtnmuZPslE/NT4xLS\",\"expiry\":1572203183},\"k79vmBBOJUVHd42xPNCJ5g\":{\"token\":\"$2a$12$tvXcEhv0YxeQDZDZFvN6cO8RhPXx6Y55lvl/RFCTX4xhbaef9p4n.\",\"expiry\":1572203183,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:23.465-05:00\"}}"], ["updated_at", "2019-10-13 19:06:23.638662"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 365ms (Views: 0.1ms | ActiveRecord: 0.6ms)  (0.6ms) rollback transaction  (0.2ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "von@reichel.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "von@reichel.net"], ["encrypted_password", "$2a$04$Cli39vcqa5zaEv0ri1VvyuklrWdnXgijkV35pbxlQA72D.X9fTqcC"], ["confirmed_at", "2019-10-13 19:06:23.643842"], ["name", "Raney Schauer"], ["email", "von@reichel.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:23.644784"], ["updated_at", "2019-10-13 19:06:23.644784"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "bf94b235f6371d399406f9e5e423a9e9057a2c8dd8c4f36c1c0d8a75b428ae4b"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "bf94b235f6371d399406f9e5e423a9e9057a2c8dd8c4f36c1c0d8a75b428ae4b"], ["reset_password_sent_at", "2019-10-13 19:06:23.646155"], ["updated_at", "2019-10-13 19:06:23.646336"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22yJr1sA4QUDus9zbyvgsd%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"yJr1sA4QUDus9zbyvgsd\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "bf94b235f6371d399406f9e5e423a9e9057a2c8dd8c4f36c1c0d8a75b428ae4b"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"a1kuHlaTz-B5QWwGtU1Hgw\":{\"token\":\"$2a$12$1nyJf9QUd1wrpyyV0RC4wegWqS/6RZt5MUFE7mOJZIFaXqcuD/u8W\",\"expiry\":1572203183}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:23.840461"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1572203183&client=a1kuHlaTz-B5QWwGtU1Hgw&client_id=a1kuHlaTz-B5QWwGtU1Hgw&config=&expiry=1572203183&reset_password=true&token=1572203183&uid=von%40reichel.net Completed 302 Found in 194ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "charlie@dickinson.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "charlie@dickinson.name"], ["encrypted_password", "$2a$04$K8.DlVUg86Eb2lNT180aX.E/b1fme6xaef0nEqckO8f38JrH3fLOe"], ["confirmed_at", "2019-10-13 09:06:23"], ["name", "Aretha Holly"], ["email", "charlie@dickinson.name"], ["tokens", "{}"], ["created_at", "2019-10-13 09:06:23"], ["updated_at", "2019-10-13 09:06:23"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c32f01d2d4d5161c01eb808007d822d858a624962645a12442296a9dd6efd77f"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "c32f01d2d4d5161c01eb808007d822d858a624962645a12442296a9dd6efd77f"], ["reset_password_sent_at", "2019-10-13 09:06:23"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22MC_jXLm2C1qsdiD6AF9_%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"MC_jXLm2C1qsdiD6AF9_\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c32f01d2d4d5161c01eb808007d822d858a624962645a12442296a9dd6efd77f"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alena_lindgren@mclaughlin.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alena_lindgren@mclaughlin.com"], ["encrypted_password", "$2a$04$qjL1SScOyZRFSbokk7/aVeW0MlxzjihipvDm/KMUSBQ8eDWPhJ9jO"], ["confirmed_at", "2019-10-13 19:06:23.857494"], ["name", "Abbie Birthday"], ["email", "alena_lindgren@mclaughlin.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:23.858246"], ["updated_at", "2019-10-13 19:06:23.858246"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f160e325ea40f26ecb4d033e98aeaaf240e804b72cdfbaf0eac2ecebf7324cae"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f160e325ea40f26ecb4d033e98aeaaf240e804b72cdfbaf0eac2ecebf7324cae"], ["reset_password_sent_at", "2019-10-13 19:06:23.859904"], ["updated_at", "2019-10-13 19:06:23.860137"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22scj-XC-fZ62HSGvgMY-iinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"scj-XC-fZ62HSGvgMY-iinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "60ebcc4edbce4896cc53645a81106716d74d94bfface0ac992c3da45a54cfa01"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kenisha_wilkinson@mraz.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kenisha_wilkinson@mraz.name"], ["encrypted_password", "$2a$04$grJhuuS85I5McI1KvrNsj.IURmq19BYnOKainItnYqMtIVXy.m2cy"], ["confirmation_token", "-qEYvsgm6yy-tk6kqJDB"], ["confirmation_sent_at", "2019-10-13 19:06:23.870121"], ["name", "Mary Thonn"], ["email", "kenisha_wilkinson@mraz.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:23.870022"], ["updated_at", "2019-10-13 19:06:23.870022"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.8ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 5.2ms Sent mail to kenisha_wilkinson@mraz.name (2.3ms) Date: Sun, 13 Oct 2019 14:06:23 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: kenisha_wilkinson@mraz.name Message-ID: <5da375afd6561_d21a3ff799c2ffd0281e4@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome kenisha_wilkinson@mraz.name!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22-qEYvsgm6yy-tk6kqJDB%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fhalvorson.io%2Felli%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"-qEYvsgm6yy-tk6kqJDB\"\n redirectUrl: \"http://halvorson.io/elli\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "-qEYvsgm6yy-tk6kqJDB"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:06:23.916350"], ["updated_at", "2019-10-13 19:06:23.916799"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://halvorson.io/elli?account_confirmation_success=true Completed 302 Found in 5ms (ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "george@nienowhilll.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "george@nienowhilll.net"], ["encrypted_password", "$2a$04$0jUf5xmO453L4U2rimz2Ourgaqw0Yp3CqEY111h9qdtPfiLaBebjS"], ["confirmation_token", "zJw2mSkxWwUXHNSRek17"], ["confirmation_sent_at", "2019-10-13 19:06:23.925005"], ["name", "Sally Mander"], ["email", "george@nienowhilll.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:23.924883"], ["updated_at", "2019-10-13 19:06:23.924883"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22zJw2mSkxWwUXHNSRek17-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fmcdermott.co%2Fezekiel_funk%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:23 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"zJw2mSkxWwUXHNSRek17-invalid\"\n redirectUrl: \"http://mcdermott.co/ezekiel_funk\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "zJw2mSkxWwUXHNSRek17-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "00c19e7d5e606d77a73cf558ca241075598b6fda6c28c3e80229eb10d86d6ef7"], ["LIMIT", 1]] Completed 200 OK in 94ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mike@haneoconner.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mike@haneoconner.io"], ["encrypted_password", "$2a$04$5k6/.Du.1khi0b/mRF1x5e5lMszRrReiKqAFnp5BXj.54YhbnBgum"], ["confirmed_at", "2019-10-13 19:06:24.025178"], ["name", "Art Exhibit"], ["email", "mike@haneoconner.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:24.025817"], ["updated_at", "2019-10-13 19:06:24.025817"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OqTloET3UJjq9FtwxIxxyQ\":{\"token\":\"$2a$12$PaZIya5bP/gW8jE35ln0muZe5JwgSAocz5QweHeYHtXbSUNVjrBOS\",\"expiry\":1572203184,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:24.026-05:00\"}}"], ["updated_at", "2019-10-13 19:06:24.202887"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:06:24 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "mike@haneoconner.io"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 183ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alverta_schulist@simonis.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alverta_schulist@simonis.co"], ["encrypted_password", "$2a$04$A1Y3S2uaP2/63TXJYwoo2uDhV1bfss62aWw/6o.nMEqV8olLh9h36"], ["confirmed_at", "2019-10-13 19:06:24.393065"], ["name", "Lucy Fer"], ["email", "alverta_schulist@simonis.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:24.393862"], ["updated_at", "2019-10-13 19:06:24.393862"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:06:24 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "abram@prohaska.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "abram@prohaska.io"], ["encrypted_password", "$2a$04$H5LZq9WNzOG7R0.Tio/0mOlAtKukEk9X8N5dAHniveGcg7GfkY8Ga"], ["confirmed_at", "2019-10-13 19:06:27.530834"], ["name", "Rosa Shore"], ["email", "abram@prohaska.io"], ["created_at", "2019-10-13 19:06:27.535971"], ["updated_at", "2019-10-13 19:06:27.535971"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"abram@prohaska.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "abram@prohaska.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YJ-CV-XCrodWhj_LhdgnlA\":{\"token\":\"$2a$10$ZxoOFIeA/0Qk7uorHczDXOOz5bfBapwgasURO/A7Z0h3xj6F6ErhC\",\"expiry\":1572203187,\"updated_at\":\"2019-10-13 19:06:27 UTC\"}}"], ["updated_at", "2019-10-13 19:06:27.617036"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:06:27.621559"], ["last_sign_in_at", "2019-10-13 19:06:27.621559"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:06:27.621956"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 69ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lavada.waters@zulauf.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lavada.waters@zulauf.net"], ["encrypted_password", "$2a$04$RnJZfV2tGXpwX3EuBGzlg.FMbtrq61ep1YTP9nJv/waaaUXH35HSS"], ["confirmed_at", "2019-10-13 19:06:27.628431"], ["name", "Sarah Doctorinthehouse"], ["email", "lavada.waters@zulauf.net"], ["created_at", "2019-10-13 19:06:27.629141"], ["updated_at", "2019-10-13 19:06:27.629141"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lavada.waters@zulauf.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lavada.waters@zulauf.net"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "francisco@hilpertkuphal.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "francisco@hilpertkuphal.info"], ["encrypted_password", "$2a$04$I18u8eJK/kjgn7.B8C8zAe.Q90oe9hSspVd4SBR4CS2xNuFuJPWKO"], ["confirmation_token", "V8zyUx1hbLdtwXyQfJxM"], ["confirmation_sent_at", "2019-10-13 19:06:27.640040"], ["name", "Jack Tupp"], ["email", "francisco@hilpertkuphal.info"], ["created_at", "2019-10-13 19:06:27.639946"], ["updated_at", "2019-10-13 19:06:27.639946"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"francisco@hilpertkuphal.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "francisco@hilpertkuphal.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "aldo_kautzer@leannon.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "aldo_kautzer@leannon.org"], ["encrypted_password", "$2a$04$tw8M22ZexRsmzCNcwV6z6esrQMYYfvDhJlEtZXedKOJQ3Svm8ZE.S"], ["confirmed_at", "2019-10-13 19:06:27.647247"], ["locked_at", "2019-10-13 19:06:27.647283"], ["name", "Lake Speed"], ["email", "aldo_kautzer@leannon.org"], ["created_at", "2019-10-13 19:06:27.649562"], ["updated_at", "2019-10-13 19:06:27.649562"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"aldo_kautzer@leannon.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "aldo_kautzer@leannon.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hunter@tillmanarmstrong.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hunter@tillmanarmstrong.com"], ["encrypted_password", "$2a$04$hBoN6euUTdGHV4gm0CphAutF085ovmev/axBk.Fo1h4QJE2CTtru."], ["confirmed_at", "2019-10-13 19:06:27.659728"], ["name", "Joe Kerr"], ["email", "hunter@tillmanarmstrong.com"], ["created_at", "2019-10-13 19:06:27.660759"], ["updated_at", "2019-10-13 19:06:27.660759"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"hunter@tillmanarmstrong.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hunter@tillmanarmstrong.com"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "renetta@ankundingklein.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "renetta@ankundingklein.name"], ["encrypted_password", "$2a$04$q2EOoxyuxympEw5Zw5nKIu5LsHSdHs0ER45wKc.PA.ZFku5Bpn51K"], ["confirmed_at", "2019-10-13 19:06:27.681962"], ["email", "renetta@ankundingklein.name"], ["created_at", "2019-10-13 19:06:27.685796"], ["updated_at", "2019-10-13 19:06:27.685796"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"renetta@ankundingklein.name\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "renetta@ankundingklein.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"Q7VAoNv3LsLsbyW2zReyjw\":{\"token\":\"$2a$10$CTgYFeid5q0nIz/53P46LOlUv7xWohz7g0V6uUjM4Cwjqvchu46qa\",\"expiry\":1572203187,\"updated_at\":\"2019-10-13 19:06:27 UTC\"}}"], ["updated_at", "2019-10-13 19:06:27.750064"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 62ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "thresa_raynor@durgan.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "thresa_raynor@durgan.net"], ["encrypted_password", "$2a$04$VK1RIpmwGPg5W3Ui8cqQP.iiPXorYyH/FgCBfut20bEp19b6R25iy"], ["confirmed_at", "2019-10-13 19:06:27.755090"], ["name", "Bob Katz"], ["email", "thresa_raynor@durgan.net"], ["created_at", "2019-10-13 19:06:27.756061"], ["updated_at", "2019-10-13 19:06:27.756061"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9ncOt5Ohf4sASOrv1aGiRQ\":{\"token\":\"$2a$10$jm4T1Fx.s04WMLKRfYrf/.bZ4Hl12hweHUZ7Mt0OTdFOujoV.KEfK\",\"expiry\":1572203187,\"updated_at\":\"2019-10-13 19:06:27 UTC\"}}"], ["updated_at", "2019-10-13 19:06:27.810442"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "thresa_raynor@durgan.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:06:27.860304"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fredia@padberg.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "fredia@padberg.biz"], ["encrypted_password", "$2a$04$eL3b/60xgJ2/L9ZBMgzqDuLb8uBFzIqmNXlq1rbu9W9j54HH0dudG"], ["confirmed_at", "2019-10-13 19:06:27.869005"], ["name", "Rhea Curran"], ["email", "fredia@padberg.biz"], ["created_at", "2019-10-13 19:06:27.869847"], ["updated_at", "2019-10-13 19:06:27.869847"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "jacob.walter@damore.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jacob.walter@damore.org"], ["encrypted_password", "$2a$04$8hcTdjMDYv.FgTjJX5LG1explFXXkgZfFsCe3syw.iJ6nzLi5TeFW"], ["confirmed_at", "2019-10-13 19:06:27.873635"], ["email", "jacob.walter@damore.org"], ["created_at", "2019-10-13 19:06:27.874643"], ["updated_at", "2019-10-13 19:06:27.874643"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"-qmWZLyPOLB60JBkE6ECbw\":{\"token\":\"$2a$10$vNHyaNxiuSrKkZumGb2iyuygVDvd7Ard6UMZW54NoLh6HiKUpVsd2\",\"expiry\":1572203187,\"updated_at\":\"2019-10-13 19:06:27 UTC\"}}"], ["updated_at", "2019-10-13 19:06:27.930129"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "jacob.walter@damore.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:06:27.980921"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 50ms (Views: 0.2ms | ActiveRecord: 0.3ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marco@dare.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marco@dare.net"], ["encrypted_password", "$2a$04$QDId1Al5l0GsAzNOyo6wxORHm47xP/uBsIyPU8fS71URx7g9lJv6e"], ["confirmed_at", "2019-10-13 19:06:27.988948"], ["name", "Trina Forest"], ["email", "marco@dare.net"], ["created_at", "2019-10-13 19:06:27.989981"], ["updated_at", "2019-10-13 19:06:27.989981"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"marco@dare.net\",\n redirectUrl: \"http://oberbrunner.biz/violet\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "marco@dare.net"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0c71300d68a2576eb5ccde6f80601961662a4dceee9264176a30359e82b286c4"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "0c71300d68a2576eb5ccde6f80601961662a4dceee9264176a30359e82b286c4"], ["reset_password_sent_at", "2019-10-13 19:06:28.077523"], ["updated_at", "2019-10-13 19:06:28.077825"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (4.8ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 138.7ms Sent mail to marco@dare.net (3.7ms) Date: Sun, 13 Oct 2019 14:06:28 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: marco@dare.net Message-ID: <5da375b435e1c_d2383ff0c742ffd4605fd@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: marco@dare.net provider: email redirect-url: http://oberbrunner.biz/violet client-config: default

Hello marco@dare.net!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 230ms (Views: 0.1ms | ActiveRecord: 0.4ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Foberbrunner.biz%2Fviolet&variables%5Btoken%5D=H3Rqydg6ebtAK2Q5WTp6" for 127.0.0.1 at 2019-10-13 14:06:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://oberbrunner.biz/violet", "token"=>"H3Rqydg6ebtAK2Q5WTp6"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0c71300d68a2576eb5ccde6f80601961662a4dceee9264176a30359e82b286c4"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9Y8z3B6srMfUjSPk7_yESw\":{\"token\":\"$2a$10$gzgFGLgFyV.CA1HstU/.yuTkntRhGx9HwHIwkkoFIwOGy7f48uFRS\",\"expiry\":1572203188}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:28.274030"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://oberbrunner.biz/violet?access-token=BWaPwayk9-a3Ji8L_wtmAg&client=9Y8z3B6srMfUjSPk7_yESw&client_id=9Y8z3B6srMfUjSPk7_yESw&config=&expiry=1572203188&reset_password=true&token=BWaPwayk9-a3Ji8L_wtmAg&uid=marco%40dare.net Completed 302 Found in 51ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://padbergwunsch.com/brendon.gutkowski\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"kaye.yundt@padberg.io\"\n name: \"Ethan Walter\"\n password: \"XfRuYeL8\"\n passwordConfirmation: \"XfRuYeL8\"\n confirmSuccessUrl: \"http://gislason.name/tyson\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kaye.yundt@padberg.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kaye.yundt@padberg.io"], ["encrypted_password", "$2a$04$uv4EhpUfo11L.xAJyHN1fO8aErsOxe1EmDLlkEVG52FdjCRUexf8."], ["confirmation_token", "FWn4ZpWnim3z75GEkHfC"], ["confirmation_sent_at", "2019-10-13 19:06:28.286464"], ["name", "Ethan Walter"], ["email", "kaye.yundt@padberg.io"], ["created_at", "2019-10-13 19:06:28.286364"], ["updated_at", "2019-10-13 19:06:28.286364"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.7ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.6ms Sent mail to kaye.yundt@padberg.io (1.1ms) Date: Sun, 13 Oct 2019 14:06:28 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: kaye.yundt@padberg.io Message-ID: <5da375b447381_d2383ff0c742ffd4606df@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://gislason.name/tyson

Welcome kaye.yundt@padberg.io!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 10ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fgislason.name%2Ftyson&variables%5Btoken%5D=FWn4ZpWnim3z75GEkHfC" for 127.0.0.1 at 2019-10-13 14:06:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://gislason.name/tyson", "token"=>"FWn4ZpWnim3z75GEkHfC"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "FWn4ZpWnim3z75GEkHfC"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:06:28.299470"], ["updated_at", "2019-10-13 19:06:28.300564"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://gislason.name/tyson?account_confirmation_success=true Completed 302 Found in 9ms (ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Sandy Pollich\"\n password: \"RrMwKkM9sD\"\n passwordConfirmation: \"RrMwKkM9sD\"\n confirmSuccessUrl: \"http://reichertmacejkovic.name/wade_roob\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) SELECT COUNT(*) FROM "users"  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brice.kub@mitchell.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "brice.kub@mitchell.org"], ["encrypted_password", "$2a$04$XOVIDQTCVPDNl1XjDuXyK.gAGdplZVLEpqYch7jZp151b3D5ibbHu"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:28.320696"], ["name", "Candace Spencer"], ["email", "brice.kub@mitchell.org"], ["created_at", "2019-10-13 19:06:28.321682"], ["updated_at", "2019-10-13 19:06:28.321682"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OeVSMWoqcBLlmOY1rZkJ1Q\":{\"token\":\"$2a$10$SdICmkMf5ZZgm7DfINb9P.o3Gk8ZfY1vRyegTYOSsR8sVB4LikDyC\",\"expiry\":1572203188,\"updated_at\":\"2019-10-13 19:06:28 UTC\"}}"], ["updated_at", "2019-10-13 19:06:28.378831"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "brice.kub@mitchell.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$1tf9cZHfl4KbZvPTZPuztud79eCejK09PpZNhP5624nUgpkvk6ZVq"], ["updated_at", "2019-10-13 19:06:28.432251"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:28.433779"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arturo@greenholt.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "arturo@greenholt.info"], ["encrypted_password", "$2a$04$SyKAntTqXFOpbq2tU/qTze0qS.HN.k07zIIl2gmxd5WV7IS3JLT/W"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:28.438207"], ["name", "Lina Ginster"], ["email", "arturo@greenholt.info"], ["created_at", "2019-10-13 19:06:28.438991"], ["updated_at", "2019-10-13 19:06:28.438991"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"v0ZrkTH4FqLUDzytSzYjgQ\":{\"token\":\"$2a$10$TQy7rszGRjaTfv9jEamsAOWnL0c2iI7B6kprQV7wyk3Qp1MjJhjPe\",\"expiry\":1572203188,\"updated_at\":\"2019-10-13 19:06:28 UTC\"}}"], ["updated_at", "2019-10-13 19:06:28.489212"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "arturo@greenholt.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$/LwbKRyQXHUXZF2/YsccJ.RNNRycIHDNsaGfbNyWe1cGmN1ELZLOu"], ["updated_at", "2019-10-13 19:06:28.542816"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:28.543864"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lesia_gibson@stark.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lesia_gibson@stark.io"], ["encrypted_password", "$2a$04$.KyaQjguXAlGYlfYU5TdsOUF0pI7nRVAwBM8nX7SPAMp0LATN5JUe"], ["confirmed_at", "2019-10-13 19:06:28.549405"], ["name", "Zoltan Pepper"], ["email", "lesia_gibson@stark.io"], ["created_at", "2019-10-13 19:06:28.550049"], ["updated_at", "2019-10-13 19:06:28.550049"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZKP8uDzjeKS1o-QW7DH8hg\":{\"token\":\"$2a$10$0qxJ4GcuxLfVlHEc6uiKMeYJLcE5y2VU03DW.QtERRu6Lw.zuTCyS\",\"expiry\":1572203188,\"updated_at\":\"2019-10-13 19:06:28 UTC\"}}"], ["updated_at", "2019-10-13 19:06:28.598161"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lesia_gibson@stark.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carmelo@bartonwilderman.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "carmelo@bartonwilderman.io"], ["encrypted_password", "$2a$04$.ixdu0AMm.O9oyOpCURLKe.eNVlktJLYFPhcCsgnVUQ46hdV58dle"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:28.657249"], ["name", "Wilma Leggrowbach"], ["email", "carmelo@bartonwilderman.io"], ["created_at", "2019-10-13 19:06:28.657939"], ["updated_at", "2019-10-13 19:06:28.657939"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"w3G-mY3vjGRywBl4ht6cTQ\":{\"token\":\"$2a$10$ruRbSONXx7kUm886fCpoD.GmWnYqUmCnCM9lV545H4To8Qsx9BraC\",\"expiry\":1572203188,\"updated_at\":\"2019-10-13 19:06:28 UTC\"}}"], ["updated_at", "2019-10-13 19:06:28.706609"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "carmelo@bartonwilderman.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$97HN0v4Crk40.8PTUyqifOnIH1Nu/YHjDMgLhmUixb4AmloCnJkhy"], ["updated_at", "2019-10-13 19:06:28.759234"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:28.760350"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "venea@schulist.co"], ["provider", "email"], ["LIMIT", 1]] SQL (1.0ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "venea@schulist.co"], ["encrypted_password", "$2a$04$TnNTp90s9U2e1SCDmKhZoeR4WQcBwQTaJx9ewFDXHFyNHiJGDDpyq"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:28.765478"], ["name", "Robin Banks"], ["email", "venea@schulist.co"], ["created_at", "2019-10-13 19:06:28.766882"], ["updated_at", "2019-10-13 19:06:28.766882"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"RyJh5Mx6naiz0RZ7_VZttg\":{\"token\":\"$2a$10$WG559gaKj7gKFpTAAz1Hc.fBv4Kb1pIpnhmva6BsP6ryu9tH0r5.2\",\"expiry\":1572203188,\"updated_at\":\"2019-10-13 19:06:28 UTC\"}}"], ["updated_at", "2019-10-13 19:06:28.819940"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "venea@schulist.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$yOrMkAi3jpoTmqVmossOpe53kk5ew.AldhWdMUDV3SQ7e0hosq5wS"], ["updated_at", "2019-10-13 19:06:28.870792"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:28.871849"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "irvin@rath.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "irvin@rath.io"], ["encrypted_password", "$2a$04$sxF3gVUIbqUqswMURuXKkOFwX454de799LdaOBWuYo68AnSrdwdgW"], ["confirmed_at", "2019-10-13 19:06:28.878359"], ["name", "Lisa Neucar"], ["email", "irvin@rath.io"], ["created_at", "2019-10-13 19:06:28.879176"], ["updated_at", "2019-10-13 19:06:28.879176"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZJ5lxvN_FNMfK9Aqdl2xiA\":{\"token\":\"$2a$10$3eSRLpH4knKKjb0SdwSA3.jumfKsyjDGS6ZzGWFv3DmOzul8lBMbG\",\"expiry\":1572203188,\"updated_at\":\"2019-10-13 19:06:28 UTC\"}}"], ["updated_at", "2019-10-13 19:06:28.930867"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "irvin@rath.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$TbfQYykCFkiCZITYOaEuKOxi9YVlFP/rtcB3ofQR4XpBvWTJjCXAa"], ["updated_at", "2019-10-13 19:06:28.983157"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rigoberto@goldner.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rigoberto@goldner.co"], ["encrypted_password", "$2a$04$bsrbCd27i4HzwRBB0YL.ZuqFLGz5m/bQpMFifVBcco673so2v3DfS"], ["confirmed_at", "2019-10-13 19:06:28.989380"], ["name", "Dan Druff"], ["email", "rigoberto@goldner.co"], ["created_at", "2019-10-13 19:06:28.990018"], ["updated_at", "2019-10-13 19:06:28.990018"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jesus.stokes@friesen.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jesus.stokes@friesen.biz"], ["encrypted_password", "$2a$04$NvyRhVAGrfDgp3DfrTa.S.t8zPE5Av33gPlPsb8nqLq128pFy6rfu"], ["confirmed_at", "2019-10-13 19:06:28.995723"], ["name", "Owen Cash"], ["email", "jesus.stokes@friesen.biz"], ["created_at", "2019-10-13 19:06:28.996525"], ["updated_at", "2019-10-13 19:06:28.996525"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d91be44aeb70c9a7d1fdbe42d4885aef4ac5daf30b3cab40a074f6315296ae1d"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "d91be44aeb70c9a7d1fdbe42d4885aef4ac5daf30b3cab40a074f6315296ae1d"], ["reset_password_sent_at", "2019-10-13 19:06:28.998289"], ["updated_at", "2019-10-13 19:06:28.998565"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22Mbf6Bkx4-VaLZhDre-4D%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"Mbf6Bkx4-VaLZhDre-4D\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d91be44aeb70c9a7d1fdbe42d4885aef4ac5daf30b3cab40a074f6315296ae1d"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Om1AC-Fwyk2fndW6JLa4xA\":{\"token\":\"$2a$10$wBBkbCrm8Anb1N.ZmoZ1A.Pm.TjnlrwU8dsboh1L1ruKLknqncSl6\",\"expiry\":1572203189}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:29.057790"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Om1AC-Fwyk2fndW6JLa4xA\":{\"token\":\"$2a$10$wBBkbCrm8Anb1N.ZmoZ1A.Pm.TjnlrwU8dsboh1L1ruKLknqncSl6\",\"expiry\":1572203189},\"CeRQhm-bcA5wr2dM34es1Q\":{\"token\":\"$2a$10$0ba07.hUn0KfCpcxFcO.yeyrh7iS4seTdciqfHQFZkfaGObopFzdW\",\"expiry\":1572203189,\"updated_at\":\"2019-10-13 19:06:29 UTC\"}}"], ["updated_at", "2019-10-13 19:06:29.104550"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 104ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "graciela_toy@schmidt.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "graciela_toy@schmidt.info"], ["encrypted_password", "$2a$04$FyTpWUNKdg5H6jbCUnx7MOJz5TAfAZqEe/ddyHidxBwWb526U0LWa"], ["confirmed_at", "2019-10-13 19:06:29.108789"], ["name", "Jim Nasium"], ["email", "graciela_toy@schmidt.info"], ["created_at", "2019-10-13 19:06:29.109577"], ["updated_at", "2019-10-13 19:06:29.109577"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0bf405128f05974a043e468a2cf1a5603e86768bcba1778e6e67267ca63b49fb"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "0bf405128f05974a043e468a2cf1a5603e86768bcba1778e6e67267ca63b49fb"], ["reset_password_sent_at", "2019-10-13 19:06:29.110922"], ["updated_at", "2019-10-13 19:06:29.111144"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22DjKYC--2QnZsiNmJYdJ3%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"DjKYC--2QnZsiNmJYdJ3\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0bf405128f05974a043e468a2cf1a5603e86768bcba1778e6e67267ca63b49fb"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Q2h-GPpXK76wdnuBRd3hUQ\":{\"token\":\"$2a$10$lKvIn54jEDsk6bZdM5jgxeARiUVJyj/gzHk2s9BO5GzzUByQUHCkC\",\"expiry\":1572203189}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:29.164061"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=vCp_pEusMdLH2lcG4KQfDQ&client=Q2h-GPpXK76wdnuBRd3hUQ&client_id=Q2h-GPpXK76wdnuBRd3hUQ&config=&expiry=1572203189&reset_password=true&token=vCp_pEusMdLH2lcG4KQfDQ&uid=graciela_toy%40schmidt.info Completed 302 Found in 53ms (ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hanh_becker@stroman.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hanh_becker@stroman.com"], ["encrypted_password", "$2a$04$iuEXd10I6Zz8ilQVwc2u2.5JmR/l46PCsMpvKdsv87ylksbUx1Gba"], ["confirmed_at", "2019-10-13 09:06:29"], ["name", "Chanda Lear"], ["email", "hanh_becker@stroman.com"], ["created_at", "2019-10-13 09:06:29"], ["updated_at", "2019-10-13 09:06:29"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a9ddf7bf299d6bb5e66bd02ae8b3b35b735ea31050c56316fb51b1b74d9b976f"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "a9ddf7bf299d6bb5e66bd02ae8b3b35b735ea31050c56316fb51b1b74d9b976f"], ["reset_password_sent_at", "2019-10-13 09:06:29"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22RZN2dgDEr4sapPVJA6EQ%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"RZN2dgDEr4sapPVJA6EQ\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a9ddf7bf299d6bb5e66bd02ae8b3b35b735ea31050c56316fb51b1b74d9b976f"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "albert@wunschwill.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "albert@wunschwill.com"], ["encrypted_password", "$2a$04$4DiUr.v4.2vKFOaCwkPY6.m.tLfAe8v7KLzoEfPKR.5MAIZJlTovq"], ["confirmed_at", "2019-10-13 19:06:29.183476"], ["name", "Bo Nessround"], ["email", "albert@wunschwill.com"], ["created_at", "2019-10-13 19:06:29.185592"], ["updated_at", "2019-10-13 19:06:29.185592"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4c4d5c0bcdef2482094995bfc619b1ef5b1ca56b8a693a20416414ba81d49d50"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "4c4d5c0bcdef2482094995bfc619b1ef5b1ca56b8a693a20416414ba81d49d50"], ["reset_password_sent_at", "2019-10-13 19:06:29.187214"], ["updated_at", "2019-10-13 19:06:29.187475"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22zf3oWXS5EFq3DsoQ7Dyyinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"zf3oWXS5EFq3DsoQ7Dyyinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5e3390ea062cbeee6fb231e39c4d2f902e87524747ed6f95d1acba5727233430"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "laticia@bogisich.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "laticia@bogisich.info"], ["encrypted_password", "$2a$04$DUM94pLAYZMHo/jCpoDeheLSKb2935IrzCw/Bqfmx6BiAKL6AvM0e"], ["confirmation_token", "yxc-iABSsWijjy_siYPG"], ["confirmation_sent_at", "2019-10-13 19:06:29.195828"], ["name", "Reid Enright"], ["email", "laticia@bogisich.info"], ["created_at", "2019-10-13 19:06:29.195722"], ["updated_at", "2019-10-13 19:06:29.195722"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (1.6ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 5.6ms Sent mail to laticia@bogisich.info (1.3ms) Date: Sun, 13 Oct 2019 14:06:29 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: laticia@bogisich.info Message-ID: <5da375b531b65_d2383ff0c742ffd46073b@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome laticia@bogisich.info!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22yxc-iABSsWijjy_siYPG%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fwhitehamill.net%2Fkayla%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"yxc-iABSsWijjy_siYPG\"\n redirectUrl: \"http://whitehamill.net/kayla\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "yxc-iABSsWijjy_siYPG"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:06:29.208095"], ["updated_at", "2019-10-13 19:06:29.208463"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://whitehamill.net/kayla?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "harry@king.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "harry@king.org"], ["encrypted_password", "$2a$04$KKKwP9DCcqVj8/uBW44GleTPS1bTYhAbxy4IldSiTcAqCUB/FQODu"], ["confirmation_token", "6qHt5DL9JNjBxA1HjqXf"], ["confirmation_sent_at", "2019-10-13 19:06:29.215185"], ["name", "Emerald Stone"], ["email", "harry@king.org"], ["created_at", "2019-10-13 19:06:29.215081"], ["updated_at", "2019-10-13 19:06:29.215081"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%226qHt5DL9JNjBxA1HjqXf-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fschinnerwuckert.io%2Fwhitney_hahn%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"6qHt5DL9JNjBxA1HjqXf-invalid\"\n redirectUrl: \"http://schinnerwuckert.io/whitney_hahn\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "6qHt5DL9JNjBxA1HjqXf-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "1adb3f02f95fab1896350f943d96a28085e515414b1b05cfaec61a246c93b651"], ["LIMIT", 1]] Completed 200 OK in 93ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "magen@zboncak.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "magen@zboncak.name"], ["encrypted_password", "$2a$04$EYI5q0mlg.eRw5kyeicWfOjsH2luSbn9wD.jX2WUVa48uGEr0x.yy"], ["confirmed_at", "2019-10-13 19:06:29.331853"], ["name", "Cam Payne"], ["email", "magen@zboncak.name"], ["created_at", "2019-10-13 19:06:29.334749"], ["updated_at", "2019-10-13 19:06:29.334749"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"wlDyvwYNrXcCMxYwZMJubg\":{\"token\":\"$2a$10$/1WCzZB0L9m6rf1F2lrzhu7fOxfIJcvnSzI.7EeixmHup8GyXU5vS\",\"expiry\":1572203189,\"updated_at\":\"2019-10-13 19:06:29 UTC\"}}"], ["updated_at", "2019-10-13 19:06:29.394303"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:06:29 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "magen@zboncak.name"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jamar_kiehn@haag.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jamar_kiehn@haag.name"], ["encrypted_password", "$2a$04$WHjcsPPOdZg.xO2SUMEl0Okhu2TVMVME7JI4f29kVRW36iFJ2.tNa"], ["confirmed_at", "2019-10-13 19:06:29.457566"], ["name", "Dee Liver"], ["email", "jamar_kiehn@haag.name"], ["created_at", "2019-10-13 19:06:29.458312"], ["updated_at", "2019-10-13 19:06:29.458312"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:06:29 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lavonia_kunde@glover.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lavonia_kunde@glover.biz"], ["encrypted_password", "$2a$04$bY9brvUh2FYAmigFCXjKXu6Hn49/RJLjxRjacUUBH2HLt/GkxqUz2"], ["confirmed_at", "2019-10-13 19:06:32.733397"], ["name", "Penny Nichols"], ["email", "lavonia_kunde@glover.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:32.736394"], ["updated_at", "2019-10-13 19:06:32.736394"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lavonia_kunde@glover.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lavonia_kunde@glover.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0aFGsZiLzoLsvWOmfSRG9w\":{\"token\":\"$2a$12$yHOiDYAxI8M5Youmjb4.lers6lQ0npcqEdGv5KMz8ePtSIGqbZd22\",\"expiry\":1572203192,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:32.768-05:00\"}}"], ["updated_at", "2019-10-13 19:06:32.959716"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:06:32.965080"], ["last_sign_in_at", "2019-10-13 19:06:32.965080"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:06:32.965529"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 214ms (Views: 0.2ms | ActiveRecord: 0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "isiah@croninkeler.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "isiah@croninkeler.com"], ["encrypted_password", "$2a$04$cGZlTjg1BDEsL0JwWGMAdORF2BMkb39duYscPFC2VC4lbUmqVvqDi"], ["confirmed_at", "2019-10-13 19:06:32.973967"], ["name", "Biff Wellington"], ["email", "isiah@croninkeler.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:32.974800"], ["updated_at", "2019-10-13 19:06:32.974800"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"isiah@croninkeler.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "isiah@croninkeler.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-10-13 19:06:32.980174"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marc@turcotte.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "marc@turcotte.info"], ["encrypted_password", "$2a$04$g3dwt2UfB40sgj1gbRPGO.7Zk/0r0C1WgpzuxqppwXKD0JJpZT1BG"], ["confirmation_token", "VwYhiZGLWELztHEyytT_"], ["confirmation_sent_at", "2019-10-13 19:06:32.985736"], ["name", "Marsha Dimes"], ["email", "marc@turcotte.info"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:32.985640"], ["updated_at", "2019-10-13 19:06:32.985640"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"marc@turcotte.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marc@turcotte.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "verona@kihn.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "verona@kihn.info"], ["encrypted_password", "$2a$04$a42ccrjNPYgAgLo2P7w6TODeLwNPC97JJH/dp2ipTLDBUd1c.XvzO"], ["confirmed_at", "2019-10-13 19:06:32.995576"], ["locked_at", "2019-10-13 19:06:32.995611"], ["name", "Xavier Money"], ["email", "verona@kihn.info"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:32.998078"], ["updated_at", "2019-10-13 19:06:32.998078"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"verona@kihn.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "verona@kihn.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "christinia@haag.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "christinia@haag.biz"], ["encrypted_password", "$2a$04$zVxWI9gciX6j9WTrhj.lluLr5OvuQTQmK8n06xnPy7L9fV46F2oUe"], ["confirmed_at", "2019-10-13 19:06:33.009140"], ["name", "Taylor Maid"], ["email", "christinia@haag.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:33.010785"], ["updated_at", "2019-10-13 19:06:33.010785"], ["auth_available", "f"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"christinia@haag.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "christinia@haag.biz"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "shauna@ledner.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shauna@ledner.com"], ["encrypted_password", "$2a$04$t6y.voEQb2HisFv6zu/W6.0ZDmJ92yi/4BJkDinuts/UcwEFAQpjC"], ["confirmed_at", "2019-10-13 19:06:33.056588"], ["email", "shauna@ledner.com"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:33.057984"], ["updated_at", "2019-10-13 19:06:33.057984"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"shauna@ledner.com\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "shauna@ledner.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"b5pvOwudoOMaHE9EqsdSDw\":{\"token\":\"$2a$12$aJr9msuTyAVnGjEfHXCGcuaJUTxlxCQspT05DuhfnkvMM1vadUnNG\",\"expiry\":1572203193,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:33.064-05:00\"}}"], ["updated_at", "2019-10-13 19:06:33.262315"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 204ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eugenie@stamm.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "eugenie@stamm.net"], ["encrypted_password", "$2a$04$88JYz.9zfW0q0Ma/.s8geuff3o5t8wFXAzsrMDZXoXc3djNt80SSq"], ["confirmed_at", "2019-10-13 19:06:33.268300"], ["name", "Renee Sance"], ["email", "eugenie@stamm.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:33.269645"], ["updated_at", "2019-10-13 19:06:33.269645"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Yguv9ulWrTqoFNRaisQ1sQ\":{\"token\":\"$2a$12$9jRm1vBReCmKbjjZIDL9ne2LssltvITboxNfByQpH50uNtziP/mIi\",\"expiry\":1572203193,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:33.270-05:00\"}}"], ["updated_at", "2019-10-13 19:06:33.463227"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "eugenie@stamm.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 19:06:33.655110"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "devin_ortiz@kerluketurcotte.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "devin_ortiz@kerluketurcotte.co"], ["encrypted_password", "$2a$04$nb..RaYQEuL9dBgWorKVY.WjBsvWfbHPhg6jEUtVi18sBYfEyOMLK"], ["confirmed_at", "2019-10-13 19:06:33.663090"], ["name", "Barry Shmelly"], ["email", "devin_ortiz@kerluketurcotte.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:33.664358"], ["updated_at", "2019-10-13 19:06:33.664358"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "kelley.gleichner@donnelly.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kelley.gleichner@donnelly.org"], ["encrypted_password", "$2a$04$oI/Ex6qytiPD300swgExZuytoGFgdc3OYIaxuQgZ5SQ1wGhPzDfqS"], ["confirmed_at", "2019-10-13 19:06:33.668566"], ["email", "kelley.gleichner@donnelly.org"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:33.669713"], ["updated_at", "2019-10-13 19:06:33.669713"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"CfXTSrHLIhWjbk2SyMZnWw\":{\"token\":\"$2a$12$otMAx6ViqdXGmSZpZtRRl.grhhMsWZwfx8EzibrB0DMYJd1qH1Mci\",\"expiry\":1572203193,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:33.670-05:00\"}}"], ["updated_at", "2019-10-13 19:06:33.866468"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "kelley.gleichner@donnelly.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 19:06:34.058024"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.3ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "edwina@marks.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "edwina@marks.net"], ["encrypted_password", "$2a$04$mfCdhcSZa1eNaaEiGhqJt.9iBJenTrD0zLvpxn4CnRK5y8jfYAgmG"], ["confirmed_at", "2019-10-13 19:06:34.066797"], ["name", "Frank Furter"], ["email", "edwina@marks.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:34.067682"], ["updated_at", "2019-10-13 19:06:34.067682"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"edwina@marks.net\",\n redirectUrl: \"http://ortiz.info/cherelle.kaulke\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE (uid = 'edwina@marks.net' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b91b40303be147deb4cf53b8a0034a9340e4038b732bf2b76588ff22364db0be"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b91b40303be147deb4cf53b8a0034a9340e4038b732bf2b76588ff22364db0be"], ["reset_password_sent_at", "2019-10-13 19:06:34.159309"], ["updated_at", "2019-10-13 19:06:34.159574"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (1.8ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 121.8ms Sent mail to edwina@marks.net (4.7ms) Date: Sun, 13 Oct 2019 14:06:34 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: edwina@marks.net Message-ID: <5da375ba45cab_d2503fed9382ffd090862@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: edwina@marks.net provider: email redirect-url: http://ortiz.info/cherelle.kaulke client-config: default

Hello edwina@marks.net!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 217ms (Views: 0.1ms | ActiveRecord: 0.6ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fortiz.info%2Fcherelle.kaulke&variables%5Btoken%5D=jmRTovujuGSDWhhyJpx-" for 127.0.0.1 at 2019-10-13 14:06:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://ortiz.info/cherelle.kaulke", "token"=>"jmRTovujuGSDWhhyJpx-"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b91b40303be147deb4cf53b8a0034a9340e4038b732bf2b76588ff22364db0be"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LuxOignc0pNEx7eoeDF4sw\":{\"token\":\"$2a$12$tT4MusYR0RrhmP6wW5cnBuoofGB987sGc8QZ.P9ouiqbWBuApIoU.\",\"expiry\":1572203194}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:34.477666"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://ortiz.info/cherelle.kaulke?access-token=1572203194&client=LuxOignc0pNEx7eoeDF4sw&client_id=LuxOignc0pNEx7eoeDF4sw&config=&expiry=1572203194&reset_password=true&token=1572203194&uid=edwina%40marks.net Completed 302 Found in 189ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://abbotttrantow.io/sean\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE (uid = 'nothere@gmail.com' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"willia@goldner.co\"\n name: \"Eulalia Reinger\"\n password: \"U6p4J2z4LhY\"\n passwordConfirmation: \"U6p4J2z4LhY\"\n confirmSuccessUrl: \"http://harrismccullough.info/raymon_langworth\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "willia@goldner.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "willia@goldner.co"], ["encrypted_password", "$2a$04$pVK3C8H7AN/AmBl3VjjVFO4BX62nMqnw1rJBNb5SBHJ9CKwuZxQbW"], ["confirmation_token", "fWKNhA7Ff71TAsnyzHJx"], ["confirmation_sent_at", "2019-10-13 19:06:34.489651"], ["name", "Eulalia Reinger"], ["email", "willia@goldner.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:34.489558"], ["updated_at", "2019-10-13 19:06:34.489558"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.8ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.1ms Sent mail to willia@goldner.co (1.0ms) Date: Sun, 13 Oct 2019 14:06:34 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: willia@goldner.co Message-ID: <5da375ba78cc5_d2503fed9382ffd090970@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://harrismccullough.info/raymon_langworth

Welcome willia@goldner.co!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 10ms (Views: 0.1ms | ActiveRecord: 0.6ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fharrismccullough.info%2Fraymon_langworth&variables%5Btoken%5D=fWKNhA7Ff71TAsnyzHJx" for 127.0.0.1 at 2019-10-13 14:06:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://harrismccullough.info/raymon_langworth", "token"=>"fWKNhA7Ff71TAsnyzHJx"}} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "fWKNhA7Ff71TAsnyzHJx"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:06:34.504333"], ["updated_at", "2019-10-13 19:06:34.504708"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://harrismccullough.info/raymon_langworth?account_confirmation_success=true Completed 302 Found in 8ms (ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Ena Predovic\"\n password: \"2OxOy83Tj\"\n passwordConfirmation: \"2OxOy83Tj\"\n confirmSuccessUrl: \"http://kautzer.info/alfonso\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cory@jacobsbraun.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cory@jacobsbraun.io"], ["encrypted_password", "$2a$04$L8/sJlCzpeZMlLUMzW/HGu.GJJNzmTDI4VrfXOZPeBVyzxe6iDDEm"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:34.530412"], ["name", "Nida Lyte"], ["email", "cory@jacobsbraun.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:34.532551"], ["updated_at", "2019-10-13 19:06:34.532551"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hGXN-c3TYFjglgYTplpdLw\":{\"token\":\"$2a$12$YJVW7FntLoZy8YRgDmo0E.AZpk9QHa2rGTDeg2y/0pWZN7QHJL0Dq\",\"expiry\":1572203194,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:34.534-05:00\"}}"], ["updated_at", "2019-10-13 19:06:34.736874"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "cory@jacobsbraun.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$d.HM7fnHHjMoH58ZXdHww.oBpA684IuO1vbfN5FVvzDaUhA4lQUBq"], ["updated_at", "2019-10-13 19:06:34.927352"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:34.930077"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 192ms (Views: 0.1ms | ActiveRecord: 0.7ms) User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.5ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eduardo@aufderhar.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "eduardo@aufderhar.biz"], ["encrypted_password", "$2a$04$Qxj6cBiVL7kWzxcU8WOQOOfVHap4QZkRQocd8ZVeNosGhyF7iv12C"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:34.938034"], ["name", "Jack Tupp"], ["email", "eduardo@aufderhar.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:34.939763"], ["updated_at", "2019-10-13 19:06:34.939763"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7u_gT1xe_5U-Q2NcxWXvgA\":{\"token\":\"$2a$12$jf1VarpNFr2ChPpUW6m4xOb2uojCKoxNSHGiQgmQPeDdYNw/1udKG\",\"expiry\":1572203194,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:34.940-05:00\"}}"], ["updated_at", "2019-10-13 19:06:35.136446"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "eduardo@aufderhar.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Pg2bf3WFLDs1Z3V4wE.09uhiRlAvrUuuyJIfiXC4AeghCdNoQWQeG"], ["updated_at", "2019-10-13 19:06:35.332389"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:35.334584"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 198ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "melvin@kiehnsmitham.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "melvin@kiehnsmitham.org"], ["encrypted_password", "$2a$04$PPHASpjlXGWfd/vdFTNZA.YjY6A3iqjyMJs7fR79iUchXXc5uLaxC"], ["confirmed_at", "2019-10-13 19:06:35.343594"], ["name", "Andy Friese"], ["email", "melvin@kiehnsmitham.org"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:35.344781"], ["updated_at", "2019-10-13 19:06:35.344781"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"AQ4cgJeLS-8jlL15k-B4qA\":{\"token\":\"$2a$12$7In.PCIATMNbVeLBrWExbeo6se6VaZae8xr/6wCKJO6UdzFA.VWi6\",\"expiry\":1572203195,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:35.346-05:00\"}}"], ["updated_at", "2019-10-13 19:06:35.540926"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "melvin@kiehnsmitham.org"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 194ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fidel.mueller@okeefenader.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "fidel.mueller@okeefenader.co"], ["encrypted_password", "$2a$04$l971.nJ4nC8qrN6qVRhcUONxhCLOdgDqP1vc/6VOmM6npRnl31NbK"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:35.743653"], ["name", "P. Brain"], ["email", "fidel.mueller@okeefenader.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:35.744809"], ["updated_at", "2019-10-13 19:06:35.744809"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Z6-WUCQx11DYaS3ZzMceAA\":{\"token\":\"$2a$12$DIESfj.ho7LS.btEBL/rtOEMDHDvbOI.zX9dAj700q.aKPsoOoEom\",\"expiry\":1572203195,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:35.746-05:00\"}}"], ["updated_at", "2019-10-13 19:06:35.940368"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "fidel.mueller@okeefenader.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$StJlVWVrtD1OtWo/INNOC.xL5ngzMLM/wtAS0irYZ2xk19XF3We2q"], ["updated_at", "2019-10-13 19:06:36.137526"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:36.138933"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 197ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "juan_daniel@ledner.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "juan_daniel@ledner.net"], ["encrypted_password", "$2a$04$c6DwBO5FLbLHm3loPZ0.v.3bqmkUPSB7PPIYhfStejG4/1LFfjQe2"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:36.145579"], ["name", "Carrie Dababi"], ["email", "juan_daniel@ledner.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:36.146466"], ["updated_at", "2019-10-13 19:06:36.146466"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"HWeUWi5G1DdW6i1vBCOl1w\":{\"token\":\"$2a$12$/asKyeergIwVvtn1TU6/F.P4YHt9bOTMkDtBrXAi2EWt1hzszSao2\",\"expiry\":1572203196,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:36.147-05:00\"}}"], ["updated_at", "2019-10-13 19:06:36.340652"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "juan_daniel@ledner.net"], ["LIMIT", 1]]  (0.2ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$yur05Jg8UR.lUWWDAeMcsepmuwcx9liGGghrtRTcP5d2OuzKGqEV2"], ["updated_at", "2019-10-13 19:06:36.533472"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:36.535484"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 195ms (Views: 0.2ms | ActiveRecord: 1.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sebastian_crona@mckenzie.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sebastian_crona@mckenzie.info"], ["encrypted_password", "$2a$04$Yuws1K/NmXlKjwKCFq4Ab.LhaE6zPovM2BOAnBegnCMY9wlMuabii"], ["confirmed_at", "2019-10-13 19:06:36.542575"], ["name", "Woody Forrest"], ["email", "sebastian_crona@mckenzie.info"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:36.543298"], ["updated_at", "2019-10-13 19:06:36.543298"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"g_3v9wQnfcViOqAT3p4iAg\":{\"token\":\"$2a$12$sGpNDWlF45mrobM1wJzxLea2zEfdFSQ1ZsLP9h35LvlGOwuGY0MfK\",\"expiry\":1572203196,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:36.544-05:00\"}}"], ["updated_at", "2019-10-13 19:06:36.737036"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sebastian_crona@mckenzie.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$1mIxuxHCivFA7hHzWSeKquH0w8aAghvWXfh0aTJ.1AtOv7tUWstAS"], ["updated_at", "2019-10-13 19:06:36.928228"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 193ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "antoine@mclaughlinshields.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "antoine@mclaughlinshields.co"], ["encrypted_password", "$2a$04$ReojxfmenCc8PLTfVoy1E.xMXSmW3MUiApcwAVuDUNBxk/TGI7Z82"], ["confirmed_at", "2019-10-13 19:06:36.937573"], ["name", "Al Luminum"], ["email", "antoine@mclaughlinshields.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:36.938449"], ["updated_at", "2019-10-13 19:06:36.938449"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "talia.abbott@smith.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "talia.abbott@smith.name"], ["encrypted_password", "$2a$04$ZN5VerdTi18E3kahhAwoG.PEFkOi4cItMKHflLXfH4MRabEccWTa2"], ["confirmed_at", "2019-10-13 19:06:36.945473"], ["name", "Kareem O'Weet"], ["email", "talia.abbott@smith.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:36.946474"], ["updated_at", "2019-10-13 19:06:36.946474"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4cb5e644d1c459951da37ac1798100b2bbcef61a0e756a4599f47284c7fde2e1"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "4cb5e644d1c459951da37ac1798100b2bbcef61a0e756a4599f47284c7fde2e1"], ["reset_password_sent_at", "2019-10-13 19:06:36.948311"], ["updated_at", "2019-10-13 19:06:36.948518"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22fcdzL8J6Xhu68x5zhyXa%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"fcdzL8J6Xhu68x5zhyXa\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4cb5e644d1c459951da37ac1798100b2bbcef61a0e756a4599f47284c7fde2e1"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7uE_HhuXtKwnzh_nYWI2Hw\":{\"token\":\"$2a$12$ma3ZsQqQNSKijmpccnT48.zFpqQ8z9ouBu07cP2bBuhpBcZXxkg9u\",\"expiry\":1572203196}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:37.150526"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7uE_HhuXtKwnzh_nYWI2Hw\":{\"token\":\"$2a$12$ma3ZsQqQNSKijmpccnT48.zFpqQ8z9ouBu07cP2bBuhpBcZXxkg9u\",\"expiry\":1572203196},\"W0Bm3SWchgA3wlk66XQ6lw\":{\"token\":\"$2a$12$0z3pv6rPgud0dRHhOeCl6eO5vPh8jTV2i8jgX0x2aDb4LcnxSIJ/a\",\"expiry\":1572203197,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:37.151-05:00\"}}"], ["updated_at", "2019-10-13 19:06:37.340179"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 391ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "krystyna.hagenes@walker.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "krystyna.hagenes@walker.name"], ["encrypted_password", "$2a$04$gXokr3GcyIH7LgH9m5m5ZebbQjyF.nn/piB2QMkztgt0TuWKNRvRm"], ["confirmed_at", "2019-10-13 19:06:37.346563"], ["name", "Joy Kil"], ["email", "krystyna.hagenes@walker.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:37.348465"], ["updated_at", "2019-10-13 19:06:37.348465"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b14adfbbade12019912865c72d1823d27d781468aac3e969fffe39cd34ce72d7"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b14adfbbade12019912865c72d1823d27d781468aac3e969fffe39cd34ce72d7"], ["reset_password_sent_at", "2019-10-13 19:06:37.376801"], ["updated_at", "2019-10-13 19:06:37.377336"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22Ws2bvhApiDs-A6gsM5YT%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"Ws2bvhApiDs-A6gsM5YT\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b14adfbbade12019912865c72d1823d27d781468aac3e969fffe39cd34ce72d7"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0cmLaBKqPKwyg2d583mDUQ\":{\"token\":\"$2a$12$93O9u2XFDJ2IF3z0HYy9I.wbXxFlinmP1j15THoCptHRJ4qdR/smK\",\"expiry\":1572203197}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:37.577715"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1572203197&client=0cmLaBKqPKwyg2d583mDUQ&client_id=0cmLaBKqPKwyg2d583mDUQ&config=&expiry=1572203197&reset_password=true&token=1572203197&uid=krystyna.hagenes%40walker.name Completed 302 Found in 199ms (ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mui_connelly@ankunding.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mui_connelly@ankunding.co"], ["encrypted_password", "$2a$04$Lmuwk0wCAj.v4swG3iq5HuJfjWQ6bDCGHhNtkrtp09xiEhT7gPf0C"], ["confirmed_at", "2019-10-13 09:06:37"], ["name", "Doug Updegrave"], ["email", "mui_connelly@ankunding.co"], ["tokens", "{}"], ["created_at", "2019-10-13 09:06:37"], ["updated_at", "2019-10-13 09:06:37"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "91db2e12549612e6738caa491e7d9900d3357d963aab1a056e5372bfa5000c72"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "91db2e12549612e6738caa491e7d9900d3357d963aab1a056e5372bfa5000c72"], ["reset_password_sent_at", "2019-10-13 09:06:37"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%229pC46P8czAZfubz9AGAA%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"9pC46P8czAZfubz9AGAA\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "91db2e12549612e6738caa491e7d9900d3357d963aab1a056e5372bfa5000c72"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "beata.boyle@schulist.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "beata.boyle@schulist.io"], ["encrypted_password", "$2a$04$TxWIojwwgRRp8JqK8f1jCukQj31FYGImsS9lY4l3s7Veqp5yHFPEK"], ["confirmed_at", "2019-10-13 19:06:37.592416"], ["name", "Alec Tricity"], ["email", "beata.boyle@schulist.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:37.593311"], ["updated_at", "2019-10-13 19:06:37.593311"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "179ef6250afa301dd094a062aee42046f8e421cd41987058940b7a80a290a9a7"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "179ef6250afa301dd094a062aee42046f8e421cd41987058940b7a80a290a9a7"], ["reset_password_sent_at", "2019-10-13 19:06:37.594862"], ["updated_at", "2019-10-13 19:06:37.595098"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22L1tpyMR1pWoGSeVCR3LYinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"L1tpyMR1pWoGSeVCR3LYinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d95122c338d0818643f0e78cc3fb04ccc8483bf517a94e7203ce0bf75763ecf8"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.3ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "madalyn@stokesjacobson.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "madalyn@stokesjacobson.info"], ["encrypted_password", "$2a$04$Iu4FzK43k/UMWnovdyfRzOc/clvC3t7JBcdtAhVMl.adt/10r4KOS"], ["confirmation_token", "PLkqVyxAy8xvQ4SF-Rou"], ["confirmation_sent_at", "2019-10-13 19:06:37.605518"], ["name", "Joy Rider"], ["email", "madalyn@stokesjacobson.info"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:37.605410"], ["updated_at", "2019-10-13 19:06:37.605410"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.5ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.4ms Sent mail to madalyn@stokesjacobson.info (1.2ms) Date: Sun, 13 Oct 2019 14:06:37 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: madalyn@stokesjacobson.info Message-ID: <5da375bd94abc_d2503fed9382ffd0910f9@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome madalyn@stokesjacobson.info!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22PLkqVyxAy8xvQ4SF-Rou%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fturner.net%2Fsheilah%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"PLkqVyxAy8xvQ4SF-Rou\"\n redirectUrl: \"http://turner.net/sheilah\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "PLkqVyxAy8xvQ4SF-Rou"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:06:37.613085"], ["updated_at", "2019-10-13 19:06:37.613420"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://turner.net/sheilah?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.3ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alexa_schuster@toy.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alexa_schuster@toy.io"], ["encrypted_password", "$2a$04$eePT8LJMW5gZHL1WtAn/ROKWDcA.wLkoNrD1MSJ7KMB34T3vvR3wa"], ["confirmation_token", "osepa8hnWSxSBy6yn7U3"], ["confirmation_sent_at", "2019-10-13 19:06:37.621786"], ["name", "Ty Knotts"], ["email", "alexa_schuster@toy.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:37.621671"], ["updated_at", "2019-10-13 19:06:37.621671"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22osepa8hnWSxSBy6yn7U3-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fmitchell.co%2Fadolfo%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:37 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"osepa8hnWSxSBy6yn7U3-invalid\"\n redirectUrl: \"http://mitchell.co/adolfo\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "osepa8hnWSxSBy6yn7U3-invalid"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "807074a485dc54286557307c85532170edd0eeacb80ed731e42625c13a33dd97"], ["LIMIT", 1]] Completed 200 OK in 96ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dillon.rau@schneider.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dillon.rau@schneider.org"], ["encrypted_password", "$2a$04$G/bolgAlc5kODaOssbTO4Ooee2e8AAu4L.5JdPl7PwPDja4WxJmXq"], ["confirmed_at", "2019-10-13 19:06:37.724321"], ["name", "Mike Raffone"], ["email", "dillon.rau@schneider.org"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:37.725424"], ["updated_at", "2019-10-13 19:06:37.725424"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5hNonYFW6UH3bsJSUG_5CA\":{\"token\":\"$2a$12$c4bLMM6aUznlIo2GFSueb.XYadA4V6B5DZBGpnyQrTnoPml6u/t1O\",\"expiry\":1572203197,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:37.726-05:00\"}}"], ["updated_at", "2019-10-13 19:06:37.918917"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:06:37 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dillon.rau@schneider.org"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 196ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elayne_quigley@morar.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elayne_quigley@morar.org"], ["encrypted_password", "$2a$04$xAvq2LvrfxVH.ECoP8OjL.MMmzpkX0Q7rkjUo5e.g8JLCuoYm5Rk6"], ["confirmed_at", "2019-10-13 19:06:38.123956"], ["name", "Seymour Legg"], ["email", "elayne_quigley@morar.org"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:38.124976"], ["updated_at", "2019-10-13 19:06:38.124976"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:06:38 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mirna_altenwerth@beergraham.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mirna_altenwerth@beergraham.name"], ["encrypted_password", "$2a$04$aXpoddaHWPqwbijcUmDTferIhZdL7n0IFlh8X/HduF4uCE/QC2GAq"], ["confirmed_at", "2019-10-13 19:06:41.512350"], ["name", "Biff Wellington"], ["email", "mirna_altenwerth@beergraham.name"], ["created_at", "2019-10-13 19:06:41.514372"], ["updated_at", "2019-10-13 19:06:41.514372"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"mirna_altenwerth@beergraham.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mirna_altenwerth@beergraham.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"cAdRBQDm_0Gxw5d6nrrSnQ\":{\"token\":\"$2a$10$O0Kt8.MxIp2L31nvb5ov8OIRTISwDejIogGBWbqGdHIwtwUjGUytu\",\"expiry\":1572203201,\"updated_at\":\"2019-10-13 19:06:41 UTC\"}}"], ["updated_at", "2019-10-13 19:06:41.596262"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:06:41.600031"], ["last_sign_in_at", "2019-10-13 19:06:41.600031"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:06:41.600495"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 73ms (Views: 0.2ms | ActiveRecord: 0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "larry@parkerrippin.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "larry@parkerrippin.biz"], ["encrypted_password", "$2a$04$FjMaeGyt694AG20IIt0efuOEX06y.Kvhun/vP6xs8kDlHt/OfCTRS"], ["confirmed_at", "2019-10-13 19:06:41.609041"], ["name", "Hayden Seek"], ["email", "larry@parkerrippin.biz"], ["created_at", "2019-10-13 19:06:41.609940"], ["updated_at", "2019-10-13 19:06:41.609940"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"larry@parkerrippin.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "larry@parkerrippin.biz"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rueben@lemke.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rueben@lemke.com"], ["encrypted_password", "$2a$04$nA8oUWJ61GtVhau2hgsICuwtLQpGM.PQ7v.AEVIMRApvfKUxfsicK"], ["confirmation_token", "tcpmX3vw3TqpGxaj45dJ"], ["confirmation_sent_at", "2019-10-13 19:06:41.620514"], ["name", "Aretha Holly"], ["email", "rueben@lemke.com"], ["created_at", "2019-10-13 19:06:41.620406"], ["updated_at", "2019-10-13 19:06:41.620406"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rueben@lemke.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rueben@lemke.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "asha@kirlin.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "asha@kirlin.com"], ["encrypted_password", "$2a$04$DOUtLfxFq6la4k0VG4FH4eb9brkspa0Cqu9xZRNpKoNUV1yptWbI."], ["confirmed_at", "2019-10-13 19:06:41.628411"], ["locked_at", "2019-10-13 19:06:41.628429"], ["name", "Ella Vader"], ["email", "asha@kirlin.com"], ["created_at", "2019-10-13 19:06:41.629643"], ["updated_at", "2019-10-13 19:06:41.629643"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"asha@kirlin.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "asha@kirlin.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "goldie@anderson.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "goldie@anderson.biz"], ["encrypted_password", "$2a$04$HGd1ZLDgxeQGfoTY78ZKVuUyRXW/Jfig353UZyxv9hUaG18hgpsmO"], ["confirmed_at", "2019-10-13 19:06:41.638559"], ["name", "Rosa Shore"], ["email", "goldie@anderson.biz"], ["created_at", "2019-10-13 19:06:41.639690"], ["updated_at", "2019-10-13 19:06:41.639690"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"goldie@anderson.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "goldie@anderson.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "kieth@daniel.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "kieth@daniel.com"], ["encrypted_password", "$2a$04$PC3IIywC4KJDgqN3JNA81eyoQZ4eS13mE.AgEwNLkfZ9PMbz3eVGu"], ["confirmed_at", "2019-10-13 19:06:41.658957"], ["email", "kieth@daniel.com"], ["created_at", "2019-10-13 19:06:41.660842"], ["updated_at", "2019-10-13 19:06:41.660842"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"kieth@daniel.com\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "kieth@daniel.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"Qs16CXmE-33R2bAC9JJh-w\":{\"token\":\"$2a$10$ShxA1aySk9q3nMXVHD2nc.UG1fMp5UUZqp8AFiDTnQ3kpRPdiFt3C\",\"expiry\":1572203201,\"updated_at\":\"2019-10-13 19:06:41 UTC\"}}"], ["updated_at", "2019-10-13 19:06:41.724136"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 62ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "darrin@moen.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "darrin@moen.biz"], ["encrypted_password", "$2a$04$Sl8McFtarISihhqXnXgy9efrLKWvTASfwd05AZujfm4IACJPbVMcO"], ["confirmed_at", "2019-10-13 19:06:41.729446"], ["name", "Rhoda Booke"], ["email", "darrin@moen.biz"], ["created_at", "2019-10-13 19:06:41.730519"], ["updated_at", "2019-10-13 19:06:41.730519"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dS-nw6dxA7MU9i84GaLg9w\":{\"token\":\"$2a$10$KWDAsV1pieXBV6TgT3NAouzdRDxlD8JA7sXx4zuaexTXQxVxSYWHm\",\"expiry\":1572203201,\"updated_at\":\"2019-10-13 19:06:41 UTC\"}}"], ["updated_at", "2019-10-13 19:06:41.786048"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "darrin@moen.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:06:41.838260"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alfredo_swift@smitham.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alfredo_swift@smitham.info"], ["encrypted_password", "$2a$04$mSOD7gwwyUYXJYrmzUIqDeQxmezaYkXkPVQnzzj8/XzTPC27cW9zm"], ["confirmed_at", "2019-10-13 19:06:41.846507"], ["name", "Telly Vision"], ["email", "alfredo_swift@smitham.info"], ["created_at", "2019-10-13 19:06:41.847382"], ["updated_at", "2019-10-13 19:06:41.847382"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "marcie_bergstrom@franeckisteuber.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "marcie_bergstrom@franeckisteuber.name"], ["encrypted_password", "$2a$04$1oPP7G/ed/gkNU.7l8INvOEH01l/TdyYvo3D3fL5DeK9zRQRpNTFq"], ["confirmed_at", "2019-10-13 19:06:41.851170"], ["email", "marcie_bergstrom@franeckisteuber.name"], ["created_at", "2019-10-13 19:06:41.851979"], ["updated_at", "2019-10-13 19:06:41.851979"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"9BLn-5UU_AxJc095x5xUaA\":{\"token\":\"$2a$10$1jAuGm5pftZOrlEWS/IgVOJq7yUHiPW7yjx/kcS/xee9TRhBncHPC\",\"expiry\":1572203201,\"updated_at\":\"2019-10-13 19:06:41 UTC\"}}"], ["updated_at", "2019-10-13 19:06:41.908123"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "marcie_bergstrom@franeckisteuber.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:06:41.958598"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) Admin Load (0.3ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stephane_wuckert@funk.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "stephane_wuckert@funk.info"], ["encrypted_password", "$2a$04$EBY/yAtpjEg.rcY.UcwpGeq5twg2JIZ3r77/s6H2.MibTCsUZUOmq"], ["confirmed_at", "2019-10-13 19:06:41.965778"], ["name", "Otto Whackew"], ["email", "stephane_wuckert@funk.info"], ["created_at", "2019-10-13 19:06:41.966870"], ["updated_at", "2019-10-13 19:06:41.966870"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"stephane_wuckert@funk.info\",\n redirectUrl: \"http://reillybalistreri.org/sunshine.sauer\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "stephane_wuckert@funk.info"], ["provider", "email"], ["LIMIT", 1]] User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "49b9c286922a589e4ca7b798a6acbe22db89ec341f27e9b245de7d6db14a44a6"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "49b9c286922a589e4ca7b798a6acbe22db89ec341f27e9b245de7d6db14a44a6"], ["reset_password_sent_at", "2019-10-13 19:06:42.058198"], ["updated_at", "2019-10-13 19:06:42.058532"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (2.3ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 142.3ms Sent mail to stephane_wuckert@funk.info (3.9ms) Date: Sun, 13 Oct 2019 14:06:42 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: stephane_wuckert@funk.info Message-ID: <5da375c232064_d26a3fc59cc2dfd4647bb@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: stephane_wuckert@funk.info provider: email redirect-url: http://reillybalistreri.org/sunshine.sauer client-config: default

Hello stephane_wuckert@funk.info!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 237ms (Views: 0.1ms | ActiveRecord: 0.7ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Freillybalistreri.org%2Fsunshine.sauer&variables%5Btoken%5D=9qsR5LQJfyyjF_emgksP" for 127.0.0.1 at 2019-10-13 14:06:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://reillybalistreri.org/sunshine.sauer", "token"=>"9qsR5LQJfyyjF_emgksP"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "49b9c286922a589e4ca7b798a6acbe22db89ec341f27e9b245de7d6db14a44a6"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ElbJcN-2wk9RTELAcKwQRg\":{\"token\":\"$2a$10$WGJehEmg5XIVDZN42b/ZG.6R6eLBSK0.gh9ZYnsCTLeju84qLhWiO\",\"expiry\":1572203202}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:42.258692"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://reillybalistreri.org/sunshine.sauer?access-token=ny32oKU8Dezy8HgzwlSWag&client=ElbJcN-2wk9RTELAcKwQRg&client_id=ElbJcN-2wk9RTELAcKwQRg&config=&expiry=1572203202&reset_password=true&token=ny32oKU8Dezy8HgzwlSWag&uid=stephane_wuckert%40funk.info Completed 302 Found in 51ms (ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://oreilly.co/edra.steuber\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"abdul@west.com\"\n name: \"Thad Terry\"\n password: \"4Js0Xf34SeLt\"\n passwordConfirmation: \"4Js0Xf34SeLt\"\n confirmSuccessUrl: \"http://koelpinlueilwitz.biz/jerrie\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "abdul@west.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "abdul@west.com"], ["encrypted_password", "$2a$04$pof1Wg8IzdkX5Bd2N3mK/e1MKs3XJK2g.MyTQbu41ak5pbPnbEr9i"], ["confirmation_token", "z9v6uEyb6A-ZAJcdzP4A"], ["confirmation_sent_at", "2019-10-13 19:06:42.273207"], ["name", "Thad Terry"], ["email", "abdul@west.com"], ["created_at", "2019-10-13 19:06:42.273115"], ["updated_at", "2019-10-13 19:06:42.273115"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.8ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.2ms Sent mail to abdul@west.com (1.1ms) Date: Sun, 13 Oct 2019 14:06:42 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: abdul@west.com Message-ID: <5da375c243e89_d26a3fc59cc2dfd4648aa@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://koelpinlueilwitz.biz/jerrie

Welcome abdul@west.com!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 10ms (Views: 0.1ms | ActiveRecord: 0.6ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fkoelpinlueilwitz.biz%2Fjerrie&variables%5Btoken%5D=z9v6uEyb6A-ZAJcdzP4A" for 127.0.0.1 at 2019-10-13 14:06:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://koelpinlueilwitz.biz/jerrie", "token"=>"z9v6uEyb6A-ZAJcdzP4A"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "z9v6uEyb6A-ZAJcdzP4A"], ["LIMIT", 1]]  (0.3ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:06:42.286793"], ["updated_at", "2019-10-13 19:06:42.288532"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://koelpinlueilwitz.biz/jerrie?account_confirmation_success=true Completed 302 Found in 8ms (ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Hayden Walsh DDS\"\n password: \"NyBkGzN0b\"\n passwordConfirmation: \"NyBkGzN0b\"\n confirmSuccessUrl: \"http://lemke.name/rebekah\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rosaura.turner@toy.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rosaura.turner@toy.com"], ["encrypted_password", "$2a$04$yu6kjuU6zQzaLMWeocMBaONYHPo1pmN0IBnDiXfoz8WGjniSyEtu2"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:42.310635"], ["name", "Pat Downe"], ["email", "rosaura.turner@toy.com"], ["created_at", "2019-10-13 19:06:42.311627"], ["updated_at", "2019-10-13 19:06:42.311627"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"iSt50tF6bf4G3cm5A9lYxA\":{\"token\":\"$2a$10$60Y5l.1fcPbESZekSm44cOJdvO4nvYaTX/VjcffKy/KxghtHZ0oWK\",\"expiry\":1572203202,\"updated_at\":\"2019-10-13 19:06:42 UTC\"}}"], ["updated_at", "2019-10-13 19:06:42.373480"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "rosaura.turner@toy.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$z3GrbHiy.R3QQ.sgi6uca.v5DkaCXsq/m3bipumGKXOCBkeE41.86"], ["updated_at", "2019-10-13 19:06:42.429273"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:42.432138"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.2ms | ActiveRecord: 0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nick_dach@gorczany.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nick_dach@gorczany.org"], ["encrypted_password", "$2a$04$Vu6kdrKaPMbQthiYBta1y.WU0s9hhmdxQ/jumfBmd3dGelFwoECl2"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:42.438751"], ["name", "Harry Chest"], ["email", "nick_dach@gorczany.org"], ["created_at", "2019-10-13 19:06:42.439733"], ["updated_at", "2019-10-13 19:06:42.439733"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"qMy4cXhrVBKeAVb2pfd5Bg\":{\"token\":\"$2a$10$r8okzqvhxGNpTPCJeNwjOuKZyt2fAyPhKQQyL2gJ3BqURPAurRJ0i\",\"expiry\":1572203202,\"updated_at\":\"2019-10-13 19:06:42 UTC\"}}"], ["updated_at", "2019-10-13 19:06:42.493395"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "nick_dach@gorczany.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$XpLLTthjA0g4sOvvZ0l9xOvlPJipqyXcYF4apu5rjLC2EUdby0fPS"], ["updated_at", "2019-10-13 19:06:42.549782"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:42.550825"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "frederic@ruel.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "frederic@ruel.org"], ["encrypted_password", "$2a$04$aUFz41FDOZdGM6TP7jwhhehlp9iC7SW.L0EVFlsf9PakzNX8F4dre"], ["confirmed_at", "2019-10-13 19:06:42.556548"], ["name", "Beau Vine"], ["email", "frederic@ruel.org"], ["created_at", "2019-10-13 19:06:42.557492"], ["updated_at", "2019-10-13 19:06:42.557492"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"m9nw_aJJULmLthLb9qVIHw\":{\"token\":\"$2a$10$RWyagLD0G2Hx8nOAkYvYxeLOpQkD0l0NmYnM3fK6AuuHSMpJLQVTO\",\"expiry\":1572203202,\"updated_at\":\"2019-10-13 19:06:42 UTC\"}}"], ["updated_at", "2019-10-13 19:06:42.611657"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "frederic@ruel.org"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "genoveva.howe@hilpert.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "genoveva.howe@hilpert.co"], ["encrypted_password", "$2a$04$D44frRmjf7syf/YkqWWu/u3OsBp3J2WF3bQRVA6InMJQ6Tu1OMxpW"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:42.675122"], ["name", "Bea Minor"], ["email", "genoveva.howe@hilpert.co"], ["created_at", "2019-10-13 19:06:42.675816"], ["updated_at", "2019-10-13 19:06:42.675816"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5yffxX6J0B3sgcF0WWs0pg\":{\"token\":\"$2a$10$mtEMogjgGsElXC6fQUfOzuiHRu3tL.qanm9RvCjckXeoymYSvuh6u\",\"expiry\":1572203202,\"updated_at\":\"2019-10-13 19:06:42 UTC\"}}"], ["updated_at", "2019-10-13 19:06:42.727846"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "genoveva.howe@hilpert.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$7rlrvJcA47zrysLFeKnoAueimJkTt4XH5z9Bzx0K1pEHX/SfmCBS."], ["updated_at", "2019-10-13 19:06:42.785205"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:42.786318"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mervin.anderson@haleyrice.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mervin.anderson@haleyrice.name"], ["encrypted_password", "$2a$04$YxU90EKKv1m/rrIfwXXOnuPQxxDefEnrFI2CCrTj6Ps5.N7R8wfyO"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 19:06:42.792503"], ["name", "Rob Banks"], ["email", "mervin.anderson@haleyrice.name"], ["created_at", "2019-10-13 19:06:42.794680"], ["updated_at", "2019-10-13 19:06:42.794680"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"q210WoBcS62lwOFAVKxnlg\":{\"token\":\"$2a$10$RBSw5.RVKmMfnIvrhnnybuZfEOvELxoH92dV6BhC0gPmp/2flSjVK\",\"expiry\":1572203202,\"updated_at\":\"2019-10-13 19:06:42 UTC\"}}"], ["updated_at", "2019-10-13 19:06:42.849725"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "mervin.anderson@haleyrice.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$FEh/QP.C59kWjoAbDasU8u9cknQHzzWrpWfdAjya91McfFTchh9Ey"], ["updated_at", "2019-10-13 19:06:42.911782"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 19:06:42.913668"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 65ms (Views: 0.2ms | ActiveRecord: 0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "audrie@casperemmerich.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "audrie@casperemmerich.info"], ["encrypted_password", "$2a$04$UAig3GIPCdqMN1y6NR7BFe7lzN9yXk9gonEwc8vn0bvQ5IX7eOqfe"], ["confirmed_at", "2019-10-13 19:06:42.922337"], ["name", "Hy Price"], ["email", "audrie@casperemmerich.info"], ["created_at", "2019-10-13 19:06:42.923690"], ["updated_at", "2019-10-13 19:06:42.923690"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ERe7JtZ8txs7nKACveiOEg\":{\"token\":\"$2a$10$LRFiEAiCyrOH4JSAcSs3xedt3u.PcIYF5TUdXzWbyp2pB9wxpKkKi\",\"expiry\":1572203202,\"updated_at\":\"2019-10-13 19:06:42 UTC\"}}"], ["updated_at", "2019-10-13 19:06:42.986219"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "audrie@casperemmerich.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$dqOh0Q6lFrn/gTJMM8Xzp.Bpnw/XoFjWkV9.B5sQ3HQAQ46N7Fgxm"], ["updated_at", "2019-10-13 19:06:43.042512"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marline_carter@terry.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marline_carter@terry.biz"], ["encrypted_password", "$2a$04$fOZ3Vha9RL5hIdMycg5yQ.JNHbGjeUMv.V637Oc3guFStU2WGB1hu"], ["confirmed_at", "2019-10-13 19:06:43.048960"], ["name", "Ty Malone"], ["email", "marline_carter@terry.biz"], ["created_at", "2019-10-13 19:06:43.049638"], ["updated_at", "2019-10-13 19:06:43.049638"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "theo.fahey@metz.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "theo.fahey@metz.name"], ["encrypted_password", "$2a$04$hsBsKM9Q4uM657PqZyaguudkzvNlaIcI.qYIctkpzV4AmEzKQIgry"], ["confirmed_at", "2019-10-13 19:06:43.055590"], ["name", "Barb Dwyer"], ["email", "theo.fahey@metz.name"], ["created_at", "2019-10-13 19:06:43.056567"], ["updated_at", "2019-10-13 19:06:43.056567"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "34724bff28182564c4da0c3e38737ed4c92f1f2bdf8aa7805eb780660e3d69ef"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "34724bff28182564c4da0c3e38737ed4c92f1f2bdf8aa7805eb780660e3d69ef"], ["reset_password_sent_at", "2019-10-13 19:06:43.058376"], ["updated_at", "2019-10-13 19:06:43.058597"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22tXkbAqy_1RaZhxhKvEap%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"tXkbAqy_1RaZhxhKvEap\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "34724bff28182564c4da0c3e38737ed4c92f1f2bdf8aa7805eb780660e3d69ef"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"iWipJGU5iLyYtx1WWaXz6A\":{\"token\":\"$2a$10$2AWuC0nxCD0/jWSXIZJH8uVzPCGtQZhSxsSyTDZdKt4wJjYw2Lpm.\",\"expiry\":1572203203}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:43.118647"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"iWipJGU5iLyYtx1WWaXz6A\":{\"token\":\"$2a$10$2AWuC0nxCD0/jWSXIZJH8uVzPCGtQZhSxsSyTDZdKt4wJjYw2Lpm.\",\"expiry\":1572203203},\"eLignZw9YyEpzKfhXK5VOw\":{\"token\":\"$2a$10$kZC7fE2q8YhtMACdUQCFZO/zGJrTf1JlOI4XTHHT1lnYBtX4Tobya\",\"expiry\":1572203203,\"updated_at\":\"2019-10-13 19:06:43 UTC\"}}"], ["updated_at", "2019-10-13 19:06:43.167624"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 109ms (Views: 0.1ms | ActiveRecord: 0.6ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "scott.kuhn@homenick.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "scott.kuhn@homenick.io"], ["encrypted_password", "$2a$04$mP7m/OgCMRlux1w0iXVsy.FQ0Js2dP2bqi85isPv5NiH6gS3ctjfe"], ["confirmed_at", "2019-10-13 19:06:43.172506"], ["name", "Marv Ellis"], ["email", "scott.kuhn@homenick.io"], ["created_at", "2019-10-13 19:06:43.173301"], ["updated_at", "2019-10-13 19:06:43.173301"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0a6ef56ed12c5588d823080077aa530564c471626389c7f3d9a6b5dcc2c65d7e"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "0a6ef56ed12c5588d823080077aa530564c471626389c7f3d9a6b5dcc2c65d7e"], ["reset_password_sent_at", "2019-10-13 19:06:43.174656"], ["updated_at", "2019-10-13 19:06:43.174844"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22c9F4VxVpFw6K5htE9xDX%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"c9F4VxVpFw6K5htE9xDX\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0a6ef56ed12c5588d823080077aa530564c471626389c7f3d9a6b5dcc2c65d7e"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ltCPGKGXp0M9jVs-0p4scg\":{\"token\":\"$2a$10$o.p.pFV2VpuJ8u9Wq.zYGuot8mMHfeA1yVmqyskVYKqE.tzQF.Vnu\",\"expiry\":1572203203}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 19:06:43.231938"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=3sVN01JBN8rqFgdrplnRcw&client=ltCPGKGXp0M9jVs-0p4scg&client_id=ltCPGKGXp0M9jVs-0p4scg&config=&expiry=1572203203&reset_password=true&token=3sVN01JBN8rqFgdrplnRcw&uid=scott.kuhn%40homenick.io Completed 302 Found in 57ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "melvina@kerluke.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "melvina@kerluke.info"], ["encrypted_password", "$2a$04$l04KebAdp0VisdGbcYuWLunBXAyNvT2aH5ANgYh6SOxE6c2sPlHre"], ["confirmed_at", "2019-10-13 09:06:43"], ["name", "Skip Stone"], ["email", "melvina@kerluke.info"], ["created_at", "2019-10-13 09:06:43"], ["updated_at", "2019-10-13 09:06:43"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ac832eff49ce73a30dd94f116964662ec091751def3266b954b74a82223f58f3"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "ac832eff49ce73a30dd94f116964662ec091751def3266b954b74a82223f58f3"], ["reset_password_sent_at", "2019-10-13 09:06:43"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22sisbMskmXUgzudKBvxrj%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"sisbMskmXUgzudKBvxrj\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ac832eff49ce73a30dd94f116964662ec091751def3266b954b74a82223f58f3"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "annabelle@yundt.io"], ["provider", "email"], ["LIMIT", 1]] SQL (1.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "annabelle@yundt.io"], ["encrypted_password", "$2a$04$pP943VpKyWuXu.LbtTT2B.hphcz4Cpavw/kM4AUONjlsvpd.bzCRe"], ["confirmed_at", "2019-10-13 19:06:43.247331"], ["name", "Miss Alanius"], ["email", "annabelle@yundt.io"], ["created_at", "2019-10-13 19:06:43.248393"], ["updated_at", "2019-10-13 19:06:43.248393"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5e341803cc2809b380bd774bffbb9d85db84fa588389faf48f09e90a2f317a4d"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "5e341803cc2809b380bd774bffbb9d85db84fa588389faf48f09e90a2f317a4d"], ["reset_password_sent_at", "2019-10-13 19:06:43.251601"], ["updated_at", "2019-10-13 19:06:43.251854"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22XYdXbRyAnFr8exUrvctginvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"XYdXbRyAnFr8exUrvctginvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ec9877d1334cc2f44387bf20851bdb5509afe22c73611187d792990f9728e2cf"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nolan@schambergerauer.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nolan@schambergerauer.info"], ["encrypted_password", "$2a$04$SIbcoEdxaKrnsqIASAVlqOd3M8UzEYen8Qf1UUigP8KSpNWLY9ki6"], ["confirmation_token", "75DmaDPbe_mf7rofPwMs"], ["confirmation_sent_at", "2019-10-13 19:06:43.260257"], ["name", "Mary Gold"], ["email", "nolan@schambergerauer.info"], ["created_at", "2019-10-13 19:06:43.260140"], ["updated_at", "2019-10-13 19:06:43.260140"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.5ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.6ms Sent mail to nolan@schambergerauer.info (1.5ms) Date: Sun, 13 Oct 2019 14:06:43 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: nolan@schambergerauer.info Message-ID: <5da375c3408d3_d26a3fc59cc2dfd464991@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome nolan@schambergerauer.info!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%2275DmaDPbe_mf7rofPwMs%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fwildermanbecker.com%2Fmignon%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"75DmaDPbe_mf7rofPwMs\"\n redirectUrl: \"http://wildermanbecker.com/mignon\"\n ) {\n email\n name\n }\n }\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "75DmaDPbe_mf7rofPwMs"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:06:43.270847"], ["updated_at", "2019-10-13 19:06:43.271366"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://wildermanbecker.com/mignon?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lecia_roberts@hintz.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lecia_roberts@hintz.com"], ["encrypted_password", "$2a$04$dj96U8i7MLGUI97B6MFJ/eAOhpUwIMKBfZoi7AAO3ld1xwNl4Ernu"], ["confirmation_token", "sY2cB7cyzmrgvCZ3v9TA"], ["confirmation_sent_at", "2019-10-13 19:06:43.277826"], ["name", "Douglas Furr"], ["email", "lecia_roberts@hintz.com"], ["created_at", "2019-10-13 19:06:43.277728"], ["updated_at", "2019-10-13 19:06:43.277728"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22sY2cB7cyzmrgvCZ3v9TA-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fsawayn.name%2Fmariam_kreiger%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"sY2cB7cyzmrgvCZ3v9TA-invalid\"\n redirectUrl: \"http://sawayn.name/mariam_kreiger\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "sY2cB7cyzmrgvCZ3v9TA-invalid"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "adbf5fc1e479957f9d6596d454132ec3dea7ffc86eb9edde9d5a4422a6d938cb"], ["LIMIT", 1]] Completed 200 OK in 94ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "boyce@gibsonrunolfsdottir.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "boyce@gibsonrunolfsdottir.io"], ["encrypted_password", "$2a$04$SUWL8BhEV5nN5xgbA88ymO9tgUd6DwqbJ/oFPUmEDY2QFyZjb/qse"], ["confirmed_at", "2019-10-13 19:06:43.378007"], ["name", "Drew Blood"], ["email", "boyce@gibsonrunolfsdottir.io"], ["created_at", "2019-10-13 19:06:43.378690"], ["updated_at", "2019-10-13 19:06:43.378690"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3D52QktJ7NeVt7OxKh-GkQ\":{\"token\":\"$2a$10$uIMOtUT1BZn97Zl1tlKzd.GppHJwAGci9WgNYcipXeom8c68rED5q\",\"expiry\":1572203203,\"updated_at\":\"2019-10-13 19:06:43 UTC\"}}"], ["updated_at", "2019-10-13 19:06:43.432605"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:06:43 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "boyce@gibsonrunolfsdottir.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 64ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elicia@ankundinggreenfelder.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "elicia@ankundinggreenfelder.com"], ["encrypted_password", "$2a$04$al/1.6rowZ.d3E56.1ZRFuq7ELrFvCK73l1vkRCY9OffgjnmqJ4t2"], ["confirmed_at", "2019-10-13 19:06:43.520440"], ["name", "Anna Graham"], ["email", "elicia@ankundinggreenfelder.com"], ["created_at", "2019-10-13 19:06:43.521307"], ["updated_at", "2019-10-13 19:06:43.521307"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:06:43 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tenesha@shields.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tenesha@shields.net"], ["encrypted_password", "$2a$04$.4cRW/k3LC1sTr0H94lTNOoF9lDfoWqqwX/Z0RIhGdaN7grmxxfN."], ["confirmed_at", "2019-10-13 19:06:46.841265"], ["name", "Marsha Mellow"], ["email", "tenesha@shields.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:46.843496"], ["updated_at", "2019-10-13 19:06:46.843496"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:46 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tenesha@shields.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tenesha@shields.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"geQLcQauZgIkVpCTAK88fg\":{\"token\":\"$2a$12$yQIDkGcvXg.gt1CqscJ3jeRnBTs0E1a.LHIeKpa8954qhqqm3VQIy\",\"expiry\":1572203206,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:46.875-05:00\"}}"], ["updated_at", "2019-10-13 19:06:47.070269"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:06:47.073122"], ["last_sign_in_at", "2019-10-13 19:06:47.073122"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:06:47.073382"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 214ms (Views: 0.1ms | ActiveRecord: 0.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bob.christiansen@adamsglover.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bob.christiansen@adamsglover.io"], ["encrypted_password", "$2a$04$qtzOldpuatq2rPfIvudz6Oi.cNVmq3U4jx6iBiotHwTx0jdjxE2wy"], ["confirmed_at", "2019-10-13 19:06:47.080587"], ["name", "Neve Adda"], ["email", "bob.christiansen@adamsglover.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:47.081307"], ["updated_at", "2019-10-13 19:06:47.081307"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"bob.christiansen@adamsglover.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob.christiansen@adamsglover.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-10-13 19:06:47.086001"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sheldon.koepp@barton.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sheldon.koepp@barton.net"], ["encrypted_password", "$2a$04$2pVHxUlSVWzxv6dOXBlRk.odRWq/QKMnJmaJvwmXvi79qxDdcxC92"], ["confirmation_token", "Kpg5xyJ8JQxyQBeCZYe7"], ["confirmation_sent_at", "2019-10-13 19:06:47.091462"], ["name", "Joy Rider"], ["email", "sheldon.koepp@barton.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:47.091347"], ["updated_at", "2019-10-13 19:06:47.091347"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sheldon.koepp@barton.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sheldon.koepp@barton.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.3ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "many_harris@lesch.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "many_harris@lesch.co"], ["encrypted_password", "$2a$04$xrIGPvsb7WSO4097HMZLDeH3EdckIvQllDSwzGBAPKXREoqIEqqG."], ["confirmed_at", "2019-10-13 19:06:47.099794"], ["locked_at", "2019-10-13 19:06:47.099868"], ["name", "Jim Sox"], ["email", "many_harris@lesch.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:47.102327"], ["updated_at", "2019-10-13 19:06:47.102327"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"many_harris@lesch.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "many_harris@lesch.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "del.walsh@mertzprohaska.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "del.walsh@mertzprohaska.net"], ["encrypted_password", "$2a$04$/WMivaFS763EkXeb3H7inOQ.9q.LsybuxgJ.C3vu34AHokWjtMQ4."], ["confirmed_at", "2019-10-13 19:06:47.111131"], ["name", "Bess Eaton"], ["email", "del.walsh@mertzprohaska.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:47.112086"], ["updated_at", "2019-10-13 19:06:47.112086"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"del.walsh@mertzprohaska.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "del.walsh@mertzprohaska.net"], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "jose.conn@hand.net"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jose.conn@hand.net"], ["encrypted_password", "$2a$04$ZdjwmtEto7..kdi2B5fCQufrGesDGxxM.qOF56Fh.K0oTKlK/mxdq"], ["confirmed_at", "2019-10-13 19:06:47.155182"], ["email", "jose.conn@hand.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:47.156476"], ["updated_at", "2019-10-13 19:06:47.156476"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"jose.conn@hand.net\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "jose.conn@hand.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"eTFQf7nhQD6Kf7dG6-MkSg\":{\"token\":\"$2a$12$qz846mvrULf5Xjq7fDnAB.1PztSLgv.T2DWur.edtXfwPlGI7fQkC\",\"expiry\":1572203207,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:47.162-05:00\"}}"], ["updated_at", "2019-10-13 19:06:47.358127"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 201ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gino_green@boscogleichner.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gino_green@boscogleichner.net"], ["encrypted_password", "$2a$04$ZMZ43lNaoVMiNGs1h0/NUOcKX2ygR1TY9pCGxtW/GT7AfYYAjyoI6"], ["confirmed_at", "2019-10-13 19:06:47.365000"], ["name", "Anna Mull"], ["email", "gino_green@boscogleichner.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:47.366046"], ["updated_at", "2019-10-13 19:06:47.366046"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"scqqIvSUimyyozWyux0XJQ\":{\"token\":\"$2a$12$CuDHkLdRV4GBdhWZxyr.lemZ8WPgMCv8ZoZndylseCv1cKpx1mC/y\",\"expiry\":1572203207,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:47.366-05:00\"}}"], ["updated_at", "2019-10-13 19:06:47.557380"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gino_green@boscogleichner.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 19:06:47.742325"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 184ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "david.watsica@luettgen.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "david.watsica@luettgen.io"], ["encrypted_password", "$2a$04$3AemI2JzPERUIMkkaiITie9QJOhG5xdx87KwerazTuhLjsFu/OpRa"], ["confirmed_at", "2019-10-13 19:06:47.749531"], ["name", "Otto Graf"], ["email", "david.watsica@luettgen.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:47.750310"], ["updated_at", "2019-10-13 19:06:47.750310"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "vena@hintzleuschke.org"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "vena@hintzleuschke.org"], ["encrypted_password", "$2a$04$ClAUQWCv0rvpp6hitAneAu8cmaGDCrCvSIV1EoX5395C.KxAerKf."], ["confirmed_at", "2019-10-13 19:06:47.754006"], ["email", "vena@hintzleuschke.org"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:47.754779"], ["updated_at", "2019-10-13 19:06:47.754779"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"6NrRPmtGW-hll2mPDPfciQ\":{\"token\":\"$2a$12$hIzrWusSwl07ryIKyena.ebtYPjL9sSnLvfwKGbqWPec9NWVg9E..\",\"expiry\":1572203207,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:47.756-05:00\"}}"], ["updated_at", "2019-10-13 19:06:47.946162"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "vena@hintzleuschke.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.2ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 19:06:48.131623"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 185ms (Views: 0.1ms | ActiveRecord: 0.4ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "numbers@medhurst.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "numbers@medhurst.net"], ["encrypted_password", "$2a$04$AgDGxrnjjgGuK62.YAV4iuWgKrVHyW3krvHA1LUC2UOEJpJUS2ytu"], ["confirmed_at", "2019-10-13 19:06:48.141038"], ["name", "Tommy Hawk"], ["email", "numbers@medhurst.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:48.142019"], ["updated_at", "2019-10-13 19:06:48.142019"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"numbers@medhurst.net\",\n redirectUrl: \"http://prosacco.biz/odis\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE (uid = 'numbers@medhurst.net' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c16995e12aa2197aa91bbf7ef38a0c81264ea39ca2adf1ccffe77fbddd6c57a8"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "c16995e12aa2197aa91bbf7ef38a0c81264ea39ca2adf1ccffe77fbddd6c57a8"], ["reset_password_sent_at", "2019-10-13 19:06:48.231696"], ["updated_at", "2019-10-13 19:06:48.231968"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (1.7ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 119.4ms Sent mail to numbers@medhurst.net (3.9ms) Date: Sun, 13 Oct 2019 14:06:48 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: numbers@medhurst.net Message-ID: <5da375c856971_d2853fd8130320209871e@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: numbers@medhurst.net provider: email redirect-url: http://prosacco.biz/odis client-config: default

Hello numbers@medhurst.net!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 213ms (Views: 0.1ms | ActiveRecord: 0.4ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fprosacco.biz%2Fodis&variables%5Btoken%5D=ifth-z4pUttGTeYLXCW2" for 127.0.0.1 at 2019-10-13 14:06:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://prosacco.biz/odis", "token"=>"ifth-z4pUttGTeYLXCW2"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c16995e12aa2197aa91bbf7ef38a0c81264ea39ca2adf1ccffe77fbddd6c57a8"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"K-SDZM6i9LhgWiCk8a1kbQ\":{\"token\":\"$2a$12$gFyIQ/5hZDd4AqnuQK9rqu7E7WSrRS9LcMam/A/hrgUKBW5oKQRya\",\"expiry\":1572203208}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:06:48.546222"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://prosacco.biz/odis?access-token=1572203208&client=K-SDZM6i9LhgWiCk8a1kbQ&client_id=K-SDZM6i9LhgWiCk8a1kbQ&config=&expiry=1572203208&reset_password=true&token=1572203208&uid=numbers%40medhurst.net Completed 302 Found in 188ms (ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://farrell.net/kaitlin\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE (uid = 'nothere@gmail.com' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"oscar@waters.co\"\n name: \"Lenard Durgan IV\"\n password: \"XvHmB0448v\"\n passwordConfirmation: \"XvHmB0448v\"\n confirmSuccessUrl: \"http://johnstonwhite.org/lorenzo\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "oscar@waters.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "oscar@waters.co"], ["encrypted_password", "$2a$04$jiMA4o8TmtkgGlRkhEPTV.cnUH0ni29zDtTd0Lisz2ZZYvqZOR5tS"], ["confirmation_token", "-oE7xkGtwnLXamcebf8E"], ["confirmation_sent_at", "2019-10-13 19:06:48.558735"], ["name", "Lenard Durgan IV"], ["email", "oscar@waters.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:48.558646"], ["updated_at", "2019-10-13 19:06:48.558646"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.7ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 4.0ms Sent mail to oscar@waters.co (1.0ms) Date: Sun, 13 Oct 2019 14:06:48 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: oscar@waters.co Message-ID: <5da375c889c81_d2853fd81303202098854@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://johnstonwhite.org/lorenzo

Welcome oscar@waters.co!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 11ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fjohnstonwhite.org%2Florenzo&variables%5Btoken%5D=-oE7xkGtwnLXamcebf8E" for 127.0.0.1 at 2019-10-13 14:06:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://johnstonwhite.org/lorenzo", "token"=>"-oE7xkGtwnLXamcebf8E"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "-oE7xkGtwnLXamcebf8E"], ["LIMIT", 1]]  (0.3ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:06:48.574359"], ["updated_at", "2019-10-13 19:06:48.576153"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Redirected to http://johnstonwhite.org/lorenzo?account_confirmation_success=true Completed 302 Found in 9ms (ActiveRecord: 0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Daron Hackett\"\n password: \"M94qApT0cI\"\n passwordConfirmation: \"M94qApT0cI\"\n confirmSuccessUrl: \"http://stamm.com/hai_windler\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.4ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elijah@sanford.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elijah@sanford.net"], ["encrypted_password", "$2a$04$TPtCN4Vvtk3G5OADpwZWkOtjvnpipafBH24VErQfohLv2s6lmXEYi"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:06:48.603766"], ["name", "Didi Reelydoit"], ["email", "elijah@sanford.net"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:48.605675"], ["updated_at", "2019-10-13 19:06:48.605675"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"oDCZUVhGxN0h1nfObRuvXQ\":{\"token\":\"$2a$12$Vscgpit1niXTJX.pnRIsdOHTrMF1WH/sq9TnCrD/dRfo1ffOabPny\",\"expiry\":1572203208,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:48.607-05:00\"}}"], ["updated_at", "2019-10-13 19:06:48.805251"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "elijah@sanford.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$LO05x16Y2TGbE8to8m8KZeafM3UrCHVXdNBvg4McjVuvv21QXo/J2"], ["updated_at", "2019-10-13 19:06:48.996021"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:06:48.997518"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 192ms (Views: 0.4ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kendrick_runte@turner.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kendrick_runte@turner.info"], ["encrypted_password", "$2a$04$RFon9bLLNCoj/ND.YipHpO1rWlM4W/o7k5p9/HEdRPmZTYSys1kdq"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:06:49.005610"], ["name", "Manny Kinn"], ["email", "kendrick_runte@turner.info"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:49.006789"], ["updated_at", "2019-10-13 19:06:49.006789"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"8VamShGOFBMv37m2dObZzA\":{\"token\":\"$2a$12$EeQV8rwyMQ7UMVg34pL7YeEH9QJIoZf.0sguoNSuwUZVLNvOgKFh6\",\"expiry\":1572203209,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:49.008-05:00\"}}"], ["updated_at", "2019-10-13 19:06:49.201071"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kendrick_runte@turner.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$8BtBZpYLQ8Fw9/dwdzPBA.Ad.7qxrwm0H1buwq/5LDnwJZO3mKyMq"], ["updated_at", "2019-10-13 19:06:49.392080"], ["id", 1]]  (0.4ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:06:49.393692"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 192ms (Views: 0.5ms | ActiveRecord: 0.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jorge@baumbachtoy.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jorge@baumbachtoy.biz"], ["encrypted_password", "$2a$04$487Jr0yFmR32UCEEMZ9JU.B0iqoF8zGl5Op.IKThGbhsf4v4hhSCe"], ["confirmed_at", "2019-10-13 19:06:49.402546"], ["name", "Megan Bacon"], ["email", "jorge@baumbachtoy.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:49.404015"], ["updated_at", "2019-10-13 19:06:49.404015"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"i0R4BQ1PczefbGTyXWbFRw\":{\"token\":\"$2a$12$VIr3jBKPEkv.bCsPJ3kfjuInk7tHhdMuh/9zAYitb4vfYyWsKj1TW\",\"expiry\":1572203209,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:49.405-05:00\"}}"], ["updated_at", "2019-10-13 19:06:49.597444"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jorge@baumbachtoy.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 190ms (Views: 0.7ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.4ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ebonie@hills.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ebonie@hills.org"], ["encrypted_password", "$2a$04$dWbfQupHEUKj5buE1QGwRODNqktwaTxCBaC7ZXmRF1nkvbwMVCbWC"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:06:49.796532"], ["name", "Walt Smedley"], ["email", "ebonie@hills.org"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:49.797349"], ["updated_at", "2019-10-13 19:06:49.797349"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"wmjEGQSAcqOxOK0FLVQd2w\":{\"token\":\"$2a$12$.tIzChwXIHtkljUGZ4neZeRwLV0/kqcqVNaMxu5cSUC/NNgn18M5u\",\"expiry\":1572203209,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:49.799-05:00\"}}"], ["updated_at", "2019-10-13 19:06:49.991180"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ebonie@hills.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$tHUintQk3rVKCVHQaTreDuSoKIagrCgy6moRGfge2jI.VO6n24OU2"], ["updated_at", "2019-10-13 19:06:50.181593"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.4ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:06:50.183231"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (1.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "man_lakin@dicki.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "man_lakin@dicki.biz"], ["encrypted_password", "$2a$04$vxuqzZgOpfr7SoLLWxrlYOPMBJuGvVpKGjvjCh85uxXaoQ94gBuFG"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:06:50.192313"], ["name", "Doug Hole"], ["email", "man_lakin@dicki.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:50.194756"], ["updated_at", "2019-10-13 19:06:50.194756"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZV4C7St2VSnXeK3Ckg7U5g\":{\"token\":\"$2a$12$A8Wjg6sepumIYb.0o1CgWe/65GPjtMSxsDvDN8z7TGkSVmm4sy9Jy\",\"expiry\":1572203210,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:50.195-05:00\"}}"], ["updated_at", "2019-10-13 19:06:50.386550"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "man_lakin@dicki.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$UmM1im7HSo6Q1Dx7P90AJO/bImTJEYTRfeOCv4rsue4gOSA10HsNK"], ["updated_at", "2019-10-13 19:06:50.578249"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:06:50.579632"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 192ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lina@littel.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lina@littel.biz"], ["encrypted_password", "$2a$04$SkReMHKQfshO71k2g4eTpetayOsKaGPYQpIYhKmkYHTo0I3.441cS"], ["confirmed_at", "2019-10-13 19:06:50.587627"], ["name", "Willie Waite"], ["email", "lina@littel.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:50.588365"], ["updated_at", "2019-10-13 19:06:50.588365"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"L3i8fI9bsBjufiMslIqQ-w\":{\"token\":\"$2a$12$jyxBj1nD5g7WVIHvWWM9DuhukQkin4xwlYE5ZXkLlrLTDp8nd2Thu\",\"expiry\":1572203210,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:50.590-05:00\"}}"], ["updated_at", "2019-10-13 19:06:50.780634"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lina@littel.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$hmzP3DYYGPF4MtUd45LwC.8OKRFLO3VC8mbO7W50KJwxtz3rPmsAK"], ["updated_at", "2019-10-13 19:06:50.971324"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deanne@baileyadams.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "deanne@baileyadams.co"], ["encrypted_password", "$2a$04$ocaW4LY/b8JobEbe70rRuOPqIpbNUf.JNw1Z0E87yUf/Ld4xMvWAq"], ["confirmed_at", "2019-10-13 19:06:50.979307"], ["name", "Noah Riddle"], ["email", "deanne@baileyadams.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:50.980171"], ["updated_at", "2019-10-13 19:06:50.980171"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carey.carter@yundt.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "carey.carter@yundt.name"], ["encrypted_password", "$2a$04$b5IYGnUGmo9cIpZNJZSQseMs9bJUbCeuHIz.Ar43CQP/jESMkXCdS"], ["confirmed_at", "2019-10-13 19:06:50.987968"], ["name", "Rip Torn"], ["email", "carey.carter@yundt.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:50.988872"], ["updated_at", "2019-10-13 19:06:50.988872"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "6fa06712b0583a741969f246086030cdfebaa55e1a77c970ce27ed823ea1e937"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "6fa06712b0583a741969f246086030cdfebaa55e1a77c970ce27ed823ea1e937"], ["reset_password_sent_at", "2019-10-13 19:06:50.990438"], ["updated_at", "2019-10-13 19:06:50.990711"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22xdb-7FtjJiFTWmevyvy4%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:50 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"xdb-7FtjJiFTWmevyvy4\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "6fa06712b0583a741969f246086030cdfebaa55e1a77c970ce27ed823ea1e937"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nIKtAhfwi0yp22qqjzRdBw\":{\"token\":\"$2a$12$Aofw9mOrnX2FIkg2rf0VW.obHsNm8TH2FLMnS8Cvuwhcw01t0yQ5K\",\"expiry\":1572203210}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:06:51.193527"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nIKtAhfwi0yp22qqjzRdBw\":{\"token\":\"$2a$12$Aofw9mOrnX2FIkg2rf0VW.obHsNm8TH2FLMnS8Cvuwhcw01t0yQ5K\",\"expiry\":1572203210},\"ikBBHp78Tzp490lQ_kiFpA\":{\"token\":\"$2a$12$ZDeF2BpifbffTSp5Tel.y.qf6SsUkPqZLJz2yd8H3vAJWcn.bn7Jq\",\"expiry\":1572203211,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:51.194-05:00\"}}"], ["updated_at", "2019-10-13 19:06:51.376025"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 384ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "harland.huels@runtelesch.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "harland.huels@runtelesch.name"], ["encrypted_password", "$2a$04$xTGtWcxrMkuxYAt4yt5sWeVqytClfmRaxF4b1SbQh92adi2wFT4.."], ["confirmed_at", "2019-10-13 19:06:51.381852"], ["name", "Claire Annette"], ["email", "harland.huels@runtelesch.name"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:51.382942"], ["updated_at", "2019-10-13 19:06:51.382942"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "63667ca23fd8cdccdc7f6af83c42ae92a24fb4337c505b0094a06ef637552e03"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "63667ca23fd8cdccdc7f6af83c42ae92a24fb4337c505b0094a06ef637552e03"], ["reset_password_sent_at", "2019-10-13 19:06:51.384874"], ["updated_at", "2019-10-13 19:06:51.385058"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22DP9yx-YxsZ_hyBzKz2TF%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"DP9yx-YxsZ_hyBzKz2TF\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "63667ca23fd8cdccdc7f6af83c42ae92a24fb4337c505b0094a06ef637552e03"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"M8X2z2Gn758sY-vur_RQ0A\":{\"token\":\"$2a$12$Osay5z.7H6zS64y10Cub7eS/uDlWToEP9qEe/NSB7HVt9f3xDhM.y\",\"expiry\":1572203211}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:06:51.578609"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1572203211&client=M8X2z2Gn758sY-vur_RQ0A&client_id=M8X2z2Gn758sY-vur_RQ0A&config=&expiry=1572203211&reset_password=true&token=1572203211&uid=harland.huels%40runtelesch.name Completed 302 Found in 193ms (ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (25.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jonathan.deckow@leuschke.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jonathan.deckow@leuschke.org"], ["encrypted_password", "$2a$04$xKmPrK2uas9Fta8ExRjZuOHj8pBR.VBeAQyTBtifANzdIwbn64bU."], ["confirmed_at", "2019-10-13 09:06:51"], ["name", "Penny Bunn"], ["email", "jonathan.deckow@leuschke.org"], ["tokens", "{}"], ["created_at", "2019-10-13 09:06:51"], ["updated_at", "2019-10-13 09:06:51"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b367e274dcef456698784c372c0630817ae045aa4f54eaa9b1b21fae8219d3d6"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b367e274dcef456698784c372c0630817ae045aa4f54eaa9b1b21fae8219d3d6"], ["reset_password_sent_at", "2019-10-13 09:06:51"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22qzK75AzfzB2DNJ5DfYSc%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"qzK75AzfzB2DNJ5DfYSc\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b367e274dcef456698784c372c0630817ae045aa4f54eaa9b1b21fae8219d3d6"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leia_lang@berge.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "leia_lang@berge.biz"], ["encrypted_password", "$2a$04$8Ku8ps15k4ngX5a8QF69u.E7B5NrVcaPKq2pYpCAWraprpRbGMOMe"], ["confirmed_at", "2019-10-13 19:06:51.623785"], ["name", "Juana Bea"], ["email", "leia_lang@berge.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:51.624952"], ["updated_at", "2019-10-13 19:06:51.624952"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0e82bcd3cab37db6f8581bdb3dbaf4a8453f6d99c05d91345df286bec2a437de"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "0e82bcd3cab37db6f8581bdb3dbaf4a8453f6d99c05d91345df286bec2a437de"], ["reset_password_sent_at", "2019-10-13 19:06:51.626979"], ["updated_at", "2019-10-13 19:06:51.627294"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22t6YLr9vyokuVke2NmPhNinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"t6YLr9vyokuVke2NmPhNinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1d9b5630933142728caf1ff22afffae0e658fbe29700faef56c439ec79e7ea3b"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "virgen@haley.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "virgen@haley.io"], ["encrypted_password", "$2a$04$GvllG0eKjuwmYFQWrvtCWuiTiIoYtVUDMQgGdtG0R0je7/OKP/HqC"], ["confirmation_token", "3oEALr4wYETyyn1SHRKB"], ["confirmation_sent_at", "2019-10-13 19:06:51.637013"], ["name", "Stan Still"], ["email", "virgen@haley.io"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:51.636901"], ["updated_at", "2019-10-13 19:06:51.636901"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (1.5ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.0ms Sent mail to virgen@haley.io (1.3ms) Date: Sun, 13 Oct 2019 14:06:51 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: virgen@haley.io Message-ID: <5da375cb9cd3b_d2853fd813032020989cb@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome virgen@haley.io!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%223oEALr4wYETyyn1SHRKB%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fhowellgibson.net%2Flen_quitzon%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"3oEALr4wYETyyn1SHRKB\"\n redirectUrl: \"http://howellgibson.net/len_quitzon\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "3oEALr4wYETyyn1SHRKB"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:06:51.647074"], ["updated_at", "2019-10-13 19:06:51.647444"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://howellgibson.net/len_quitzon?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "treva.moriette@schroederkeeling.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "treva.moriette@schroederkeeling.co"], ["encrypted_password", "$2a$04$Fy24hoUC5z6ollh7OkT3FeJyDGPbPCgES4P4qRiUAsb4TJwMnO7lW"], ["confirmation_token", "XF17FmJC_L8NKjx4ejiE"], ["confirmation_sent_at", "2019-10-13 19:06:51.653949"], ["name", "Mort Tallity"], ["email", "treva.moriette@schroederkeeling.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:51.653835"], ["updated_at", "2019-10-13 19:06:51.653835"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22XF17FmJC_L8NKjx4ejiE-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fbaumbach.io%2Fandy%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:51 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"XF17FmJC_L8NKjx4ejiE-invalid\"\n redirectUrl: \"http://baumbach.io/andy\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "XF17FmJC_L8NKjx4ejiE-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "687d7c2a9bdad92fb905ffd04b2d84d3efd80951f6c3c099e5c8a46c5fd9f191"], ["LIMIT", 1]] Completed 200 OK in 96ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shantae.damore@crist.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "shantae.damore@crist.biz"], ["encrypted_password", "$2a$04$aAWQZXGeTZG0HODKmP0r8uvkLEjckr9rFuHTakr.YLx4rN111MD2e"], ["confirmed_at", "2019-10-13 19:06:51.755756"], ["name", "Skip Stone"], ["email", "shantae.damore@crist.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:51.756530"], ["updated_at", "2019-10-13 19:06:51.756530"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"J0AdUykq06z3-4MNQdSB4g\":{\"token\":\"$2a$12$asNyBsnrrO/gDmnbJRBqHui0G7arzHq2ayjePW4zmRx/JzfRinU56\",\"expiry\":1572203211,\"last_token\":null,\"updated_at\":\"2019-10-13T14:06:51.757-05:00\"}}"], ["updated_at", "2019-10-13 19:06:51.944860"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:06:51 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "shantae.damore@crist.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alycia_wyman@greenfelder.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alycia_wyman@greenfelder.co"], ["encrypted_password", "$2a$04$ZU0TlCVrG0S.in8D4vaHDePi9aK.ywlt3SbMUpIrX7h5iLrbm0keK"], ["confirmed_at", "2019-10-13 19:06:52.143773"], ["name", "Beau Tye"], ["email", "alycia_wyman@greenfelder.co"], ["tokens", "{}"], ["created_at", "2019-10-13 19:06:52.144647"], ["updated_at", "2019-10-13 19:06:52.144647"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:06:52 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sara_lesch@kirlin.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sara_lesch@kirlin.com"], ["encrypted_password", "$2a$04$i/pBkSkqYRgNU3O8/q/A0Oe1ot7DMxMnimpZINa0O8MrH/rOwzk42"], ["confirmed_at", "2019-10-13 19:06:55.584756"], ["name", "Anna Septic"], ["email", "sara_lesch@kirlin.com"], ["created_at", "2019-10-13 19:06:55.586830"], ["updated_at", "2019-10-13 19:06:55.586830"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sara_lesch@kirlin.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sara_lesch@kirlin.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"GMv2mfSsPhy9_xhomiK9Vw\":{\"token\":\"$2a$10$VJRo8aIz9.SbYXkl1RZ2m.GpTswQ3oMoultxkHxfHbUJqEdm8qVp.\",\"expiry\":1572203215,\"updated_at\":\"2019-10-13 19:06:55 UTC\"}}"], ["updated_at", "2019-10-13 19:06:55.669741"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:06:55.672649"], ["last_sign_in_at", "2019-10-13 19:06:55.672649"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:06:55.672956"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 70ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tammara.turcotte@wisozk.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tammara.turcotte@wisozk.com"], ["encrypted_password", "$2a$04$npauiqUFKGWsYEmJ6hSffO2jKFkuK4oWDJbflWi.IMTnaRNm9NVpa"], ["confirmed_at", "2019-10-13 19:06:55.680244"], ["name", "Miss Alanius"], ["email", "tammara.turcotte@wisozk.com"], ["created_at", "2019-10-13 19:06:55.681015"], ["updated_at", "2019-10-13 19:06:55.681015"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tammara.turcotte@wisozk.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tammara.turcotte@wisozk.com"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "debrah@ebert.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "debrah@ebert.co"], ["encrypted_password", "$2a$04$pE4wQZs9dBGNxfJfl8EAE.D0yVjfryVW2LSjSGX/D2d2ALRw00BCe"], ["confirmation_token", "HdgdJDQP4mjU_gHeurHz"], ["confirmation_sent_at", "2019-10-13 19:06:55.691666"], ["name", "Don Key"], ["email", "debrah@ebert.co"], ["created_at", "2019-10-13 19:06:55.691535"], ["updated_at", "2019-10-13 19:06:55.691535"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"debrah@ebert.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "debrah@ebert.co"], ["LIMIT", 1]] Completed 200 OK in 19ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "adam@abernathy.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "adam@abernathy.net"], ["encrypted_password", "$2a$04$qrAbWFUSwr0bYNhKicAvNuX9BQrfReMjx9zs1OIBdPfTKJC8aDZXq"], ["confirmed_at", "2019-10-13 19:06:55.716283"], ["locked_at", "2019-10-13 19:06:55.716297"], ["name", "Harmon Ikka"], ["email", "adam@abernathy.net"], ["created_at", "2019-10-13 19:06:55.717245"], ["updated_at", "2019-10-13 19:06:55.717245"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"adam@abernathy.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "adam@abernathy.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tarsha.deckow@goldner.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tarsha.deckow@goldner.com"], ["encrypted_password", "$2a$04$LDIzYtXcdTzYAsT6i07Ca.nJDuDt98cDblupxZUflmLyb3BBdIv5K"], ["confirmed_at", "2019-10-13 19:06:55.724812"], ["name", "Mary Gold"], ["email", "tarsha.deckow@goldner.com"], ["created_at", "2019-10-13 19:06:55.726012"], ["updated_at", "2019-10-13 19:06:55.726012"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tarsha.deckow@goldner.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tarsha.deckow@goldner.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "lindsay_daniel@legros.co"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "lindsay_daniel@legros.co"], ["encrypted_password", "$2a$04$151vkPxXNSFOnkdTGK45B.MKxj8qjg73ocVWmOMgY/9q2AcoYhXMK"], ["confirmed_at", "2019-10-13 19:06:55.752137"], ["email", "lindsay_daniel@legros.co"], ["created_at", "2019-10-13 19:06:55.753478"], ["updated_at", "2019-10-13 19:06:55.753478"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"lindsay_daniel@legros.co\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "lindsay_daniel@legros.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"c_GQAwkLifLKIvvJG2l_4Q\":{\"token\":\"$2a$10$txXUpzT3wULWrF3hC1iktOONUq0v/f6KBn75YrCW1x9yfQgLpYYBu\",\"expiry\":1572203215,\"updated_at\":\"2019-10-13 19:06:55 UTC\"}}"], ["updated_at", "2019-10-13 19:06:55.814167"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jordan_howell@osinski.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jordan_howell@osinski.info"], ["encrypted_password", "$2a$04$cnZeE.c1bu7XiY87fdVtHOfF7YJQ2vcHaV5xM11iGaAK35z/uYNfu"], ["confirmed_at", "2019-10-13 19:06:55.818748"], ["name", "Rowan Boatman"], ["email", "jordan_howell@osinski.info"], ["created_at", "2019-10-13 19:06:55.819610"], ["updated_at", "2019-10-13 19:06:55.819610"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"unZJB9CYtJcjCE1Djd8VQg\":{\"token\":\"$2a$10$4tW4aTXMSGrpLglfniWRA.8SR.tVHXH7EYMMmLFoiqE2OCOv9JMUG\",\"expiry\":1572203215,\"updated_at\":\"2019-10-13 19:06:55 UTC\"}}"], ["updated_at", "2019-10-13 19:06:55.875014"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jordan_howell@osinski.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:06:55.927444"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mi@durgankunde.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mi@durgankunde.info"], ["encrypted_password", "$2a$04$XbLoc/0Qebw2ZCnTOVgRsuu9/w8pjuBuBRhSJkeW3fSIf/pSgTFX."], ["confirmed_at", "2019-10-13 19:06:55.936877"], ["name", "Macon Paine"], ["email", "mi@durgankunde.info"], ["created_at", "2019-10-13 19:06:55.937890"], ["updated_at", "2019-10-13 19:06:55.937890"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "ahmed@lubowitz.co"], ["provider", "email"], ["LIMIT", 1]] Admin Create (13.1ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "ahmed@lubowitz.co"], ["encrypted_password", "$2a$04$Dynot2vnKYBV.NErzoISHeGZQQetpNzZYFLN2H.ANveTIaWG5oNTS"], ["confirmed_at", "2019-10-13 19:06:55.942120"], ["email", "ahmed@lubowitz.co"], ["created_at", "2019-10-13 19:06:55.952024"], ["updated_at", "2019-10-13 19:06:55.952024"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"aia9wpaUM94SE63I6E_00Q\":{\"token\":\"$2a$10$txvbT/It8S/JcoYxQRXYSODouS21HCNx32KHetaG3W.050rUm4Mz6\",\"expiry\":1572203216,\"updated_at\":\"2019-10-13 19:06:55 UTC\"}}"], ["updated_at", "2019-10-13 19:06:56.021213"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "ahmed@lubowitz.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:06:56.073394"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kerstin.harvey@kemmer.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kerstin.harvey@kemmer.org"], ["encrypted_password", "$2a$04$4ppAgje2yTEz047vr2hy.OZKzm.MiHoV1CmgUgPNMznTv4yxEJ2Oy"], ["confirmed_at", "2019-10-13 19:06:56.079354"], ["name", "Max Power"], ["email", "kerstin.harvey@kemmer.org"], ["created_at", "2019-10-13 19:06:56.080241"], ["updated_at", "2019-10-13 19:06:56.080241"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"kerstin.harvey@kemmer.org\",\n redirectUrl: \"http://padberg.org/kelsie\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "kerstin.harvey@kemmer.org"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7a4c63c62f296e137d2f84d83320fcf44eb9a19670b0857e9135936da91da6dc"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7a4c63c62f296e137d2f84d83320fcf44eb9a19670b0857e9135936da91da6dc"], ["reset_password_sent_at", "2019-10-13 19:06:56.173223"], ["updated_at", "2019-10-13 19:06:56.173477"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (1.9ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 121.8ms Sent mail to kerstin.harvey@kemmer.org (4.1ms) Date: Sun, 13 Oct 2019 14:06:56 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: kerstin.harvey@kemmer.org Message-ID: <5da375d048f3c_d2a03fc1f642ffd417892@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: kerstin.harvey@kemmer.org provider: email redirect-url: http://padberg.org/kelsie client-config: default

Hello kerstin.harvey@kemmer.org!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 218ms (Views: 0.1ms | ActiveRecord: 0.4ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fpadberg.org%2Fkelsie&variables%5Btoken%5D=Kwu_smXamsxRAgJpwzQ6" for 127.0.0.1 at 2019-10-13 14:06:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://padberg.org/kelsie", "token"=>"Kwu_smXamsxRAgJpwzQ6"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7a4c63c62f296e137d2f84d83320fcf44eb9a19670b0857e9135936da91da6dc"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"AJWNKZ0K1uMaOokelkGDOQ\":{\"token\":\"$2a$10$UFd/l6BVCHdrgosA8QNKVukkyV.xAwz/uO0oh9FDFJ3hmPbJI/pKO\",\"expiry\":1572203216}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:06:56.354065"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://padberg.org/kelsie?access-token=G8O5roYIXOrg5q82g29jEg&client=AJWNKZ0K1uMaOokelkGDOQ&client_id=AJWNKZ0K1uMaOokelkGDOQ&config=&expiry=1572203216&reset_password=true&token=G8O5roYIXOrg5q82g29jEg&uid=kerstin.harvey%40kemmer.org Completed 302 Found in 52ms (ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://bogisich.io/hortencia_gulgowski\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"darrin@oreilly.info\"\n name: \"Willa Johns MD\"\n password: \"E70kCrGmLr3FjUaN\"\n passwordConfirmation: \"E70kCrGmLr3FjUaN\"\n confirmSuccessUrl: \"http://stantonpurdy.org/nickolas.rowe\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "darrin@oreilly.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "darrin@oreilly.info"], ["encrypted_password", "$2a$04$sopmAYqQHaumXbe8m5L.eeQiVrynjW1i8AqmCiG0o/FWOX/Xn.3iq"], ["confirmation_token", "PZx79NzhiMcXs18hpV_i"], ["confirmation_sent_at", "2019-10-13 19:06:56.368218"], ["name", "Willa Johns MD"], ["email", "darrin@oreilly.info"], ["created_at", "2019-10-13 19:06:56.368125"], ["updated_at", "2019-10-13 19:06:56.368125"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.8ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.8ms Sent mail to darrin@oreilly.info (1.1ms) Date: Sun, 13 Oct 2019 14:06:56 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: darrin@oreilly.info Message-ID: <5da375d05b657_d2a03fc1f642ffd417934@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://stantonpurdy.org/nickolas.rowe

Welcome darrin@oreilly.info!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 11ms (Views: 0.1ms | ActiveRecord: 0.8ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fstantonpurdy.org%2Fnickolas.rowe&variables%5Btoken%5D=PZx79NzhiMcXs18hpV_i" for 127.0.0.1 at 2019-10-13 14:06:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://stantonpurdy.org/nickolas.rowe", "token"=>"PZx79NzhiMcXs18hpV_i"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "PZx79NzhiMcXs18hpV_i"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:06:56.382458"], ["updated_at", "2019-10-13 19:06:56.382843"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://stantonpurdy.org/nickolas.rowe?account_confirmation_success=true Completed 302 Found in 6ms (ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Belia Roob\"\n password: \"NgX9sXvFw\"\n passwordConfirmation: \"NgX9sXvFw\"\n confirmSuccessUrl: \"http://lemkenolan.com/doyle\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "maida.kutch@hammes.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "maida.kutch@hammes.net"], ["encrypted_password", "$2a$04$4u./q3J2x9P.bjwMG3QbFOSCRVjmU.Iz0WadgorI82zDya4TP.Nwi"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:06:56.410711"], ["name", "Adam Sapple"], ["email", "maida.kutch@hammes.net"], ["created_at", "2019-10-13 19:06:56.412664"], ["updated_at", "2019-10-13 19:06:56.412664"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"GSXlwOYShyUaeukROgvO_g\":{\"token\":\"$2a$10$zxIXr2iE/shnEzzMkNhXguj02jRGnmOfzim8Xc1EySPiU/2GmJpd.\",\"expiry\":1572203216,\"updated_at\":\"2019-10-13 19:06:56 UTC\"}}"], ["updated_at", "2019-10-13 19:06:56.473708"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "maida.kutch@hammes.net"], ["LIMIT", 1]]  (0.5ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$OQ4nrcMA5Pr9mIARwITOI.ouZpCGzbweOEOpHMplo9lGhqTZA2Utu"], ["updated_at", "2019-10-13 19:06:56.536218"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:06:56.538198"], ["id", 1]]  (0.5ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 63ms (Views: 0.1ms | ActiveRecord: 1.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "austin@connellymetz.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "austin@connellymetz.org"], ["encrypted_password", "$2a$04$qbw9wpiYyI8Nw.Z2UUah9.m54ZD0/iK1JSBL4eT7I/PNL/Sm52nFi"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:06:56.545202"], ["name", "Bess Twishes"], ["email", "austin@connellymetz.org"], ["created_at", "2019-10-13 19:06:56.546436"], ["updated_at", "2019-10-13 19:06:56.546436"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-Daf-5L2-3uU-RRxq2z_Vw\":{\"token\":\"$2a$10$MOMfPi0n7pib8RHuyyDpjeKqgVD9V3tq1WxuGLLcqZGPcejFs.yni\",\"expiry\":1572203216,\"updated_at\":\"2019-10-13 19:06:56 UTC\"}}"], ["updated_at", "2019-10-13 19:06:56.604240"], ["id", 1]]  (0.4ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "austin@connellymetz.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.6ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$RdM07EwQFJEELUzba6vZrecj/2nsLm3oAdEbgJ786YOGL1.dZ/Je6"], ["updated_at", "2019-10-13 19:06:56.661743"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:06:56.663272"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.9ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "karole.adams@deckowyundt.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "karole.adams@deckowyundt.net"], ["encrypted_password", "$2a$04$lkTj1yU9jr60XBvj4OKkDe4nQah6yN7gxBMzGHp2NzelXhsYcM3Hy"], ["confirmed_at", "2019-10-13 19:06:56.671287"], ["name", "Anna Sasin"], ["email", "karole.adams@deckowyundt.net"], ["created_at", "2019-10-13 19:06:56.672618"], ["updated_at", "2019-10-13 19:06:56.672618"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"IjE6IpgUq_j104-ge7U5ZQ\":{\"token\":\"$2a$10$w2RId9MatkHtTZkLo.BrxeufED17XbWKCCkzwsqqsUudZYZ5ndRQm\",\"expiry\":1572203216,\"updated_at\":\"2019-10-13 19:06:56 UTC\"}}"], ["updated_at", "2019-10-13 19:06:56.729388"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "karole.adams@deckowyundt.net"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "catherina.bashirian@abbott.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "catherina.bashirian@abbott.co"], ["encrypted_password", "$2a$04$QPw4GmG5eAGpHkea3Vu2buGdNI7jLXSEdz3vVQoOj0Qww5YcWbAIi"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:06:56.789817"], ["name", "Kareem O'Weet"], ["email", "catherina.bashirian@abbott.co"], ["created_at", "2019-10-13 19:06:56.791049"], ["updated_at", "2019-10-13 19:06:56.791049"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kJetzM_Urku3FVtDrZSLcg\":{\"token\":\"$2a$10$TFsQ4gfsDhdsGWejqOhWWuvk4RHDKiwUSLw3hP2q9GAviow4gPfHG\",\"expiry\":1572203216,\"updated_at\":\"2019-10-13 19:06:56 UTC\"}}"], ["updated_at", "2019-10-13 19:06:56.846659"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "catherina.bashirian@abbott.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Ybs1AYLDk3HIw7gfYSDCcerO9iZSgrKOTJwSe5DGdDk6kBD0DiS/."], ["updated_at", "2019-10-13 19:06:56.900789"], ["id", 1]]  (0.7ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:06:56.903251"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 1.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.9ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gordon@ankunding.io"], ["provider", "email"], ["LIMIT", 1]] User Create (1.1ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gordon@ankunding.io"], ["encrypted_password", "$2a$04$ybjcONH7V/OH0Gjk6dGtO.MJPWQ.K/FjoWq6FZ/MG3oJKbaT/eEKC"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:06:56.911625"], ["name", "Charity Case"], ["email", "gordon@ankunding.io"], ["created_at", "2019-10-13 19:06:56.913976"], ["updated_at", "2019-10-13 19:06:56.913976"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7ahXvuMmJS5OyMhnNX6mIg\":{\"token\":\"$2a$10$B75E9PC2hxHdwZt7GiceOehNMkEJ3weltTbilR3xSsSjnU1CWtp/6\",\"expiry\":1572203216,\"updated_at\":\"2019-10-13 19:06:56 UTC\"}}"], ["updated_at", "2019-10-13 19:06:56.973811"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gordon@ankunding.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$/ENjAcPp1.39oPyY88wbOenW36qGz7UAVvid4JVwIp9IBHVS0AazK"], ["updated_at", "2019-10-13 19:06:57.030890"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:06:57.032566"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tyree@wintheiser.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tyree@wintheiser.com"], ["encrypted_password", "$2a$04$Fkfqm/o5N8/rzbZ8WdddxOxKapx1UuZdfDfNb71QTFJlOcZ8iRnl2"], ["confirmed_at", "2019-10-13 19:06:57.039715"], ["name", "Zoltan Pepper"], ["email", "tyree@wintheiser.com"], ["created_at", "2019-10-13 19:06:57.040569"], ["updated_at", "2019-10-13 19:06:57.040569"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KDTNq6JhoLtjglC7TDfwLg\":{\"token\":\"$2a$10$D97q7WsEgJ0vwz3iW52quO/Mo9UUkaE5/ewoLJeyFZs1ypKzS3qbi\",\"expiry\":1572203217,\"updated_at\":\"2019-10-13 19:06:57 UTC\"}}"], ["updated_at", "2019-10-13 19:06:57.095974"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tyree@wintheiser.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$LaM5c6O/FncrOdXHwKFIWOdzwe5S9K9X0iAbgZE3FfaAQEq7OjT3S"], ["updated_at", "2019-10-13 19:06:57.149414"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.2ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cyrus.wyman@raynor.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cyrus.wyman@raynor.com"], ["encrypted_password", "$2a$04$oWl2rmYnI0Zy14GB/soEF.Pr.3oF.AUpg9Xgn1jN41dqsA/2wy4Ge"], ["confirmed_at", "2019-10-13 19:06:57.156796"], ["name", "Harry Beard"], ["email", "cyrus.wyman@raynor.com"], ["created_at", "2019-10-13 19:06:57.158174"], ["updated_at", "2019-10-13 19:06:57.158174"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.3ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "evon@hoegerlang.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "evon@hoegerlang.name"], ["encrypted_password", "$2a$04$8oZirAvnKQVH4uiw.Sf8kOPaL3YXxAXnK8bYV4O61oVhwvIFXlmBK"], ["confirmed_at", "2019-10-13 19:06:57.172050"], ["name", "Ray Gunn"], ["email", "evon@hoegerlang.name"], ["created_at", "2019-10-13 19:06:57.173204"], ["updated_at", "2019-10-13 19:06:57.173204"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "06536e4cf82b928849420fe0368d47718fc45e94750a736c0fd284ed6ad5abae"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "06536e4cf82b928849420fe0368d47718fc45e94750a736c0fd284ed6ad5abae"], ["reset_password_sent_at", "2019-10-13 19:06:57.174880"], ["updated_at", "2019-10-13 19:06:57.175132"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22zwU2rQq1LWkWUgRBdwxX%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"zwU2rQq1LWkWUgRBdwxX\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "06536e4cf82b928849420fe0368d47718fc45e94750a736c0fd284ed6ad5abae"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"_neupXkZo6PwccSzR56s1A\":{\"token\":\"$2a$10$rR3Orvqlyiutg3fizdOdy.KvjuPWgJmrWwteJU.Sbr/2v8SdAOBlG\",\"expiry\":1572203217}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:06:57.239457"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"_neupXkZo6PwccSzR56s1A\":{\"token\":\"$2a$10$rR3Orvqlyiutg3fizdOdy.KvjuPWgJmrWwteJU.Sbr/2v8SdAOBlG\",\"expiry\":1572203217},\"XBgZbIcke0407xJWeocDzg\":{\"token\":\"$2a$10$N.l.adDEQPOg0seKN7Mb.uJjlKPSXq.JLD4BqdiGKo4VopB.chr9.\",\"expiry\":1572203217,\"updated_at\":\"2019-10-13 19:06:57 UTC\"}}"], ["updated_at", "2019-10-13 19:06:57.288634"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 112ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "herman.rowe@ward.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "herman.rowe@ward.com"], ["encrypted_password", "$2a$04$7L.uPhpay7Vjieq/6ruiEuFp7RXgyqPUzlN6goSjWklfomuihoiAe"], ["confirmed_at", "2019-10-13 19:06:57.294069"], ["name", "Carl Arm"], ["email", "herman.rowe@ward.com"], ["created_at", "2019-10-13 19:06:57.295093"], ["updated_at", "2019-10-13 19:06:57.295093"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "486065b7fe55be1b1f8eb00b0e676f92274d1637c7022a1c95ad38b336816beb"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "486065b7fe55be1b1f8eb00b0e676f92274d1637c7022a1c95ad38b336816beb"], ["reset_password_sent_at", "2019-10-13 19:06:57.296652"], ["updated_at", "2019-10-13 19:06:57.296836"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22_DsaUFF-VTxBDtZaYUj9%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"_DsaUFF-VTxBDtZaYUj9\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "486065b7fe55be1b1f8eb00b0e676f92274d1637c7022a1c95ad38b336816beb"], ["LIMIT", 1]]  (0.3ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0RftIddExYjMrd8o_Cyx2w\":{\"token\":\"$2a$10$xIcTHvwqZmky8SXz8LdnEuawBE.QgLonScb3CgUlDIQlE6c/XZgrC\",\"expiry\":1572203217}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:06:57.356394"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=ZBnvEnBSsRwRweOr77uX8g&client=0RftIddExYjMrd8o_Cyx2w&client_id=0RftIddExYjMrd8o_Cyx2w&config=&expiry=1572203217&reset_password=true&token=ZBnvEnBSsRwRweOr77uX8g&uid=herman.rowe%40ward.com Completed 302 Found in 59ms (ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jamey.hintz@goodwinkihn.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jamey.hintz@goodwinkihn.com"], ["encrypted_password", "$2a$04$7RWbIGh5USgz6VmfLrAuYu/Q40Er/VUfECL..5YC1ez0rfKxx2R8K"], ["confirmed_at", "2019-10-13 09:06:57"], ["name", "Bud Weiser"], ["email", "jamey.hintz@goodwinkihn.com"], ["created_at", "2019-10-13 09:06:57"], ["updated_at", "2019-10-13 09:06:57"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "32af99ffe30128190ccd5c5b4671c24d6cd060250b7e3bbb0908735f408a2b9c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "32af99ffe30128190ccd5c5b4671c24d6cd060250b7e3bbb0908735f408a2b9c"], ["reset_password_sent_at", "2019-10-13 09:06:57"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22EzQp2iSbp8Mx2s1T7vNm%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"EzQp2iSbp8Mx2s1T7vNm\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "32af99ffe30128190ccd5c5b4671c24d6cd060250b7e3bbb0908735f408a2b9c"], ["LIMIT", 1]] Completed 200 OK in 32ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joesph@larkinweber.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "joesph@larkinweber.io"], ["encrypted_password", "$2a$04$11.byOdRsJl3oNZdESKKrOfDZg5Wy7QQcMjwscqN4DX.40C3BZmqu"], ["confirmed_at", "2019-10-13 19:06:57.404504"], ["name", "Chris Coe"], ["email", "joesph@larkinweber.io"], ["created_at", "2019-10-13 19:06:57.405543"], ["updated_at", "2019-10-13 19:06:57.405543"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1e1d58b797ca3d498e457af8498380dd71a7c7b76ebb99b87861366c004b6239"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "1e1d58b797ca3d498e457af8498380dd71a7c7b76ebb99b87861366c004b6239"], ["reset_password_sent_at", "2019-10-13 19:06:57.407119"], ["updated_at", "2019-10-13 19:06:57.407354"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%226hscnU7hwtu_5d5Sb7-Xinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"6hscnU7hwtu_5d5Sb7-Xinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "fcdd5903a8af08733b66a4c770f328bc8a35e286600c889cbef77e7bd7c43a1f"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.3ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "art.dietrich@corkerybailey.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "art.dietrich@corkerybailey.org"], ["encrypted_password", "$2a$04$LdC1mK9PG0rUIQ1oGIcBguM1VXLMxR9i/finwrDeih/3UdVgQWIpq"], ["confirmation_token", "qogysq56F8ZzBox7sZoy"], ["confirmation_sent_at", "2019-10-13 19:06:57.419524"], ["name", "Jean Poole"], ["email", "art.dietrich@corkerybailey.org"], ["created_at", "2019-10-13 19:06:57.419407"], ["updated_at", "2019-10-13 19:06:57.419407"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.5ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.4ms Sent mail to art.dietrich@corkerybailey.org (1.3ms) Date: Sun, 13 Oct 2019 14:06:57 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: art.dietrich@corkerybailey.org Message-ID: <5da375d1673e6_d2a03fc1f642ffd418026@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome art.dietrich@corkerybailey.org!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22qogysq56F8ZzBox7sZoy%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fswift.io%2Fbret%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"qogysq56F8ZzBox7sZoy\"\n redirectUrl: \"http://swift.io/bret\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "qogysq56F8ZzBox7sZoy"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:06:57.429747"], ["updated_at", "2019-10-13 19:06:57.430837"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://swift.io/bret?account_confirmation_success=true Completed 302 Found in 9ms (ActiveRecord: 0.8ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.3ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "miguel@bode.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "miguel@bode.name"], ["encrypted_password", "$2a$04$muvD00tUVe.IAA2Way0K.erEEzQ/QHrw00tbP8Ihq9I9J9MUmoG6W"], ["confirmation_token", "Em2MzASkxs3E_zy4KXn9"], ["confirmation_sent_at", "2019-10-13 19:06:57.443293"], ["name", "Rusty Pipes"], ["email", "miguel@bode.name"], ["created_at", "2019-10-13 19:06:57.443169"], ["updated_at", "2019-10-13 19:06:57.443169"]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22Em2MzASkxs3E_zy4KXn9-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fgrahamstreich.name%2Fchang.lemke%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:06:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"Em2MzASkxs3E_zy4KXn9-invalid\"\n redirectUrl: \"http://grahamstreich.name/chang.lemke\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "Em2MzASkxs3E_zy4KXn9-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "c1564cc0786a9fc6f6159151c7a5b9a6edd6222b05d86dda219b4d1c540eebcb"], ["LIMIT", 1]] Completed 200 OK in 98ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "maire_batz@farrell.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "maire_batz@farrell.io"], ["encrypted_password", "$2a$04$sIN3z3F13/Dx43hk86uTDeGFRTAG5MZkDjc.jwIrg6QP1j8jRGgoe"], ["confirmed_at", "2019-10-13 19:06:57.549284"], ["name", "Bjorn Free"], ["email", "maire_batz@farrell.io"], ["created_at", "2019-10-13 19:06:57.550048"], ["updated_at", "2019-10-13 19:06:57.550048"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7KcL8CHHp02xqpJlS1lk7w\":{\"token\":\"$2a$10$3BmOMe5bt.RdkXo4t8D0feMJSDrtszUZvEqQr400AIEz7Ptzh9IFG\",\"expiry\":1572203217,\"updated_at\":\"2019-10-13 19:06:57 UTC\"}}"], ["updated_at", "2019-10-13 19:06:57.602294"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:06:57 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "maire_batz@farrell.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lacey_altenwerth@green.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lacey_altenwerth@green.co"], ["encrypted_password", "$2a$04$qEJ.ka0tP3xhO8GdYjMXeOMoUDPe7k1hZmo74fDMqICEKZUNvFI3S"], ["confirmed_at", "2019-10-13 19:06:57.666264"], ["name", "Tom Katt"], ["email", "lacey_altenwerth@green.co"], ["created_at", "2019-10-13 19:06:57.667135"], ["updated_at", "2019-10-13 19:06:57.667135"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:06:57 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jenna.lesch@andersoncarter.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jenna.lesch@andersoncarter.org"], ["encrypted_password", "$2a$04$sMR5efsrArFfnAIbpvZVR.TT2Is8sVgG5aJwSPUtma5k/JKIzqS6u"], ["confirmed_at", "2019-10-13 19:07:01.050073"], ["name", "Willie Maykit"], ["email", "jenna.lesch@andersoncarter.org"], ["created_at", "2019-10-13 19:07:01.051601"], ["updated_at", "2019-10-13 19:07:01.051601"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jenna.lesch@andersoncarter.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jenna.lesch@andersoncarter.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"_SDfDdYO80_5N7WrVGFZUQ\":{\"token\":\"$2a$10$LHSG2h12Y0B8rsBx0YQMAuDGSxe6RCGCv8qUSMENhSReQp4VKQkKO\",\"expiry\":1572203221,\"updated_at\":\"2019-10-13 19:07:01 UTC\"}}"], ["updated_at", "2019-10-13 19:07:01.136010"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:07:01.138980"], ["last_sign_in_at", "2019-10-13 19:07:01.138980"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:07:01.139183"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 71ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 22886) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "michele_ryan@douglas.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "michele_ryan@douglas.biz"], ["encrypted_password", "$2a$04$KCySAZbuQX87myhX3r.BX.RjucB55jMUsS4.sBP4opzrVLVB9/I1O"], ["confirmed_at", "2019-10-13 19:07:01.146376"], ["name", "I. Lasch"], ["email", "michele_ryan@douglas.biz"], ["created_at", "2019-10-13 19:07:01.147128"], ["updated_at", "2019-10-13 19:07:01.147128"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"michele_ryan@douglas.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "michele_ryan@douglas.biz"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2386)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sid@fadelklocko.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sid@fadelklocko.name"], ["encrypted_password", "$2a$04$s.SyT0dyDR95MyRuFGAQCO.hx1WCJUN4VbI8PlIIttV9oNjjKy0ju"], ["confirmation_token", "bJox1uotazqHbLYzfNmz"], ["confirmation_sent_at", "2019-10-13 19:07:01.157582"], ["name", "Noah Riddle"], ["email", "sid@fadelklocko.name"], ["created_at", "2019-10-13 19:07:01.157471"], ["updated_at", "2019-10-13 19:07:01.157471"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sid@fadelklocko.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sid@fadelklocko.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1704)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tommy@robertsyost.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tommy@robertsyost.name"], ["encrypted_password", "$2a$04$QBbtHWR1NP3sscH8UBQS9.EKpsMX1ey8leG0vC4N05MvGIchdjgBq"], ["confirmed_at", "2019-10-13 19:07:01.165575"], ["locked_at", "2019-10-13 19:07:01.165587"], ["name", "Al Dente"], ["email", "tommy@robertsyost.name"], ["created_at", "2019-10-13 19:07:01.166561"], ["updated_at", "2019-10-13 19:07:01.166561"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tommy@robertsyost.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tommy@robertsyost.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1723)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rosemarie@rogahnokon.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rosemarie@rogahnokon.org"], ["encrypted_password", "$2a$04$mGWEazAvSG1UZlWZ.XPTLeYSiWHuuMje8MHg1Y0mxJnV5D4VvzFx."], ["confirmed_at", "2019-10-13 19:07:01.175232"], ["name", "Rich Mann"], ["email", "rosemarie@rogahnokon.org"], ["created_at", "2019-10-13 19:07:01.176168"], ["updated_at", "2019-10-13 19:07:01.176168"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rosemarie@rogahnokon.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rosemarie@rogahnokon.org"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1701)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "armanda@emmerich.net"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "armanda@emmerich.net"], ["encrypted_password", "$2a$04$zo8UHtYEVgPEMusXJ5Cenuq3ccrk7UJcMu1t9vmuL3ZZjndph9YC6"], ["confirmed_at", "2019-10-13 19:07:01.196452"], ["email", "armanda@emmerich.net"], ["created_at", "2019-10-13 19:07:01.197778"], ["updated_at", "2019-10-13 19:07:01.197778"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"armanda@emmerich.net\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "armanda@emmerich.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"VXp3iYhZyPKDUtzzRVZl3w\":{\"token\":\"$2a$10$p2ECvCS3yqKFdz31X.eBcevUlO4RoJMGMeVkN5RxzOB8MfeR2s/U6\",\"expiry\":1572203221,\"updated_at\":\"2019-10-13 19:07:01 UTC\"}}"], ["updated_at", "2019-10-13 19:07:01.255697"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2750)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "darcey@buckridge.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "darcey@buckridge.co"], ["encrypted_password", "$2a$04$Z.xdf/qiTaGiWNneHcdZpOvfgi5EliF4UQ2fs.gWaWxet4jsGRxua"], ["confirmed_at", "2019-10-13 19:07:01.261381"], ["name", "Hein Noon"], ["email", "darcey@buckridge.co"], ["created_at", "2019-10-13 19:07:01.262325"], ["updated_at", "2019-10-13 19:07:01.262325"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"TvGgvzCnIJaXjQfosP6hLA\":{\"token\":\"$2a$10$eLT5JKc8CXkNQsPShp5St.jxDQqjezw6fTTcuKY7K8/I3zcTJ.HWK\",\"expiry\":1572203221,\"updated_at\":\"2019-10-13 19:07:01 UTC\"}}"], ["updated_at", "2019-10-13 19:07:01.315602"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "darcey@buckridge.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:07:01.364939"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2195) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1237)  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gene@blicktillman.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gene@blicktillman.net"], ["encrypted_password", "$2a$04$1QqIN3EW724gn5NBreMYLOs9BlP.otQvexJLG4O2V/lpQlMZ//7.6"], ["confirmed_at", "2019-10-13 19:07:01.373187"], ["name", "Chris Coe"], ["email", "gene@blicktillman.net"], ["created_at", "2019-10-13 19:07:01.373984"], ["updated_at", "2019-10-13 19:07:01.373984"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "marquerite@kautzerhoeger.biz"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "marquerite@kautzerhoeger.biz"], ["encrypted_password", "$2a$04$ukQWgrKx63X1Y6HqbOxDfuLPtyatqRdW5N/s7/PWklu4qtzLSupPe"], ["confirmed_at", "2019-10-13 19:07:01.377826"], ["email", "marquerite@kautzerhoeger.biz"], ["created_at", "2019-10-13 19:07:01.378622"], ["updated_at", "2019-10-13 19:07:01.378622"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"Y2F_1E5pbaMKmRqWyjIIbg\":{\"token\":\"$2a$10$YQzC7m0dwt4yNwMrxnez2uvNcgvPTC9UMpxbrT7AZZdaLNNruLT7e\",\"expiry\":1572203221,\"updated_at\":\"2019-10-13 19:07:01 UTC\"}}"], ["updated_at", "2019-10-13 19:07:01.432173"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "marquerite@kautzerhoeger.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:07:01.485950"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2126) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tomoko_rolfson@bodebauch.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tomoko_rolfson@bodebauch.info"], ["encrypted_password", "$2a$04$D8KWoi2vTclDy0scogPqeegTij2s7rOYoq.oTRe0U8f0ZQFeAbvvy"], ["confirmed_at", "2019-10-13 19:07:01.493629"], ["name", "Anita Bathe"], ["email", "tomoko_rolfson@bodebauch.info"], ["created_at", "2019-10-13 19:07:01.495203"], ["updated_at", "2019-10-13 19:07:01.495203"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"tomoko_rolfson@bodebauch.info\",\n redirectUrl: \"http://goyettekaulke.co/kristofer\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "tomoko_rolfson@bodebauch.info"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a352c05039ca0a56088c3b11449f512d3d8500f18836fea5ea7e6cff58c074d9"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "a352c05039ca0a56088c3b11449f512d3d8500f18836fea5ea7e6cff58c074d9"], ["reset_password_sent_at", "2019-10-13 19:07:01.582998"], ["updated_at", "2019-10-13 19:07:01.583161"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 2.2ms | Allocations: 1295) Devise::Mailer#reset_password_instructions: processed outbound mail in 137.6ms Delivered mail 5da375d5b0ec2_d2b93ff9b482ffd0957a4@Marios-MacBook-Pro.local.mail (5.2ms) Date: Sun, 13 Oct 2019 14:07:01 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: tomoko_rolfson@bodebauch.info Message-ID: <5da375d5b0ec2_d2b93ff9b482ffd0957a4@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: tomoko_rolfson@bodebauch.info provider: email redirect-url: http://goyettekaulke.co/kristofer client-config: default

Hello tomoko_rolfson@bodebauch.info!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 230ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 68103) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fgoyettekaulke.co%2Fkristofer&variables%5Btoken%5D=zVgPFLyR-SbjRLbkyKVm" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://goyettekaulke.co/kristofer", "token"=>"zVgPFLyR-SbjRLbkyKVm"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a352c05039ca0a56088c3b11449f512d3d8500f18836fea5ea7e6cff58c074d9"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BeTSMEZDUI2EN2-QQIIwyw\":{\"token\":\"$2a$10$6NWNRq9UgjRYAeTlklrHeuu/rY1sJLcKEr0P5JVWPgVGJXb5Ynb8O\",\"expiry\":1572203221}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:07:01.780041"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://goyettekaulke.co/kristofer?access-token=14azAnWsXTvF_gHSTXzjag&client=BeTSMEZDUI2EN2-QQIIwyw&client_id=BeTSMEZDUI2EN2-QQIIwyw&config=&expiry=1572203221&reset_password=true&token=14azAnWsXTvF_gHSTXzjag&uid=tomoko_rolfson%40bodebauch.info Completed 302 Found in 52ms (ActiveRecord: 0.2ms | Allocations: 2474) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://wehnerpouros.io/shayne\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1519)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"normand@west.io\"\n name: \"Nathanial Ruecker\"\n password: \"B757fVuZn\"\n passwordConfirmation: \"B757fVuZn\"\n confirmSuccessUrl: \"http://mante.net/precious.emmerich\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "normand@west.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "normand@west.io"], ["encrypted_password", "$2a$04$hRFnMrPVw2f3FiLFiI2VH.QRQHA1iO0PndpZTW4tHpJSBR9SVk0OS"], ["confirmation_token", "1YiFt5uZCzjCn89Zr2bG"], ["confirmation_sent_at", "2019-10-13 19:07:01.797275"], ["name", "Nathanial Ruecker"], ["email", "normand@west.io"], ["created_at", "2019-10-13 19:07:01.797187"], ["updated_at", "2019-10-13 19:07:01.797187"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.8ms | Allocations: 586) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms Delivered mail 5da375d5c399d_d2b93ff9b482ffd09584b@Marios-MacBook-Pro.local.mail (1.2ms) Date: Sun, 13 Oct 2019 14:07:01 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: normand@west.io Message-ID: <5da375d5c399d_d2b93ff9b482ffd09584b@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://mante.net/precious.emmerich

Welcome normand@west.io!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5841)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fmante.net%2Fprecious.emmerich&variables%5Btoken%5D=1YiFt5uZCzjCn89Zr2bG" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://mante.net/precious.emmerich", "token"=>"1YiFt5uZCzjCn89Zr2bG"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "1YiFt5uZCzjCn89Zr2bG"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:07:01.810004"], ["updated_at", "2019-10-13 19:07:01.810229"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://mante.net/precious.emmerich?account_confirmation_success=true Completed 302 Found in 6ms (ActiveRecord: 0.4ms | Allocations: 2514) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Adena Schinner\"\n password: \"JhVlJtDnC5\"\n passwordConfirmation: \"JhVlJtDnC5\"\n confirmSuccessUrl: \"http://fisherschmidt.info/roselia\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 3063)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "andria_maggio@brekke.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "andria_maggio@brekke.biz"], ["encrypted_password", "$2a$04$ZGofq1QlPgH3LwXFvzPiEuaWXmws0DzW2dhXlkab5Y7Bj9WqMzscm"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:07:01.827451"], ["name", "Ida Whana"], ["email", "andria_maggio@brekke.biz"], ["created_at", "2019-10-13 19:07:01.828452"], ["updated_at", "2019-10-13 19:07:01.828452"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"__vkocfskhHv81d7rcqGnQ\":{\"token\":\"$2a$10$K3JH5bM5wnSgho/nf5S5zOQRFWjh6yVVgo/vB6tpXq0Ms1KKW.a2K\",\"expiry\":1572203221,\"updated_at\":\"2019-10-13 19:07:01 UTC\"}}"], ["updated_at", "2019-10-13 19:07:01.882242"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "andria_maggio@brekke.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$xSYixFEQjgJdVA2ZfuiREeua7.3pS43wT/JWXc1ckVSkpiXaUJ8sC"], ["updated_at", "2019-10-13 19:07:01.935759"], ["id", 1]]  (0.4ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:07:01.937229"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.7ms | Allocations: 3226) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jonah@ornmraz.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jonah@ornmraz.net"], ["encrypted_password", "$2a$04$tRe58bWEmArv8DTGt0osdujm/Rp6tRHkc13Ttlxm/rZETXTHslBJm"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:07:01.942020"], ["name", "Hy Gene"], ["email", "jonah@ornmraz.net"], ["created_at", "2019-10-13 19:07:01.942678"], ["updated_at", "2019-10-13 19:07:01.942678"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"utjPOOljwFfDuhzOeQux6w\":{\"token\":\"$2a$10$UGFMg/DHDGyYjz3RefQrCutBe/gqKaKNn6yVfM4V1j35BK4Z2DLjG\",\"expiry\":1572203221,\"updated_at\":\"2019-10-13 19:07:01 UTC\"}}"], ["updated_at", "2019-10-13 19:07:01.991907"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jonah@ornmraz.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$SoZqOQJf62/s2g/sY4AhSeylDYukNCnWv2FiiWcb5/alMhjh9Lch2"], ["updated_at", "2019-10-13 19:07:02.045596"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:07:02.046680"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 3215) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "monte@hegmann.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "monte@hegmann.biz"], ["encrypted_password", "$2a$04$8OXFVczu/MiGIMFfpcPyFedraFbEuFaIiqC.UpMklNFecrpQtejoW"], ["confirmed_at", "2019-10-13 19:07:02.052567"], ["name", "Anne Teak"], ["email", "monte@hegmann.biz"], ["created_at", "2019-10-13 19:07:02.053267"], ["updated_at", "2019-10-13 19:07:02.053267"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fL-5pdInqnESgfQCgrd4UQ\":{\"token\":\"$2a$10$SPZWy/lpi2hYMv.eJahgmO9t9mUSwswCB6waChUsEtwkpichIfUEi\",\"expiry\":1572203222,\"updated_at\":\"2019-10-13 19:07:02 UTC\"}}"], ["updated_at", "2019-10-13 19:07:02.101700"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "monte@hegmann.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2681) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "giselle@mayert.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "giselle@mayert.net"], ["encrypted_password", "$2a$04$20ssWe6tAwRp33pzzKOTfey/hu26aY1Sko3IT.7VoKTNRqV8BegR."], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:07:02.160356"], ["name", "Doris Schutt"], ["email", "giselle@mayert.net"], ["created_at", "2019-10-13 19:07:02.161251"], ["updated_at", "2019-10-13 19:07:02.161251"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9SGJou2Ea2Uni367tQw99g\":{\"token\":\"$2a$10$VLp/FZei.DD7eZ0.cMM.N.yoaKQFkyD4pGNfT03a8zHmhx6UDOowC\",\"expiry\":1572203222,\"updated_at\":\"2019-10-13 19:07:02 UTC\"}}"], ["updated_at", "2019-10-13 19:07:02.209674"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "giselle@mayert.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$tdeBEG.AavBIVepPmodL9.a1tvQ8cAwBmZ8xWCJW7HlVduvIy/06G"], ["updated_at", "2019-10-13 19:07:02.263988"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:07:02.265046"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 3215) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jamal.schowalter@gottlieb.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jamal.schowalter@gottlieb.co"], ["encrypted_password", "$2a$04$OZAg.9/cSCicUS6YrK6mze34eFG2fpG9Azavyjugz8Q1gpS6K/M9e"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:07:02.271008"], ["name", "Chuck Roast"], ["email", "jamal.schowalter@gottlieb.co"], ["created_at", "2019-10-13 19:07:02.271752"], ["updated_at", "2019-10-13 19:07:02.271752"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"uTNWweQaaaq1ytNIADqX2Q\":{\"token\":\"$2a$10$MT5jnyrd6MfXGxgVSV9yM.L/IaXiFTjHx8PMlMbKYFHjcxLp5W8wC\",\"expiry\":1572203222,\"updated_at\":\"2019-10-13 19:07:02 UTC\"}}"], ["updated_at", "2019-10-13 19:07:02.319216"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jamal.schowalter@gottlieb.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$1X4ak8bDLxjKbod2tXRkXeD7CGlBbzqMhAFQAeGM6iHIGdumGsQT2"], ["updated_at", "2019-10-13 19:07:02.375230"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:07:02.376324"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 3218) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joan@jenkins.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "joan@jenkins.biz"], ["encrypted_password", "$2a$04$3vc/rueu3yaZWp33yh.lp.ER9cUDR7rAhIHMNyjzsLPWBDIKqN.ue"], ["confirmed_at", "2019-10-13 19:07:02.383912"], ["name", "Sam Urai"], ["email", "joan@jenkins.biz"], ["created_at", "2019-10-13 19:07:02.384637"], ["updated_at", "2019-10-13 19:07:02.384637"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Fb2QiZx6oSD_IVPAmEWAzA\":{\"token\":\"$2a$10$xR5zy9O5DInBFZVTgyo8I.9MalFyQIdvDLuUWIcmYFr3C/9T40IKy\",\"expiry\":1572203222,\"updated_at\":\"2019-10-13 19:07:02 UTC\"}}"], ["updated_at", "2019-10-13 19:07:02.438368"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "joan@jenkins.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$KR.7VNVqBX3lwR5n9yfRF.1KNKzyAchbUXrBH16QYY4M4d6PKKuFK"], ["updated_at", "2019-10-13 19:07:02.491415"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2981) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "oscar@haleypredovic.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "oscar@haleypredovic.net"], ["encrypted_password", "$2a$04$uR8Q.WNfcO69yYcUHGvvq.EHSSN2yW3bRX6hKDauXAYC6OBjYFmWO"], ["confirmed_at", "2019-10-13 19:07:02.498011"], ["name", "Rocky Shore"], ["email", "oscar@haleypredovic.net"], ["created_at", "2019-10-13 19:07:02.498824"], ["updated_at", "2019-10-13 19:07:02.498824"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1487) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "caroll@sporergrady.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "caroll@sporergrady.org"], ["encrypted_password", "$2a$04$MjaXzV59W7MQaM6cnun58elZfs8/Z8S3C2X4CTLezYd4BRzFBE7EG"], ["confirmed_at", "2019-10-13 19:07:02.506450"], ["name", "Olive Branch"], ["email", "caroll@sporergrady.org"], ["created_at", "2019-10-13 19:07:02.507292"], ["updated_at", "2019-10-13 19:07:02.507292"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f73daf34264a403f090822a1d020f670229cd75e63443f09f397fe0b4b928f77"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f73daf34264a403f090822a1d020f670229cd75e63443f09f397fe0b4b928f77"], ["reset_password_sent_at", "2019-10-13 19:07:02.508780"], ["updated_at", "2019-10-13 19:07:02.508896"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22ckS7PJTXGcu_g47ERpss%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"ckS7PJTXGcu_g47ERpss\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f73daf34264a403f090822a1d020f670229cd75e63443f09f397fe0b4b928f77"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"M4SBWXQ43iLTYCTJYjhOBw\":{\"token\":\"$2a$10$UOP3WH8DaWgEq6duKhaH2O4cgY6h.X88ikvWZDIhzQBJd6IeR0Fe6\",\"expiry\":1572203222}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:07:02.565809"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"M4SBWXQ43iLTYCTJYjhOBw\":{\"token\":\"$2a$10$UOP3WH8DaWgEq6duKhaH2O4cgY6h.X88ikvWZDIhzQBJd6IeR0Fe6\",\"expiry\":1572203222},\"kVtOHMUgvbnK9jVZqs7xFg\":{\"token\":\"$2a$10$hXNe2ddBtRJulVKtzNUwhuthqu4OpH9KjOLhDjCywqfNXm5Ed5lOW\",\"expiry\":1572203222,\"updated_at\":\"2019-10-13 19:07:02 UTC\"}}"], ["updated_at", "2019-10-13 19:07:02.612529"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 103ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2969)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cortez@murphy.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cortez@murphy.net"], ["encrypted_password", "$2a$04$PjgBruwlkbsGCW0L5Ou2NOOPCS8m52ELD8RQrMJidg5fhEvcp5nGK"], ["confirmed_at", "2019-10-13 19:07:02.618743"], ["name", "Winsom Cash"], ["email", "cortez@murphy.net"], ["created_at", "2019-10-13 19:07:02.619775"], ["updated_at", "2019-10-13 19:07:02.619775"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1f8a0c82a66c0aa9fbefac5239d41e1796d7a7b9d16ac2d43a26ca8a00db33da"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "1f8a0c82a66c0aa9fbefac5239d41e1796d7a7b9d16ac2d43a26ca8a00db33da"], ["reset_password_sent_at", "2019-10-13 19:07:02.621708"], ["updated_at", "2019-10-13 19:07:02.621821"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22Fg-n84Cy6mo3MZSA_9PR%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"Fg-n84Cy6mo3MZSA_9PR\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1f8a0c82a66c0aa9fbefac5239d41e1796d7a7b9d16ac2d43a26ca8a00db33da"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OJACgeegesARncXaxNNeOQ\":{\"token\":\"$2a$10$4YjMsz7Y8EeT8TP1svIC..NCYN0c9WXDRnJ/PRN3i4v3BFJmqmgqW\",\"expiry\":1572203222}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:07:02.680373"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=Cci-rbO308jdRK-4Kq5aFQ&client=OJACgeegesARncXaxNNeOQ&client_id=OJACgeegesARncXaxNNeOQ&config=&expiry=1572203222&reset_password=true&token=Cci-rbO308jdRK-4Kq5aFQ&uid=cortez%40murphy.net Completed 302 Found in 58ms (ActiveRecord: 0.3ms | Allocations: 2231) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kathe@erdmankeler.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kathe@erdmankeler.org"], ["encrypted_password", "$2a$04$1q/BnAeOfdCsE4BE.BlvHeYzUn5.46O.jooWgA06Qtsp5D3uSmLla"], ["confirmed_at", "2019-10-13 09:07:02"], ["name", "Helena Hanbaskett"], ["email", "kathe@erdmankeler.org"], ["created_at", "2019-10-13 09:07:02"], ["updated_at", "2019-10-13 09:07:02"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b6c32ed137efb0590edba2bded18b1e60f70442fa5d05afe10d2efbc74e18543"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b6c32ed137efb0590edba2bded18b1e60f70442fa5d05afe10d2efbc74e18543"], ["reset_password_sent_at", "2019-10-13 09:07:02"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22BmB4QzW1bK149T5NcXba%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"BmB4QzW1bK149T5NcXba\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b6c32ed137efb0590edba2bded18b1e60f70442fa5d05afe10d2efbc74e18543"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1572)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ernie@willms.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ernie@willms.io"], ["encrypted_password", "$2a$04$vMyNgX5jCO3nPT5xRLhHIOQ/WeyP0/WdGQx8TFZVO/3fXape/mXTK"], ["confirmed_at", "2019-10-13 19:07:02.697996"], ["name", "Ariel Hassle"], ["email", "ernie@willms.io"], ["created_at", "2019-10-13 19:07:02.698973"], ["updated_at", "2019-10-13 19:07:02.698973"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a10f9cf825977f2f8c215164242fb6f2bf1f5d99f0676ca59156b319b8a85b2e"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "a10f9cf825977f2f8c215164242fb6f2bf1f5d99f0676ca59156b319b8a85b2e"], ["reset_password_sent_at", "2019-10-13 19:07:02.700450"], ["updated_at", "2019-10-13 19:07:02.700561"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22wn2ag3cHs6o7Tpo3y2-hinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"wn2ag3cHs6o7Tpo3y2-hinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "01e4e638ebe0f0da3e52fc7f5000e9ca79063a964dea4a7529e66fb61f20e5ad"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1530)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "josiah@pagac.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "josiah@pagac.co"], ["encrypted_password", "$2a$04$/aEMlMBczIfgAiXlqLmP1ORIfS8nbSal2.D9gAqFosv3KP.oBNx9W"], ["confirmation_token", "sd11jmkTte2baLtX3RCp"], ["confirmation_sent_at", "2019-10-13 19:07:02.709330"], ["name", "Ilene Left"], ["email", "josiah@pagac.co"], ["created_at", "2019-10-13 19:07:02.709242"], ["updated_at", "2019-10-13 19:07:02.709242"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.5ms | Allocations: 413) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.4ms Delivered mail 5da375d6adeee_d2b93ff9b482ffd09592c@Marios-MacBook-Pro.local.mail (1.3ms) Date: Sun, 13 Oct 2019 14:07:02 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: josiah@pagac.co Message-ID: <5da375d6adeee_d2b93ff9b482ffd09592c@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome josiah@pagac.co!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22sd11jmkTte2baLtX3RCp%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Ftorp.info%2Fsamuel.kuvalis%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"sd11jmkTte2baLtX3RCp\"\n redirectUrl: \"http://torp.info/samuel.kuvalis\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "sd11jmkTte2baLtX3RCp"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:07:02.716630"], ["updated_at", "2019-10-13 19:07:02.716864"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://torp.info/samuel.kuvalis?account_confirmation_success=true Completed 302 Found in 3ms (ActiveRecord: 0.3ms | Allocations: 2115) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "renea@schuster.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "renea@schuster.org"], ["encrypted_password", "$2a$04$g9RvzozfmGEYHznzljpnWODz.f05VzBJy2VhjR1Dkflka0H7k1tTG"], ["confirmation_token", "BCLW68KmCbP7foyUaUep"], ["confirmation_sent_at", "2019-10-13 19:07:02.722782"], ["name", "Tish Hughes"], ["email", "renea@schuster.org"], ["created_at", "2019-10-13 19:07:02.722703"], ["updated_at", "2019-10-13 19:07:02.722703"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22BCLW68KmCbP7foyUaUep-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fmckenzieziemann.name%2Fdavid_kuhic%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"BCLW68KmCbP7foyUaUep-invalid\"\n redirectUrl: \"http://mckenzieziemann.name/david_kuhic\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "BCLW68KmCbP7foyUaUep-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "2283cdd4252448a6f5de015cf050753fde00466e37dbf9d3d85844a529e15ae9"], ["LIMIT", 1]] Completed 200 OK in 95ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2326) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeremy_kerluke@robertscartwright.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jeremy_kerluke@robertscartwright.net"], ["encrypted_password", "$2a$04$h.IEbZItCY15/7O/1BLtQuj2rdEW1Riwbv.tEa7U0aQTSVW3dadgC"], ["confirmed_at", "2019-10-13 19:07:02.824008"], ["name", "Easton West"], ["email", "jeremy_kerluke@robertscartwright.net"], ["created_at", "2019-10-13 19:07:02.824996"], ["updated_at", "2019-10-13 19:07:02.824996"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"PccVXD86Pbe4HuI4siNCFQ\":{\"token\":\"$2a$10$cuwU6nf6Q4ty0qRct56BJ.KB5TPzJvEKoVP1XNa1uvqCtbh0cDMse\",\"expiry\":1572203222,\"updated_at\":\"2019-10-13 19:07:02 UTC\"}}"], ["updated_at", "2019-10-13 19:07:02.874408"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:07:02 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jeremy_kerluke@robertscartwright.net"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 58ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 11695)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "morgan@rolfsonboyle.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "morgan@rolfsonboyle.net"], ["encrypted_password", "$2a$04$e6mLax2DO.42lzFbbBr7hO8EfQvr1c1wiYB4XsZlvFNOjBnvtLqIK"], ["confirmed_at", "2019-10-13 19:07:02.939995"], ["name", "Tommy Gunn"], ["email", "morgan@rolfsonboyle.net"], ["created_at", "2019-10-13 19:07:02.940746"], ["updated_at", "2019-10-13 19:07:02.940746"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:07:02 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.2ms) rollback transaction  (0.9ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "darrick.ward@crooks.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "darrick.ward@crooks.co"], ["encrypted_password", "$2a$04$qKjY2dAGCB7fzxPiJxRRU.g1XLkgJhsBffN0jGkV0o18M5VzjFPB2"], ["confirmed_at", "2019-10-13 19:07:06.280047"], ["name", "Ferris Wheeler"], ["email", "darrick.ward@crooks.co"], ["created_at", "2019-10-13 19:07:06.281330"], ["updated_at", "2019-10-13 19:07:06.281330"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"darrick.ward@crooks.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "darrick.ward@crooks.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"h5gXzJ4Q86iBvuLv6Fz76g\":{\"token\":\"$2a$10$TDp0oSTSZkkvMNwalwwg.uGD9b5F0olBwv4Lj/pEabGQVQTCqr0gi\",\"expiry\":1572203226,\"updated_at\":\"2019-10-13 19:07:06 UTC\"}}"], ["updated_at", "2019-10-13 19:07:06.357746"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:07:06.362035"], ["last_sign_in_at", "2019-10-13 19:07:06.362035"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:07:06.362390"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 68ms (Views: 0.2ms | ActiveRecord: 0.8ms | Allocations: 18368) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ludivina_volkman@croninkunde.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ludivina_volkman@croninkunde.com"], ["encrypted_password", "$2a$04$cBntTKi9lxMBvia2Iam6uOF768Jgi6LDIB/d2.LmKYLhIp0yHDVfq"], ["confirmed_at", "2019-10-13 19:07:06.371945"], ["name", "Aretha Holly"], ["email", "ludivina_volkman@croninkunde.com"], ["created_at", "2019-10-13 19:07:06.372968"], ["updated_at", "2019-10-13 19:07:06.372968"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ludivina_volkman@croninkunde.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ludivina_volkman@croninkunde.com"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2044)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tyrell_baumbach@lockman.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tyrell_baumbach@lockman.info"], ["encrypted_password", "$2a$04$h9o3n.XUj7twBfhrHrv/iuxhvUCvSDH0MN4xqQxbW3BoGqJCPCWRq"], ["confirmation_token", "XGnzESPjdZrhy5Q8oieZ"], ["confirmation_sent_at", "2019-10-13 19:07:06.384518"], ["name", "Kenny Dewitt"], ["email", "tyrell_baumbach@lockman.info"], ["created_at", "2019-10-13 19:07:06.384427"], ["updated_at", "2019-10-13 19:07:06.384427"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tyrell_baumbach@lockman.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tyrell_baumbach@lockman.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1363)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "laci.kling@hilll.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "laci.kling@hilll.co"], ["encrypted_password", "$2a$04$cmXbHxFxU9d61UJIDmE.0e5l51mHIzI4yWmSwMM3jN6Od2nY8MOsO"], ["confirmed_at", "2019-10-13 19:07:06.392772"], ["locked_at", "2019-10-13 19:07:06.392789"], ["name", "Herbie Voor"], ["email", "laci.kling@hilll.co"], ["created_at", "2019-10-13 19:07:06.393885"], ["updated_at", "2019-10-13 19:07:06.393885"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"laci.kling@hilll.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "laci.kling@hilll.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alejandro@wuckertauer.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alejandro@wuckertauer.io"], ["encrypted_password", "$2a$04$vl9X72/leLkAYP5RzTOB6uZuVq/A7P5r.0TvYlupzZNOIFzCmGdn2"], ["confirmed_at", "2019-10-13 19:07:06.402451"], ["name", "Ben Down"], ["email", "alejandro@wuckertauer.io"], ["created_at", "2019-10-13 19:07:06.403757"], ["updated_at", "2019-10-13 19:07:06.403757"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"alejandro@wuckertauer.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alejandro@wuckertauer.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1359)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "bennett.buckridge@bergejohns.co"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "bennett.buckridge@bergejohns.co"], ["encrypted_password", "$2a$04$3a8PCIjst.UcZS/xTlbqLe.w2exxggK4nyUEVLv6P/9/dBCwBQk7."], ["confirmed_at", "2019-10-13 19:07:06.423284"], ["email", "bennett.buckridge@bergejohns.co"], ["created_at", "2019-10-13 19:07:06.424664"], ["updated_at", "2019-10-13 19:07:06.424664"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"bennett.buckridge@bergejohns.co\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "bennett.buckridge@bergejohns.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"5u8kRAgdBTlc38d1nny-9w\":{\"token\":\"$2a$10$5FxrJCzmuPYnNhiNf1N.se8DeKSrxYEDKmzp9mfw5wT3lqu1cA3yq\",\"expiry\":1572203226,\"updated_at\":\"2019-10-13 19:07:06 UTC\"}}"], ["updated_at", "2019-10-13 19:07:06.485933"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2404)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "glynis.reichel@heel.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "glynis.reichel@heel.co"], ["encrypted_password", "$2a$04$qV60xeT3QIS8sHy16daLOOnkR/0dX.jamEAEiOgvTDnrN5RVX3SBK"], ["confirmed_at", "2019-10-13 19:07:06.491062"], ["name", "Jim Laucher"], ["email", "glynis.reichel@heel.co"], ["created_at", "2019-10-13 19:07:06.492124"], ["updated_at", "2019-10-13 19:07:06.492124"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kL-nzw_InoAvA7aUneurtw\":{\"token\":\"$2a$10$OnlRlHnoNcOaJb0O9.D5UO81cEeOrCJQT9JIPKH/KD3BTDUtjcJUC\",\"expiry\":1572203226,\"updated_at\":\"2019-10-13 19:07:06 UTC\"}}"], ["updated_at", "2019-10-13 19:07:06.542044"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "glynis.reichel@heel.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:07:06.595927"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1896) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joette@muller.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "joette@muller.io"], ["encrypted_password", "$2a$04$8uSFfumadqWwuWiCK1WO.eJnnhVyhEGCXNi3LwNqls/PwCN14KUA2"], ["confirmed_at", "2019-10-13 19:07:06.604540"], ["name", "Liz Onnia"], ["email", "joette@muller.io"], ["created_at", "2019-10-13 19:07:06.605441"], ["updated_at", "2019-10-13 19:07:06.605441"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "devon_jakubowski@pacocha.net"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "devon_jakubowski@pacocha.net"], ["encrypted_password", "$2a$04$fHPPLuxhS.BPjjZ7kZoKYu4GJXkBo7XvO10lU.qlZsY.iRHaOPbBi"], ["confirmed_at", "2019-10-13 19:07:06.609408"], ["email", "devon_jakubowski@pacocha.net"], ["created_at", "2019-10-13 19:07:06.610320"], ["updated_at", "2019-10-13 19:07:06.610320"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"TrhxVgg5EH1Qjm_YU7ynfg\":{\"token\":\"$2a$10$9Cm5YpD4j0eLIRU/RrlEReWJMZ3oLYZpcdUIVG10YcaHgjVSdqN.a\",\"expiry\":1572203226,\"updated_at\":\"2019-10-13 19:07:06 UTC\"}}"], ["updated_at", "2019-10-13 19:07:06.661073"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "devon_jakubowski@pacocha.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:07:06.713852"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1827) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alonso@stracke.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alonso@stracke.info"], ["encrypted_password", "$2a$04$zp79lipszqx5zJX7QyWvluDCEBDxJnjLx8TGabl1JgIaFw/dOjxIS"], ["confirmed_at", "2019-10-13 19:07:06.719957"], ["name", "June Bugg"], ["email", "alonso@stracke.info"], ["created_at", "2019-10-13 19:07:06.720704"], ["updated_at", "2019-10-13 19:07:06.720704"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"alonso@stracke.info\",\n redirectUrl: \"http://kuphal.name/gordon\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "alonso@stracke.info"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "351a4fc97d3d5de65a05d8c1e12b859245c9dec6d747cdd5d87c5b3fa51ee1f1"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "351a4fc97d3d5de65a05d8c1e12b859245c9dec6d747cdd5d87c5b3fa51ee1f1"], ["reset_password_sent_at", "2019-10-13 19:07:06.810778"], ["updated_at", "2019-10-13 19:07:06.810940"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.6ms | Allocations: 1295) Devise::Mailer#reset_password_instructions: processed outbound mail in 132.0ms Delivered mail 5da375dae6feb_d2d13fecb0832020893b5@Marios-MacBook-Pro.local.mail (4.1ms) Date: Sun, 13 Oct 2019 14:07:06 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: alonso@stracke.info Message-ID: <5da375dae6feb_d2d13fecb0832020893b5@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: alonso@stracke.info provider: email redirect-url: http://kuphal.name/gordon client-config: default

Hello alonso@stracke.info!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 226ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 67767) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fkuphal.name%2Fgordon&variables%5Btoken%5D=afuNwTwcTv2bJ4N4-w5-" for 127.0.0.1 at 2019-10-13 14:07:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://kuphal.name/gordon", "token"=>"afuNwTwcTv2bJ4N4-w5-"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "351a4fc97d3d5de65a05d8c1e12b859245c9dec6d747cdd5d87c5b3fa51ee1f1"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.3ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"PJTA7L6sYXR5F9JpTdVXdQ\":{\"token\":\"$2a$10$z84kBGn8GOZidgV5RyjB8u.M2TdozJ0r6piLfyNz2kSPjMh24UcQu\",\"expiry\":1572203226}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:07:07.000329"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://kuphal.name/gordon?access-token=7AbaBtub8c0JldLQYtBkSg&client=PJTA7L6sYXR5F9JpTdVXdQ&client_id=PJTA7L6sYXR5F9JpTdVXdQ&config=&expiry=1572203226&reset_password=true&token=7AbaBtub8c0JldLQYtBkSg&uid=alonso%40stracke.info Completed 302 Found in 52ms (ActiveRecord: 0.5ms | Allocations: 2145) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://senger.biz/dudley.schumm\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"katrina.pfeffer@anderson.net\"\n name: \"Brianna Strosin\"\n password: \"WtCoKi5MbVkC03w\"\n passwordConfirmation: \"WtCoKi5MbVkC03w\"\n confirmSuccessUrl: \"http://flatley.net/audrea_romaguera\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "katrina.pfeffer@anderson.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "katrina.pfeffer@anderson.net"], ["encrypted_password", "$2a$04$Kff8xtWJKvzr6pcJr8dAMut1Scen2HuXwMxFjSZRgtldbZ0qYFWJ."], ["confirmation_token", "snwUzDnHZnz6vDUdx4ii"], ["confirmation_sent_at", "2019-10-13 19:07:07.014227"], ["name", "Brianna Strosin"], ["email", "katrina.pfeffer@anderson.net"], ["created_at", "2019-10-13 19:07:07.014148"], ["updated_at", "2019-10-13 19:07:07.014148"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.8ms | Allocations: 587) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.1ms Delivered mail 5da375db4672_d2d13fecb0832020894ea@Marios-MacBook-Pro.local.mail (1.2ms) Date: Sun, 13 Oct 2019 14:07:07 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: katrina.pfeffer@anderson.net Message-ID: <5da375db4672_d2d13fecb0832020894ea@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://flatley.net/audrea_romaguera

Welcome katrina.pfeffer@anderson.net!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 5469)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fflatley.net%2Faudrea_romaguera&variables%5Btoken%5D=snwUzDnHZnz6vDUdx4ii" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://flatley.net/audrea_romaguera", "token"=>"snwUzDnHZnz6vDUdx4ii"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "snwUzDnHZnz6vDUdx4ii"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:07:07.026346"], ["updated_at", "2019-10-13 19:07:07.026578"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://flatley.net/audrea_romaguera?account_confirmation_success=true Completed 302 Found in 7ms (ActiveRecord: 0.4ms | Allocations: 2180) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Dallas Pollich Sr.\"\n password: \"ItU1iEgWdFiU\"\n passwordConfirmation: \"ItU1iEgWdFiU\"\n confirmSuccessUrl: \"http://runtekshlerin.io/brain_prosacco\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2710)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sal.orn@schiller.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sal.orn@schiller.net"], ["encrypted_password", "$2a$04$QyR4Hr1Evff1TCokuAfS..lQ18bKSA7Rpmthi.eoEw89flQ5V1MBy"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:07:07.044397"], ["name", "Dan Geruss"], ["email", "sal.orn@schiller.net"], ["created_at", "2019-10-13 19:07:07.045295"], ["updated_at", "2019-10-13 19:07:07.045295"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ux340Ut1CDy9OwHMdLWKZQ\":{\"token\":\"$2a$10$s438CCitAdGSVV61VmN7mueSpc1gMYlTeuD2/0MtMJ/.2pwpzPaOi\",\"expiry\":1572203227,\"updated_at\":\"2019-10-13 19:07:07 UTC\"}}"], ["updated_at", "2019-10-13 19:07:07.099024"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sal.orn@schiller.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$nvFoL4no8fmdSq6MxenHz.mXBLMHb3kz1fsz2Ljnsku1XHzoNeMyK"], ["updated_at", "2019-10-13 19:07:07.153532"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:07:07.154618"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2882) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tennie@rosenbaum.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tennie@rosenbaum.co"], ["encrypted_password", "$2a$04$dkwiU27xC5G/XGOaVtK0GeeKagu1Hjhs6hJ8ioDIwiQjLtigD0pCC"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:07:07.160352"], ["name", "Mike Czech"], ["email", "tennie@rosenbaum.co"], ["created_at", "2019-10-13 19:07:07.161256"], ["updated_at", "2019-10-13 19:07:07.161256"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"PEFIN_KALJR7gh0a45iryA\":{\"token\":\"$2a$10$Y8tfQqBMkz9eJ1X4PYqB3uQBn99uyFYbn8d.67zCUymHticzWaEEO\",\"expiry\":1572203227,\"updated_at\":\"2019-10-13 19:07:07 UTC\"}}"], ["updated_at", "2019-10-13 19:07:07.211786"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tennie@rosenbaum.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$9ZBZ1Ce5fdER4dRohnpUv.k1fMQzrP8pb04n0q/CPf4I5yEEZ2L2W"], ["updated_at", "2019-10-13 19:07:07.266759"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:07:07.268428"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "pablo@stantonbarrows.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "pablo@stantonbarrows.info"], ["encrypted_password", "$2a$04$4lTS4AN1rgDNm5qIKX0AyOZdHZ05PngmZdf7WzjnsVe5oG9vXsYxS"], ["confirmed_at", "2019-10-13 19:07:07.275909"], ["name", "Chip Munk"], ["email", "pablo@stantonbarrows.info"], ["created_at", "2019-10-13 19:07:07.276902"], ["updated_at", "2019-10-13 19:07:07.276902"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2dw4sBh-HHkDu1wTgzj_HA\":{\"token\":\"$2a$10$JSG.izHMmAUuSC/gFry7Fujz0dM120MRVZu..IlHow.9WYG3qAgza\",\"expiry\":1572203227,\"updated_at\":\"2019-10-13 19:07:07 UTC\"}}"], ["updated_at", "2019-10-13 19:07:07.326388"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "pablo@stantonbarrows.info"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 2360) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "janeth.frami@ledner.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "janeth.frami@ledner.net"], ["encrypted_password", "$2a$04$UwS1KgG8twrF1QDUv08PaemprYZGnGSOQDbdPWUZP50u75m9IMr.m"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:07:07.396649"], ["name", "Rob Banks"], ["email", "janeth.frami@ledner.net"], ["created_at", "2019-10-13 19:07:07.397897"], ["updated_at", "2019-10-13 19:07:07.397897"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NfRg7gvzWs6FFF8yEeCySw\":{\"token\":\"$2a$10$5zjo03EnvIkELt7Cs5GxyeSGMyYg1Mp3KD4lPvRQsJucE8WUV5wEC\",\"expiry\":1572203227,\"updated_at\":\"2019-10-13 19:07:07 UTC\"}}"], ["updated_at", "2019-10-13 19:07:07.454353"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "janeth.frami@ledner.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$yzqKF8AmuQmNZuGQ9EhhW.w/uIToNAfRbJDJydAu/wt5Vg2e67cU6"], ["updated_at", "2019-10-13 19:07:07.510784"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:07:07.512222"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ryan@treutel.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ryan@treutel.net"], ["encrypted_password", "$2a$04$kWsVQq4kEdinAJlGf.iFj.1CUW.2HsxIXf5kQACPa2ej4vzrXYFoe"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:07:07.519027"], ["name", "Ivan Oder"], ["email", "ryan@treutel.net"], ["created_at", "2019-10-13 19:07:07.520158"], ["updated_at", "2019-10-13 19:07:07.520158"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"RDSQlZoAUdqGQbtLjAcW9g\":{\"token\":\"$2a$10$QrAp3xjz3yKPhCrcffqwJe8MFbrn2/GU5X1uWAqF36hRFYf4f1GP2\",\"expiry\":1572203227,\"updated_at\":\"2019-10-13 19:07:07 UTC\"}}"], ["updated_at", "2019-10-13 19:07:07.573733"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ryan@treutel.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$AgGrthz.7hFYLuQjwOhd4OvjimldH7xjDqf16/tUDdVqdvs7nQnZK"], ["updated_at", "2019-10-13 19:07:07.627927"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:07:07.629538"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "soila_anderson@wintheiserkeeling.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "soila_anderson@wintheiserkeeling.name"], ["encrypted_password", "$2a$04$.xvhl.80xr3NT..PGFfI8.Rl3T3GTaNMYZNh3EPiboIhQreqiPsRG"], ["confirmed_at", "2019-10-13 19:07:07.637769"], ["name", "Oscar Ruitt"], ["email", "soila_anderson@wintheiserkeeling.name"], ["created_at", "2019-10-13 19:07:07.638962"], ["updated_at", "2019-10-13 19:07:07.638962"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZaBqaYQD8aZU4MzjYLYSTA\":{\"token\":\"$2a$10$dTZMZcUEa6baG2b0QuKtGu.YQzAHCNOyYaZVRS5FwkhswiFPih6x2\",\"expiry\":1572203227,\"updated_at\":\"2019-10-13 19:07:07 UTC\"}}"], ["updated_at", "2019-10-13 19:07:07.690211"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "soila_anderson@wintheiserkeeling.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$oSTCRV7WQhdd4BOgKV/lXuBFXRy1QnV34BcH6o0QzIk2eAprkD2H2"], ["updated_at", "2019-10-13 19:07:07.748698"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 2643) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "janina@kautzergerlach.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "janina@kautzergerlach.com"], ["encrypted_password", "$2a$04$66pDW3twC9I5hz7P.BdqqeAPOfUzW3wFl52vCpc1JscKg02o85c9C"], ["confirmed_at", "2019-10-13 19:07:07.758176"], ["name", "Rusty Pipes"], ["email", "janina@kautzergerlach.com"], ["created_at", "2019-10-13 19:07:07.759354"], ["updated_at", "2019-10-13 19:07:07.759354"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "weldon.welch@blandabalistreri.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "weldon.welch@blandabalistreri.io"], ["encrypted_password", "$2a$04$4E2x/tEsll9JsgxcFDLu5uL6GGbCUJZr4bDLg4.NaEWKJM8NjfYG."], ["confirmed_at", "2019-10-13 19:07:07.769256"], ["name", "Godiva Headache"], ["email", "weldon.welch@blandabalistreri.io"], ["created_at", "2019-10-13 19:07:07.770435"], ["updated_at", "2019-10-13 19:07:07.770435"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "19ade7f0672f41f36870afcb2f8d9db9a956277e4c91b9c2b1b3f81685700db3"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "19ade7f0672f41f36870afcb2f8d9db9a956277e4c91b9c2b1b3f81685700db3"], ["reset_password_sent_at", "2019-10-13 19:07:07.772132"], ["updated_at", "2019-10-13 19:07:07.772254"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22g9UPx6i5YPZahGoUqcFf%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"g9UPx6i5YPZahGoUqcFf\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "19ade7f0672f41f36870afcb2f8d9db9a956277e4c91b9c2b1b3f81685700db3"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"rOYTMuLxFRMgGlFyLUkoFA\":{\"token\":\"$2a$10$xYyB0UHuyxyHSZme6bE34evAmSu0HzzuRDG1q4mZ1RP36/O2jz/iS\",\"expiry\":1572203227}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:07:07.832508"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"rOYTMuLxFRMgGlFyLUkoFA\":{\"token\":\"$2a$10$xYyB0UHuyxyHSZme6bE34evAmSu0HzzuRDG1q4mZ1RP36/O2jz/iS\",\"expiry\":1572203227},\"-zxF3cZw2l0seEbO8j8RIA\":{\"token\":\"$2a$10$FfOG54OQxpLafZUF5T8P6u2tnJkyRKD/n0HGuWabQjNvkTRfj1Y.G\",\"expiry\":1572203227,\"updated_at\":\"2019-10-13 19:07:07 UTC\"}}"], ["updated_at", "2019-10-13 19:07:07.879416"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 106ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2656)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kasey@okonkeebler.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kasey@okonkeebler.io"], ["encrypted_password", "$2a$04$S5OslhtC62AU3h6Oy5gGGO0uQ3HjEl5a5Knlzzk6AdGe6Q8zokX3W"], ["confirmed_at", "2019-10-13 19:07:07.886024"], ["name", "Rusty Irons"], ["email", "kasey@okonkeebler.io"], ["created_at", "2019-10-13 19:07:07.887209"], ["updated_at", "2019-10-13 19:07:07.887209"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "55a0ac7967328fe90493d80d2cbf14110a589986c488eb79125a6364d5bfc237"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "55a0ac7967328fe90493d80d2cbf14110a589986c488eb79125a6364d5bfc237"], ["reset_password_sent_at", "2019-10-13 19:07:07.889340"], ["updated_at", "2019-10-13 19:07:07.889477"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22yjgsSjicPFAXEMVQz_yx%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"yjgsSjicPFAXEMVQz_yx\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "55a0ac7967328fe90493d80d2cbf14110a589986c488eb79125a6364d5bfc237"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.4ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"11OG_isJLiLtHxy4ZKCsgQ\":{\"token\":\"$2a$10$thRheeLrp1bWtIxzULP4wO7UV7q/H/lybqhTByDtf4mjM/6wU9mV.\",\"expiry\":1572203227}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:07:07.945348"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=LFP5TYIf1i1Gs0U85BLdNQ&client=11OG_isJLiLtHxy4ZKCsgQ&client_id=11OG_isJLiLtHxy4ZKCsgQ&config=&expiry=1572203227&reset_password=true&token=LFP5TYIf1i1Gs0U85BLdNQ&uid=kasey%40okonkeebler.io Completed 302 Found in 56ms (ActiveRecord: 0.6ms | Allocations: 1916) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tyler@lind.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tyler@lind.co"], ["encrypted_password", "$2a$04$5h.93BMsYor9jMp73zw3nulZd8s/wuNV62M06AW564b23rnuPnY0W"], ["confirmed_at", "2019-10-13 09:07:07"], ["name", "May O'Nays"], ["email", "tyler@lind.co"], ["created_at", "2019-10-13 09:07:07"], ["updated_at", "2019-10-13 09:07:07"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "979b840eecd3afba9b830040f215a237c4e85b09e79fea4b03a89ca3d27ddaa0"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "979b840eecd3afba9b830040f215a237c4e85b09e79fea4b03a89ca3d27ddaa0"], ["reset_password_sent_at", "2019-10-13 09:07:07"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22uACcoLuazy2Qzsh7CUqA%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"uACcoLuazy2Qzsh7CUqA\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "979b840eecd3afba9b830040f215a237c4e85b09e79fea4b03a89ca3d27ddaa0"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1266)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jarvis.upton@ziemeterry.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jarvis.upton@ziemeterry.info"], ["encrypted_password", "$2a$04$Zz/KjKvJhl7IkyIv9w2DY.aa0EK.5seVzNVlTlxnidiLHlvUuVKxu"], ["confirmed_at", "2019-10-13 19:07:07.966456"], ["name", "Bill Ng"], ["email", "jarvis.upton@ziemeterry.info"], ["created_at", "2019-10-13 19:07:07.967437"], ["updated_at", "2019-10-13 19:07:07.967437"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "6ddfce610bae5089fd71912797376ebd33c6790dba8dc10af41378a0f6198357"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "6ddfce610bae5089fd71912797376ebd33c6790dba8dc10af41378a0f6198357"], ["reset_password_sent_at", "2019-10-13 19:07:07.969487"], ["updated_at", "2019-10-13 19:07:07.969637"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22XjbCwz-xKqkcQDwC41WAinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"XjbCwz-xKqkcQDwC41WAinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "050e406983ca943e551a2b629f3473ec3f05fa84252be0c4e5be97e660340d41"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rubin_skiles@windlergraham.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rubin_skiles@windlergraham.com"], ["encrypted_password", "$2a$04$1dm0u3KBfOG2Ai23e6K.XeqTWipX/7fn3FMLH20ZJ6pyEgdViq/7C"], ["confirmation_token", "vh6AntcCszWJDRzR1D7Y"], ["confirmation_sent_at", "2019-10-13 19:07:07.979394"], ["name", "Walt Smedley"], ["email", "rubin_skiles@windlergraham.com"], ["created_at", "2019-10-13 19:07:07.979304"], ["updated_at", "2019-10-13 19:07:07.979304"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.5ms | Allocations: 414) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.4ms Delivered mail 5da375dbefee8_d2d13fecb0832020895a7@Marios-MacBook-Pro.local.mail (1.5ms) Date: Sun, 13 Oct 2019 14:07:07 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: rubin_skiles@windlergraham.com Message-ID: <5da375dbefee8_d2d13fecb0832020895a7@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome rubin_skiles@windlergraham.com!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22vh6AntcCszWJDRzR1D7Y%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Flegrosadams.name%2Flana_vandervort%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"vh6AntcCszWJDRzR1D7Y\"\n redirectUrl: \"http://legrosadams.name/lana_vandervort\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "vh6AntcCszWJDRzR1D7Y"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:07:07.988018"], ["updated_at", "2019-10-13 19:07:07.988212"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://legrosadams.name/lana_vandervort?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms | Allocations: 1791) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ashlea@kunze.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ashlea@kunze.io"], ["encrypted_password", "$2a$04$zGmyz/Ru18c6Wagxuvkm/.UwPWH1DLCQIK0YzXEySdG15TLRUaOMq"], ["confirmation_token", "sZNhnTgMzMzvyR8Zy9h4"], ["confirmation_sent_at", "2019-10-13 19:07:07.995600"], ["name", "Darryl Likt"], ["email", "ashlea@kunze.io"], ["created_at", "2019-10-13 19:07:07.995504"], ["updated_at", "2019-10-13 19:07:07.995504"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22sZNhnTgMzMzvyR8Zy9h4-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fhilllkohler.com%2Fnoble%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"sZNhnTgMzMzvyR8Zy9h4-invalid\"\n redirectUrl: \"http://hilllkohler.com/noble\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "sZNhnTgMzMzvyR8Zy9h4-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "dd5833e1c3916f7711502c244ae7c19001c4be9d910d458d010680e99ff8387f"], ["LIMIT", 1]] Completed 200 OK in 92ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2009) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "millard_larkin@abbottpollich.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "millard_larkin@abbottpollich.com"], ["encrypted_password", "$2a$04$gINJNvHfbvpDhu4A8e9KheEuHyk0ge92eRV.oROFkXnFsRRc1BJkO"], ["confirmed_at", "2019-10-13 19:07:08.095816"], ["name", "Penny Profit"], ["email", "millard_larkin@abbottpollich.com"], ["created_at", "2019-10-13 19:07:08.096743"], ["updated_at", "2019-10-13 19:07:08.096743"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"UkFnsbVpGZDOJTYtFRd-dA\":{\"token\":\"$2a$10$6yu9SP/Y4oSWENIIa40pgux01hXF262nNJ/dvnrrgJHlpWdNKr0/2\",\"expiry\":1572203228,\"updated_at\":\"2019-10-13 19:07:08 UTC\"}}"], ["updated_at", "2019-10-13 19:07:08.146572"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:07:08 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "millard_larkin@abbottpollich.com"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 9656)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chadwick.kuvalis@dickens.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "chadwick.kuvalis@dickens.org"], ["encrypted_password", "$2a$04$oYOzXvmq7lz.fwIYZJmPVOAD9Ysdmvy6YDuVqzWGb7sZnqomG27P6"], ["confirmed_at", "2019-10-13 19:07:08.214279"], ["name", "Rocky Mountain"], ["email", "chadwick.kuvalis@dickens.org"], ["created_at", "2019-10-13 19:07:08.215110"], ["updated_at", "2019-10-13 19:07:08.215110"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:07:08 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.6ms) rollback transaction  (0.9ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "frankie.kohler@weber.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "frankie.kohler@weber.io"], ["encrypted_password", "$2a$04$eW9Osm.UtleeySebBzXhr.5Xod2PF2ko.VkyEnLCJLC8Q3fa0zgL2"], ["confirmed_at", "2019-10-13 19:07:11.613918"], ["name", "Dinah Might"], ["email", "frankie.kohler@weber.io"], ["created_at", "2019-10-13 19:07:11.615271"], ["updated_at", "2019-10-13 19:07:11.615271"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"frankie.kohler@weber.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "frankie.kohler@weber.io"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7lPgwm--I-3tWio-Q-_hzQ\":{\"token\":\"$2a$10$089J7ef.JsMMOO8Qj23SqutYu4IUNjqQyUrdBLt81laGSeEapIPDG\",\"expiry\":1572203231,\"updated_at\":\"2019-10-13 19:07:11 UTC\"}}"], ["updated_at", "2019-10-13 19:07:11.697511"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 19:07:11.700713"], ["last_sign_in_at", "2019-10-13 19:07:11.700713"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 19:07:11.701172"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 72ms (Views: 0.2ms | ActiveRecord: 0.7ms | Allocations: 18411) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "garth.gerhold@prohaska.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "garth.gerhold@prohaska.org"], ["encrypted_password", "$2a$04$37z7kKuk4KFYnPukeMYf7u7dBs55ESn9kUpV1MEPpRKiz.SljGsGK"], ["confirmed_at", "2019-10-13 19:07:11.711320"], ["name", "Rocky Beach"], ["email", "garth.gerhold@prohaska.org"], ["created_at", "2019-10-13 19:07:11.712453"], ["updated_at", "2019-10-13 19:07:11.712453"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"garth.gerhold@prohaska.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "garth.gerhold@prohaska.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2063) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "addie_altenwerth@wiegand.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "addie_altenwerth@wiegand.biz"], ["encrypted_password", "$2a$04$hplVlhszYyhNnHo1g8.S2uaG9nokRRvzEG6vKCDSuszNVOo1ZOU4q"], ["confirmation_token", "2MEshVHpTxuyzkDuccNf"], ["confirmation_sent_at", "2019-10-13 19:07:11.723915"], ["name", "Bjorn Free"], ["email", "addie_altenwerth@wiegand.biz"], ["created_at", "2019-10-13 19:07:11.723805"], ["updated_at", "2019-10-13 19:07:11.723805"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"addie_altenwerth@wiegand.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "addie_altenwerth@wiegand.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1351) TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tiffany@oconner.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tiffany@oconner.com"], ["encrypted_password", "$2a$04$HPCDPskhDkKt4ztctxS3RuuBvoJcP4WY/gV8P9gGdobB59WpjjgWK"], ["confirmed_at", "2019-10-13 19:07:11.731966"], ["locked_at", "2019-10-13 19:07:11.731980"], ["name", "Trina Forest"], ["email", "tiffany@oconner.com"], ["created_at", "2019-10-13 19:07:11.732879"], ["updated_at", "2019-10-13 19:07:11.732879"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tiffany@oconner.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tiffany@oconner.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1369) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nicky.mayert@beahan.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nicky.mayert@beahan.biz"], ["encrypted_password", "$2a$04$NMfYPWUy4ONVWwTXZk7AOeeWDn82AocgG7RAHfCVYpuQIaP9Elnge"], ["confirmed_at", "2019-10-13 19:07:11.740585"], ["name", "Hazel Nutt"], ["email", "nicky.mayert@beahan.biz"], ["created_at", "2019-10-13 19:07:11.741438"], ["updated_at", "2019-10-13 19:07:11.741438"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"nicky.mayert@beahan.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nicky.mayert@beahan.biz"], ["LIMIT", 1]] Completed 200 OK in 19ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1348) TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "david@welchpaucek.org"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "david@welchpaucek.org"], ["encrypted_password", "$2a$04$X/C7ayvlM3vYxaT98P8NFeWPP.yFxbBnIz4MlK8LaKzm7uAI7vMEW"], ["confirmed_at", "2019-10-13 19:07:11.779001"], ["email", "david@welchpaucek.org"], ["created_at", "2019-10-13 19:07:11.780314"], ["updated_at", "2019-10-13 19:07:11.780314"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"david@welchpaucek.org\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "david@welchpaucek.org"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"W7s516bI_bclkb-XFGLtOg\":{\"token\":\"$2a$10$nxUuVhicy45CT3H66QZfNeLk1/7hR3dbJnJ1zGFZiOeAsrzwjRsRW\",\"expiry\":1572203231,\"updated_at\":\"2019-10-13 19:07:11 UTC\"}}"], ["updated_at", "2019-10-13 19:07:11.840699"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2374) TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alfonzo@dubuque.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alfonzo@dubuque.name"], ["encrypted_password", "$2a$04$9rbdWXCAj0X4R0qdkpXgI.JsxSaKvo243cEEclQ3TSGB/ZMO83qoK"], ["confirmed_at", "2019-10-13 19:07:11.845720"], ["name", "Myles Long"], ["email", "alfonzo@dubuque.name"], ["created_at", "2019-10-13 19:07:11.846739"], ["updated_at", "2019-10-13 19:07:11.846739"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9FDBERXUqWlWp9NqcpLxaw\":{\"token\":\"$2a$10$BMg8Gn7otR0CReC4W6sY3OWVmBH33BAA7o.xGF.TQrtUC/kq//LEi\",\"expiry\":1572203231,\"updated_at\":\"2019-10-13 19:07:11 UTC\"}}"], ["updated_at", "2019-10-13 19:07:11.897546"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "alfonzo@dubuque.name"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:07:11.946127"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1885) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 943) TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "camille@spencertowne.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "camille@spencertowne.com"], ["encrypted_password", "$2a$04$SJA46gwLZPV9VbG2H.EFDOj.DXettNzmnNcNCV9Rp5nvpCwfkyYMi"], ["confirmed_at", "2019-10-13 19:07:11.953286"], ["name", "Anne Ville"], ["email", "camille@spencertowne.com"], ["created_at", "2019-10-13 19:07:11.954024"], ["updated_at", "2019-10-13 19:07:11.954024"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "parker_haley@dach.info"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.5ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "parker_haley@dach.info"], ["encrypted_password", "$2a$04$n4SIGZRkZFXvgadY2cO85edXjuKWFlAznHuabWTD.ehXn9qZgkNHS"], ["confirmed_at", "2019-10-13 19:07:11.957767"], ["email", "parker_haley@dach.info"], ["created_at", "2019-10-13 19:07:11.958882"], ["updated_at", "2019-10-13 19:07:11.958882"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"1cshAziyqOA001tLBClK6g\":{\"token\":\"$2a$10$FVESOnWz4xskY9Y3BZzF6.WSVpw29ajqsRs9MjKtLlJ9ngot30WUO\",\"expiry\":1572203232,\"updated_at\":\"2019-10-13 19:07:11 UTC\"}}"], ["updated_at", "2019-10-13 19:07:12.012954"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "parker_haley@dach.info"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 19:07:12.062197"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1814) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "harold@mooreokon.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "harold@mooreokon.co"], ["encrypted_password", "$2a$04$0raNXPxNoU8gQedc1Ho0TeBlBO64t/IjoB0i7pWct8Rtez.3ijKy."], ["confirmed_at", "2019-10-13 19:07:12.070011"], ["name", "Mel Practiss"], ["email", "harold@mooreokon.co"], ["created_at", "2019-10-13 19:07:12.071068"], ["updated_at", "2019-10-13 19:07:12.071068"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"harold@mooreokon.co\",\n redirectUrl: \"http://kris.org/winter_moen\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "harold@mooreokon.co"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cec2e77c0e3073af8d2a72a47648aa1645dd443b8321230eef041199853ba232"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "cec2e77c0e3073af8d2a72a47648aa1645dd443b8321230eef041199853ba232"], ["reset_password_sent_at", "2019-10-13 19:07:12.161281"], ["updated_at", "2019-10-13 19:07:12.161456"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 2.6ms | Allocations: 1280) Devise::Mailer#reset_password_instructions: processed outbound mail in 127.0ms Delivered mail 5da375e047599_d2ea3fc041432010416ee@Marios-MacBook-Pro.local.mail (4.7ms) Date: Sun, 13 Oct 2019 14:07:12 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: harold@mooreokon.co Message-ID: <5da375e047599_d2ea3fc041432010416ee@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: harold@mooreokon.co provider: email redirect-url: http://kris.org/winter_moen client-config: default

Hello harold@mooreokon.co!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 221ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 67638) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fkris.org%2Fwinter_moen&variables%5Btoken%5D=4DBfeEaxhtnW8qDdcxZK" for 127.0.0.1 at 2019-10-13 14:07:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://kris.org/winter_moen", "token"=>"4DBfeEaxhtnW8qDdcxZK"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cec2e77c0e3073af8d2a72a47648aa1645dd443b8321230eef041199853ba232"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hXzGEeiZbjA-zUpY8zNnYw\":{\"token\":\"$2a$10$3DbwElG8A.FKXiU9c2tgpe3NLZzV6dPOX9KdhFBkezgR99r/J60S2\",\"expiry\":1572203232}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:07:12.346902"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://kris.org/winter_moen?access-token=716qtPC8uEGGobYwDLyaEQ&client=hXzGEeiZbjA-zUpY8zNnYw&client_id=hXzGEeiZbjA-zUpY8zNnYw&config=&expiry=1572203232&reset_password=true&token=716qtPC8uEGGobYwDLyaEQ&uid=harold%40mooreokon.co Completed 302 Found in 51ms (ActiveRecord: 0.2ms | Allocations: 2126) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://conroy.net/steven\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1192) TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"clifton@leuschke.io\"\n name: \"Rossana Welch\"\n password: \"Me5HwKcI\"\n passwordConfirmation: \"Me5HwKcI\"\n confirmSuccessUrl: \"http://cartwright.name/loren\"\n ) {\n user {\n email\n name\n }\n }\n }\n"} TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clifton@leuschke.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "clifton@leuschke.io"], ["encrypted_password", "$2a$04$h/nkdUyPWgwo4BHNqfpalOMVdg6Ed1y0WfLfh.LafysW1JUivZolK"], ["confirmation_token", "_FBFA7GvNLPx6MDBWNgJ"], ["confirmation_sent_at", "2019-10-13 19:07:12.359754"], ["name", "Rossana Welch"], ["email", "clifton@leuschke.io"], ["created_at", "2019-10-13 19:07:12.359657"], ["updated_at", "2019-10-13 19:07:12.359657"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.8ms | Allocations: 578) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.1ms Delivered mail 5da375e058c4a_d2ea3fc0414320104172c@Marios-MacBook-Pro.local.mail (1.2ms) Date: Sun, 13 Oct 2019 14:07:12 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: clifton@leuschke.io Message-ID: <5da375e058c4a_d2ea3fc0414320104172c@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://cartwright.name/loren

Welcome clifton@leuschke.io!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 5421)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fcartwright.name%2Floren&variables%5Btoken%5D=_FBFA7GvNLPx6MDBWNgJ" for 127.0.0.1 at 2019-10-13 14:07:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://cartwright.name/loren", "token"=>"_FBFA7GvNLPx6MDBWNgJ"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "_FBFA7GvNLPx6MDBWNgJ"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:07:12.371141"], ["updated_at", "2019-10-13 19:07:12.371348"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://cartwright.name/loren?account_confirmation_success=true Completed 302 Found in 6ms (ActiveRecord: 0.3ms | Allocations: 2174) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Miss Myrna Bergstrom\"\n password: \"9WoX0hG6oC\"\n passwordConfirmation: \"9WoX0hG6oC\"\n confirmSuccessUrl: \"http://hodkiewiczbernhard.biz/chana\"\n ) {\n user {\n email\n name\n }\n }\n }\n"} TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]] TRANSACTION (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2707)  (0.1ms) SELECT COUNT(*) FROM "users" TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rosemarie@altenwerthschmidt.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rosemarie@altenwerthschmidt.io"], ["encrypted_password", "$2a$04$xNm1486e1EvEkXTB9vFtcOsMzhHkoDrFlIcLd8vuvGZRn6qOM.vFK"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:07:12.391101"], ["name", "Rick O'Shea"], ["email", "rosemarie@altenwerthschmidt.io"], ["created_at", "2019-10-13 19:07:12.392788"], ["updated_at", "2019-10-13 19:07:12.392788"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"4S1W6PiIpVXzzhlb8T11Jw\":{\"token\":\"$2a$10$6afG1cLOOnbDc7QHsrdKF.6aVmfioIR/o3DOJhxqdbNMJtrw77NaK\",\"expiry\":1572203232,\"updated_at\":\"2019-10-13 19:07:12 UTC\"}}"], ["updated_at", "2019-10-13 19:07:12.450265"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "rosemarie@altenwerthschmidt.io"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$h5N4NzJjAtamFcpOg74VkuR1QpJOvhoD2HDuJtJ4Ph6ffWnfl4Omu"], ["updated_at", "2019-10-13 19:07:12.508513"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:07:12.510419"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.8ms | Allocations: 2869) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lacy.bayer@jerde.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.8ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lacy.bayer@jerde.net"], ["encrypted_password", "$2a$04$NcWG44Rxwa0MwMBBIGR8SejaV7VDUJrLFYtqgK/anaaCwN5z4Lp3u"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:07:12.519781"], ["name", "X. Benedict"], ["email", "lacy.bayer@jerde.net"], ["created_at", "2019-10-13 19:07:12.521233"], ["updated_at", "2019-10-13 19:07:12.521233"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"N_HXI-aoXMChoUplD3DDtg\":{\"token\":\"$2a$10$FT9NKPgi9P1Wixt/EytIduL6UL5qNgB.a50zj1UUb67SMf66mxjoy\",\"expiry\":1572203232,\"updated_at\":\"2019-10-13 19:07:12 UTC\"}}"], ["updated_at", "2019-10-13 19:07:12.574940"], ["id", 1]] TRANSACTION (0.2ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lacy.bayer@jerde.net"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$1Bq7Z4vk1IVd8zOj4FbUFO0K..IWCU0UFajGhqdNzeUkOkYVz1fEu"], ["updated_at", "2019-10-13 19:07:12.632479"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:07:12.634118"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2858) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kayleigh@keeblerschroeder.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kayleigh@keeblerschroeder.biz"], ["encrypted_password", "$2a$04$xklFrVXTqKEYk6dpdRNcHu3qj3uHQ/fynaLW.bepyQ3./KWqPxZVi"], ["confirmed_at", "2019-10-13 19:07:12.642666"], ["name", "Pat Downe"], ["email", "kayleigh@keeblerschroeder.biz"], ["created_at", "2019-10-13 19:07:12.643771"], ["updated_at", "2019-10-13 19:07:12.643771"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bxfLC_wC40mjgyve8AAqsQ\":{\"token\":\"$2a$10$R7fYonJXAtn/DC2pJIjkfeFUy7baW7iKhRYsVMG8AcgwRoII3JmFO\",\"expiry\":1572203232,\"updated_at\":\"2019-10-13 19:07:12 UTC\"}}"], ["updated_at", "2019-10-13 19:07:12.696311"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kayleigh@keeblerschroeder.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 2331) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "suzi.mckenzie@sanfordquitzon.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "suzi.mckenzie@sanfordquitzon.info"], ["encrypted_password", "$2a$04$vMsM8e8H.11f0klBM9OEUeUbGI4EFcnGYNK2K45AZCdE.TDpLwcSS"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:07:12.762479"], ["name", "Mike Rohsopht"], ["email", "suzi.mckenzie@sanfordquitzon.info"], ["created_at", "2019-10-13 19:07:12.763296"], ["updated_at", "2019-10-13 19:07:12.763296"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gMocT84uuRonwwJUntvnVA\":{\"token\":\"$2a$10$QSlM8XSFHOvPsaH.f2s46OAEuDkS/FBBE1Cn0Yax33VlKl5gMvIgq\",\"expiry\":1572203232,\"updated_at\":\"2019-10-13 19:07:12 UTC\"}}"], ["updated_at", "2019-10-13 19:07:12.818840"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "suzi.mckenzie@sanfordquitzon.info"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$zj59rupRZXZiGpRlccLi0OaXhcWyY1G7zBsx1w6p3vF3gJXL/ZE6y"], ["updated_at", "2019-10-13 19:07:12.872262"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:07:12.873599"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2861) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kerry@quigleyshanahan.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kerry@quigleyshanahan.io"], ["encrypted_password", "$2a$04$bXqadf6fPHtkdkIltFTDYuu18qpnvKLeHx0qE7TMvAbakRE/rPHJi"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 19:07:12.880499"], ["name", "Les Payne"], ["email", "kerry@quigleyshanahan.io"], ["created_at", "2019-10-13 19:07:12.881659"], ["updated_at", "2019-10-13 19:07:12.881659"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lnwHBtoi106v8GkQhU7z5g\":{\"token\":\"$2a$10$Vr52vlnVB7lZ504OvuxZD.oh4DxznKWX/epNR0Jy.lzHEsYjLzEk.\",\"expiry\":1572203232,\"updated_at\":\"2019-10-13 19:07:12 UTC\"}}"], ["updated_at", "2019-10-13 19:07:12.934322"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kerry@quigleyshanahan.io"], ["LIMIT", 1]] TRANSACTION (0.2ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$T.MGf99jf57/jV8oQP9mtOfYkxWFzC2HjFqz6w6ASFbEKgaX7/PX6"], ["updated_at", "2019-10-13 19:07:12.993153"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 19:07:12.995473"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.7ms | Allocations: 2861) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "twyla@bosco.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "twyla@bosco.co"], ["encrypted_password", "$2a$04$oGxeTEX7wv9/3.2x9HMOyev.urIuahWwCH/C0cXYOeIF8kSbFhfey"], ["confirmed_at", "2019-10-13 19:07:13.004387"], ["name", "Tamara Knight"], ["email", "twyla@bosco.co"], ["created_at", "2019-10-13 19:07:13.005457"], ["updated_at", "2019-10-13 19:07:13.005457"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.2ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2oUP4caGdZ0K2igs16I7mg\":{\"token\":\"$2a$10$tugoUMQCRfQF1xNQCjr44.0C26tF6S/as1vqSO4xHzSfQ2aWaySse\",\"expiry\":1572203233,\"updated_at\":\"2019-10-13 19:07:13 UTC\"}}"], ["updated_at", "2019-10-13 19:07:13.067778"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "twyla@bosco.co"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$MAx/DofY5qFHnWAuEsNim.YjEbZww0n2He5iIvLnHw2npjeyl1xAu"], ["updated_at", "2019-10-13 19:07:13.125293"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2628) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kelley_hand@schmittlynch.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kelley_hand@schmittlynch.io"], ["encrypted_password", "$2a$04$bwOmIoun94AzFG24aAXvROeKrwJuBNUR1H0a0PFIcUBeGrMm9JAUa"], ["confirmed_at", "2019-10-13 19:07:13.133189"], ["name", "Anita Job"], ["email", "kelley_hand@schmittlynch.io"], ["created_at", "2019-10-13 19:07:13.134157"], ["updated_at", "2019-10-13 19:07:13.134157"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 14:07:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1150) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "scott@metz.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "scott@metz.org"], ["encrypted_password", "$2a$04$FeXqhK1q..YxJo8nZD.Rge8HKRpub5ILEZDLcbSruRKDiWdYeu48m"], ["confirmed_at", "2019-10-13 19:07:13.143152"], ["name", "Jack Dupp"], ["email", "scott@metz.org"], ["created_at", "2019-10-13 19:07:13.144209"], ["updated_at", "2019-10-13 19:07:13.144209"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f0fc1ead3e572102e8670d5687d816e8c7043804d0a519b246d0acd8ff077486"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f0fc1ead3e572102e8670d5687d816e8c7043804d0a519b246d0acd8ff077486"], ["reset_password_sent_at", "2019-10-13 19:07:13.145813"], ["updated_at", "2019-10-13 19:07:13.145932"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%226N9jcqyQpDw3XosxEs4z%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"6N9jcqyQpDw3XosxEs4z\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f0fc1ead3e572102e8670d5687d816e8c7043804d0a519b246d0acd8ff077486"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lUKDUEwtM6yxko-etsmhwA\":{\"token\":\"$2a$10$OfkvG0gWsWcuRsm7gSEnK.ktsVxt/GE1M13krYuRodj.GQNeY/KpG\",\"expiry\":1572203233}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:07:13.206527"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lUKDUEwtM6yxko-etsmhwA\":{\"token\":\"$2a$10$OfkvG0gWsWcuRsm7gSEnK.ktsVxt/GE1M13krYuRodj.GQNeY/KpG\",\"expiry\":1572203233},\"cbw1qHqGYBFf-9w0yfwXAQ\":{\"token\":\"$2a$10$LRrGuaC0AuyndCQeKwlLDuR28.JSrio.sXWRQiqSFNikwHmXOGjOi\",\"expiry\":1572203233,\"updated_at\":\"2019-10-13 19:07:13 UTC\"}}"], ["updated_at", "2019-10-13 19:07:13.253090"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 106ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2648) TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "martin_wunsch@brakuscrooks.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "martin_wunsch@brakuscrooks.org"], ["encrypted_password", "$2a$04$yKA0xiOdXp4CAxEs/cB8deDf3eB4TEOeIWJHf7Gm2JhpAmD8mr57W"], ["confirmed_at", "2019-10-13 19:07:13.260708"], ["name", "Sarah Doctorinthehouse"], ["email", "martin_wunsch@brakuscrooks.org"], ["created_at", "2019-10-13 19:07:13.262099"], ["updated_at", "2019-10-13 19:07:13.262099"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ee4b73f144fbd1c5b5d22330bc6018cb15e19899df78d20434a1ea39668d27bf"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "ee4b73f144fbd1c5b5d22330bc6018cb15e19899df78d20434a1ea39668d27bf"], ["reset_password_sent_at", "2019-10-13 19:07:13.264490"], ["updated_at", "2019-10-13 19:07:13.264663"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%225L41EevPUzx8NChwKg8y%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"5L41EevPUzx8NChwKg8y\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ee4b73f144fbd1c5b5d22330bc6018cb15e19899df78d20434a1ea39668d27bf"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fxBtELR4dRwOfpDpTrTK7A\":{\"token\":\"$2a$10$fLi88VhY6zty/QBXHyzJhOWF2YjNbiO9P5awYRzPAa9DxPKZisKSK\",\"expiry\":1572203233}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 19:07:13.320124"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=PotA3kdbr1TGEAclnX26Bg&client=fxBtELR4dRwOfpDpTrTK7A&client_id=fxBtELR4dRwOfpDpTrTK7A&config=&expiry=1572203233&reset_password=true&token=PotA3kdbr1TGEAclnX26Bg&uid=martin_wunsch%40brakuscrooks.org Completed 302 Found in 54ms (ActiveRecord: 0.3ms | Allocations: 1906) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "phebe.connelly@heathcoteschaden.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "phebe.connelly@heathcoteschaden.net"], ["encrypted_password", "$2a$04$oGHcZZRmYKhGlc4lnaQXRe.FWWI1yf0SBnPmI3jyf/qgW.FGLavaK"], ["confirmed_at", "2019-10-13 09:07:13"], ["name", "Hy Lowe"], ["email", "phebe.connelly@heathcoteschaden.net"], ["created_at", "2019-10-13 09:07:13"], ["updated_at", "2019-10-13 09:07:13"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c2eae13d1e3cb9009a33fa017e6089e2508a786643f3dfb1f2b260d26f7f72cc"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "c2eae13d1e3cb9009a33fa017e6089e2508a786643f3dfb1f2b260d26f7f72cc"], ["reset_password_sent_at", "2019-10-13 09:07:13"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22qP1nR_fuvaKnVYX6uyN3%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"qP1nR_fuvaKnVYX6uyN3\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c2eae13d1e3cb9009a33fa017e6089e2508a786643f3dfb1f2b260d26f7f72cc"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1259) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shelia@goyette.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shelia@goyette.io"], ["encrypted_password", "$2a$04$JmVSJlCHPlnr7KIsg7G8yuMFUwO0F8z96WgmzaK5mYG6Ic2zlC7Ui"], ["confirmed_at", "2019-10-13 19:07:13.338730"], ["name", "Theresa Green"], ["email", "shelia@goyette.io"], ["created_at", "2019-10-13 19:07:13.339749"], ["updated_at", "2019-10-13 19:07:13.339749"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "764ef2ed211ed5b8817befe2772e415a62e21675b4b77915dd4842819a39a63c"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "764ef2ed211ed5b8817befe2772e415a62e21675b4b77915dd4842819a39a63c"], ["reset_password_sent_at", "2019-10-13 19:07:13.341617"], ["updated_at", "2019-10-13 19:07:13.341851"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22_N_Fek_e1ZLkCKByyg_6invalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"_N_Fek_e1ZLkCKByyg_6invalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7161a73588cde4641f564f0d121e571b9238663a0d492bb78c25311351148412"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1217) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "robin@flatley.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "robin@flatley.org"], ["encrypted_password", "$2a$04$gCaJBc92eGT73/.80LE9SerDSK5GUbRsCu3P8XBjfhpxVy5ZdFRRW"], ["confirmation_token", "RKZwBuS-j2wJj9yrYsFG"], ["confirmation_sent_at", "2019-10-13 19:07:13.352158"], ["name", "Penny Lane"], ["email", "robin@flatley.org"], ["created_at", "2019-10-13 19:07:13.352071"], ["updated_at", "2019-10-13 19:07:13.352071"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.4ms | Allocations: 405) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.7ms Delivered mail 5da375e157068_d2ea3fc041432010418a2@Marios-MacBook-Pro.local.mail (2.0ms) Date: Sun, 13 Oct 2019 14:07:13 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: robin@flatley.org Message-ID: <5da375e157068_d2ea3fc041432010418a2@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome robin@flatley.org!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22RKZwBuS-j2wJj9yrYsFG%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fcormier.com%2Froma_greenfelder%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"RKZwBuS-j2wJj9yrYsFG\"\n redirectUrl: \"http://cormier.com/roma_greenfelder\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "RKZwBuS-j2wJj9yrYsFG"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 19:07:13.391318"], ["updated_at", "2019-10-13 19:07:13.391553"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://cormier.com/roma_greenfelder?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.4ms | Allocations: 1794) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hai@gloverromaguera.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hai@gloverromaguera.io"], ["encrypted_password", "$2a$04$0g9p7ybkpKB1WHlsBSms8OyjEe2Yh5ZW7sre6/XR/WyGwy3p.oS6u"], ["confirmation_token", "zVms7H1hXSrVruq1Kx1s"], ["confirmation_sent_at", "2019-10-13 19:07:13.398794"], ["name", "Winnie Dipoo"], ["email", "hai@gloverromaguera.io"], ["created_at", "2019-10-13 19:07:13.398709"], ["updated_at", "2019-10-13 19:07:13.398709"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22zVms7H1hXSrVruq1Kx1s-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fjakubowski.net%2Fbud%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 14:07:13 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"zVms7H1hXSrVruq1Kx1s-invalid\"\n redirectUrl: \"http://jakubowski.net/bud\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "zVms7H1hXSrVruq1Kx1s-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "f0b7f86c5cb698e1b7ea2dfc3eff1e78c11e152c4081d346f34788fdb78c9386"], ["LIMIT", 1]] Completed 200 OK in 92ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1626) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "anderson_moriette@luettgen.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "anderson_moriette@luettgen.info"], ["encrypted_password", "$2a$04$4MCRsvmj7fp88Jfg/USTAeQqV3YRtXzK9xpLWG5qUCJkjy/8qT6la"], ["confirmed_at", "2019-10-13 19:07:13.496889"], ["name", "Rosa Shore"], ["email", "anderson_moriette@luettgen.info"], ["created_at", "2019-10-13 19:07:13.497685"], ["updated_at", "2019-10-13 19:07:13.497685"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"cbcO8XTfR-iEizrr-oPsog\":{\"token\":\"$2a$10$DUQd9bl0UYwSVJUd/XSUyeIJvHYgczhA9ayCV1fVsr31HqbK9nbYC\",\"expiry\":1572203233,\"updated_at\":\"2019-10-13 19:07:13 UTC\"}}"], ["updated_at", "2019-10-13 19:07:13.546792"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:07:13 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "anderson_moriette@luettgen.info"], ["LIMIT", 1]] Completed 500 Internal Server Error in 53ms (ActiveRecord: 0.1ms | Allocations: 4090) TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hoa@halvorson.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hoa@halvorson.io"], ["encrypted_password", "$2a$04$aDwad5I/yc4K2SmBPz4gKei0hbSfgceA/lA87aXtLAS69GD1AVmc6"], ["confirmed_at", "2019-10-13 19:07:13.606376"], ["name", "Kristie Hannity"], ["email", "hoa@halvorson.io"], ["created_at", "2019-10-13 19:07:13.607137"], ["updated_at", "2019-10-13 19:07:13.607137"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 14:07:13 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 161) TRANSACTION (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'vannea_oberbrunner@prosacco.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Lou Pole"], ["email", "vannea_oberbrunner@prosacco.co"], ["encrypted_password", "$2a$04$dwMDvb.GKCG6la9WBX/2g.jY3aeHBWCdchx1GixSDzjQcgvGaEFCG"], ["confirmed_at", "2019-10-13 20:03:33.900989"], ["uid", "vannea_oberbrunner@prosacco.co"], ["created_at", "2019-10-13 20:03:33.907578"], ["updated_at", "2019-10-13 20:03:33.907578"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:33 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"vannea_oberbrunner@prosacco.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "vannea_oberbrunner@prosacco.co"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Qrk3UC48C6L4-vg-F_0_Jg\":{\"token\":\"$2a$10$Qza0jVy.dujDMcOlmfi09OcCCWsrLyP8rCCuHtgpaMEN8Y4ESTs2i\",\"expiry\":1572206614,\"updated_at\":\"2019-10-13 20:03:33 UTC\"}}"], ["updated_at", "2019-10-13 20:03:34.013830"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2019-10-13 20:03:34.022984"], ["current_sign_in_at", "2019-10-13 20:03:34.022984"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 20:03:34.023948"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 96ms (Views: 0.2ms | ActiveRecord: 1.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'amado@collins.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Vlad Tire"], ["email", "amado@collins.biz"], ["encrypted_password", "$2a$04$Gl2Oh/c.yNVtxBsK94SIj.0qxuFYDm2EcOF5vhQE/lHqwjvPFO0R2"], ["confirmed_at", "2019-10-13 20:03:34.034972"], ["uid", "amado@collins.biz"], ["created_at", "2019-10-13 20:03:34.036198"], ["updated_at", "2019-10-13 20:03:34.036198"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"amado@collins.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "amado@collins.biz"]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'sang.buckridge@effertz.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Minnie Skurt"], ["email", "sang.buckridge@effertz.co"], ["encrypted_password", "$2a$04$9HMlMikYqd..vmCw0Uq.9e5AuZfLxJfMrEyf5heToAFEZ5IdMu77."], ["uid", "sang.buckridge@effertz.co"], ["created_at", "2019-10-13 20:03:34.053726"], ["updated_at", "2019-10-13 20:03:34.053726"], ["confirmation_token", "TxsdBsj21nnGQFYGDiBY"], ["confirmation_sent_at", "2019-10-13 20:03:34.053931"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sang.buckridge@effertz.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "sang.buckridge@effertz.co"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'kristopher@hammesyost.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "locked_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Noah Riddle"], ["email", "kristopher@hammesyost.net"], ["encrypted_password", "$2a$04$N8MPLg2pwI4x4x51uZ6Z6uTFM/zeFp.2eL7bQvQaCWtWfQXpBMN3y"], ["confirmed_at", "2019-10-13 20:03:34.065940"], ["locked_at", "2019-10-13 20:03:34.066012"], ["uid", "kristopher@hammesyost.net"], ["created_at", "2019-10-13 20:03:34.067120"], ["updated_at", "2019-10-13 20:03:34.067120"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kristopher@hammesyost.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "kristopher@hammesyost.net"]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'joie@feeney.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "auth_available", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Doug Graves"], ["email", "joie@feeney.io"], ["encrypted_password", "$2a$04$NtdofJdLR0e9RrQJ0Pawbu0YuebwkIl1usp9xCjGNH6j2Yhvbuyke"], ["confirmed_at", "2019-10-13 20:03:34.081562"], ["auth_available", "f"], ["uid", "joie@feeney.io"], ["created_at", "2019-10-13 20:03:34.083537"], ["updated_at", "2019-10-13 20:03:34.083537"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"joie@feeney.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "joie@feeney.io"]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE ("admins"."email" = 'sebastian.tillman@cruickshank.info' AND "admins"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "admins" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sebastian.tillman@cruickshank.info"], ["encrypted_password", "$2a$04$qAq.uaiVPVZ/fmraoGvrIun6D.CEo9wCRFpuwiZFtxRdaexvNsPo6"], ["confirmed_at", "2019-10-13 20:03:34.104882"], ["uid", "sebastian.tillman@cruickshank.info"], ["created_at", "2019-10-13 20:03:34.106394"], ["updated_at", "2019-10-13 20:03:34.106394"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"sebastian.tillman@cruickshank.info\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT 1 [["email", "sebastian.tillman@cruickshank.info"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"KEjbtrtzcCZpC9kP72tHew\":{\"token\":\"$2a$10$OkMizcipiD6s3d1G4P9VU.LoU13yimGhCQ1Xw.fTvTtJgiN2V85I2\",\"expiry\":1572206614,\"updated_at\":\"2019-10-13 20:03:34 UTC\"}}"], ["updated_at", "2019-10-13 20:03:34.172510"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 65ms (Views: 0.2ms | ActiveRecord: 0.5ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'felicidad@westmcglynn.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Justin Case"], ["email", "felicidad@westmcglynn.name"], ["encrypted_password", "$2a$04$bUGiFEPJpfpumCkQnEwYGOKqFMAIcfzLLhc4I5RoYAC3WfjAkO8la"], ["confirmed_at", "2019-10-13 20:03:34.180591"], ["uid", "felicidad@westmcglynn.name"], ["created_at", "2019-10-13 20:03:34.182428"], ["updated_at", "2019-10-13 20:03:34.182428"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"q_EtGDHoVAL_btqfnfpDXw\":{\"token\":\"$2a$10$rmMNYmVMpbby3.2syMW1UeZKs45T9Mz2Sa4kHxnjuW.wEDWK2gR7i\",\"expiry\":1572206614,\"updated_at\":\"2019-10-13 20:03:34 UTC\"}}"], ["updated_at", "2019-10-13 20:03:34.244050"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "felicidad@westmcglynn.name"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:03:34.325729"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 72ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'mia@brownconroy.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Duane Pipe"], ["email", "mia@brownconroy.co"], ["encrypted_password", "$2a$04$C1PmXvw0utLzsWim3k7kJufvgA78Dy8mjTxHfBWdCUIMJlNcBZ9dC"], ["confirmed_at", "2019-10-13 20:03:34.338277"], ["uid", "mia@brownconroy.co"], ["created_at", "2019-10-13 20:03:34.339442"], ["updated_at", "2019-10-13 20:03:34.339442"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.3ms) SELECT 1 AS one FROM "admins" WHERE ("admins"."email" = 'deedee@durgan.io' AND "admins"."provider" = 'email') LIMIT 1 SQL (0.5ms) INSERT INTO "admins" ("email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "deedee@durgan.io"], ["encrypted_password", "$2a$04$5iHxPEtCk3u7A2U5R.cud.MGQn4Qx0UsGOcbN7HYJ1p7Nog9luwiC"], ["confirmed_at", "2019-10-13 20:03:34.344636"], ["uid", "deedee@durgan.io"], ["created_at", "2019-10-13 20:03:34.346923"], ["updated_at", "2019-10-13 20:03:34.346923"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"cakjXLMOnfYCIBYFmepNXQ\":{\"token\":\"$2a$10$5ilL/cTlpAoH4S6jJiRUq.d67Iu5gTXMhq.sUszwVSvnckmW42aAS\",\"expiry\":1572206614,\"updated_at\":\"2019-10-13 20:03:34 UTC\"}}"], ["updated_at", "2019-10-13 20:03:34.414527"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.3ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT 1 [["uid", "deedee@durgan.io"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:03:34.488803"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 67ms (Views: 0.1ms | ActiveRecord: 0.5ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'oretha@spinka.io' AND "users"."provider" = 'email') LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Reed Toomey"], ["email", "oretha@spinka.io"], ["encrypted_password", "$2a$04$LmtCLpDChA0yERl0yoBAfOmTT0SpH33jwZLVtRmnjSYtynRowU26m"], ["confirmed_at", "2019-10-13 20:03:34.501274"], ["uid", "oretha@spinka.io"], ["created_at", "2019-10-13 20:03:34.503192"], ["updated_at", "2019-10-13 20:03:34.503192"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"oretha@spinka.io\",\n redirectUrl: \"http://dickinsonroob.net/bernie\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "oretha@spinka.io"], ["provider", "email"]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "80826fe69704313a835e425f1a6e1f3679d785dfde373f8815258d4be20153c4"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "80826fe69704313a835e425f1a6e1f3679d785dfde373f8815258d4be20153c4"], ["reset_password_sent_at", "2019-10-13 20:03:34.617363"], ["updated_at", "2019-10-13 20:03:34.617710"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (3.2ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 183.5ms Sent mail to oretha@spinka.io (4.2ms) Date: Sun, 13 Oct 2019 15:03:34 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: oretha@spinka.io Message-ID: <5da38316c4c3e_d56f3feeee432020568aa@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: oretha@spinka.io provider: email redirect-url: http://dickinsonroob.net/bernie client-config: default

Hello oretha@spinka.io!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 299ms (Views: 0.2ms | ActiveRecord: 0.6ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fdickinsonroob.net%2Fbernie&variables%5Btoken%5D=fxbb8vPbK-qk5PBiGrzC" for 127.0.0.1 at 2019-10-13 15:03:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://dickinsonroob.net/bernie", "token"=>"fxbb8vPbK-qk5PBiGrzC"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "80826fe69704313a835e425f1a6e1f3679d785dfde373f8815258d4be20153c4"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KmiA95PtQ0hhHospTREAPg\":{\"token\":\"$2a$10$5etkYq3zRbmXXC8eX46cV.zRaW8JLtZQhm7ArGLbaBugl/cms9Ijy\",\"expiry\":1572206614}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:03:34.864600"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://dickinsonroob.net/bernie?access-token=g99DY-1cwErlOL8YDxXc-A&client=KmiA95PtQ0hhHospTREAPg&client_id=KmiA95PtQ0hhHospTREAPg&config=&expiry=&reset_password=true&token=g99DY-1cwErlOL8YDxXc-A&uid=oretha%40spinka.io Completed 302 Found in 57ms (ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://terryvandervort.io/glayds\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT 1 [["uid", "nothere@gmail.com"], ["provider", "email"]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.2ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"hugo@graham.com\"\n name: \"Ethelene Botsford\"\n password: \"KhJnJmPfPoEb3\"\n passwordConfirmation: \"KhJnJmPfPoEb3\"\n confirmSuccessUrl: \"http://tromp.co/marcia.altenwerth\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'hugo@graham.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("encrypted_password", "name", "email", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["encrypted_password", "$2a$04$Ew/VpgNclbbd4YhqC7up/OlsXcWK9iNEvpsG4ylPYWzJtZALm3dsq"], ["name", "Ethelene Botsford"], ["email", "hugo@graham.com"], ["uid", "hugo@graham.com"], ["created_at", "2019-10-13 20:03:34.900286"], ["updated_at", "2019-10-13 20:03:34.900286"], ["confirmation_token", "iUzXAtBgjJ14_4KP68nL"], ["confirmation_sent_at", "2019-10-13 20:03:34.901077"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (2.2ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 7.7ms Sent mail to hugo@graham.com (2.2ms) Date: Sun, 13 Oct 2019 15:03:34 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: hugo@graham.com Message-ID: <5da38316def79_d56f3feeee432020569c2@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://tromp.co/marcia.altenwerth

Welcome hugo@graham.com!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 26ms (Views: 0.4ms | ActiveRecord: 1.1ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1 Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Ftromp.co%2Fmarcia.altenwerth&variables%5Btoken%5D=iUzXAtBgjJ14_4KP68nL" for 127.0.0.1 at 2019-10-13 15:03:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://tromp.co/marcia.altenwerth", "token"=>"iUzXAtBgjJ14_4KP68nL"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "iUzXAtBgjJ14_4KP68nL"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:03:34.927682"], ["updated_at", "2019-10-13 20:03:34.928131"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Redirected to http://tromp.co/marcia.altenwerth?account_confirmation_success=true Completed 302 Found in 8ms (ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Inell Gutmann IV\"\n password: \"YlWdO4m0Q1s09\"\n passwordConfirmation: \"YlWdO4m0Q1s09\"\n confirmSuccessUrl: \"http://kulas.biz/geoffrey\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = '' AND "users"."provider" = 'email') LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'betty@smith.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Rich Guy"], ["email", "betty@smith.biz"], ["encrypted_password", "$2a$04$6AsfvNIyZF/a9ZUaJ5Lpeukw.8se/ymciPvKCDGYoi/NBWS3opbWG"], ["confirmed_at", "2019-10-13 20:03:34.954818"], ["allow_password_change", "t"], ["uid", "betty@smith.biz"], ["created_at", "2019-10-13 20:03:34.956675"], ["updated_at", "2019-10-13 20:03:34.956675"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"77ffc7FHJe4N4wnSM6kTpg\":{\"token\":\"$2a$10$OpwARIe7NWzFVzvNEgbA2u9pwTd60PshUsKMIFkoo7DRTTQYNxBOy\",\"expiry\":1572206615,\"updated_at\":\"2019-10-13 20:03:34 UTC\"}}"], ["updated_at", "2019-10-13 20:03:35.026495"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "betty@smith.biz"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$1iXgtpaQuR/17WWpmdDyM.hI8PXHONPWkeaSyziofy5bH2PsgVEV6"], ["updated_at", "2019-10-13 20:03:35.098936"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:35.102684"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 76ms (Views: 0.2ms | ActiveRecord: 1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'dodie@treutel.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Ginger Snapp"], ["email", "dodie@treutel.co"], ["encrypted_password", "$2a$04$sc3QNeAH.BGudCEedFXLie5EOoMAgmAL.moJTJZJet7Eo/A0tUw8a"], ["confirmed_at", "2019-10-13 20:03:35.115173"], ["allow_password_change", "t"], ["uid", "dodie@treutel.co"], ["created_at", "2019-10-13 20:03:35.117609"], ["updated_at", "2019-10-13 20:03:35.117609"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nYmVLeN7-94ITgVA1uYp9g\":{\"token\":\"$2a$10$rnzdxog0OcDQzYttlmdXfOM.O/fpanwU4wrThMKNd/pTaIk.OwXSW\",\"expiry\":1572206615,\"updated_at\":\"2019-10-13 20:03:35 UTC\"}}"], ["updated_at", "2019-10-13 20:03:35.181380"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "dodie@treutel.co"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$YL8oOg7Dpd9SUa9g2ePiMeesoSA1BqNKqgGsV2ssafLX3dmYzisd2"], ["updated_at", "2019-10-13 20:03:35.258004"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:35.259594"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 71ms (Views: 0.3ms | ActiveRecord: 0.5ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'thurman_johnson@anderson.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Eddie Bull"], ["email", "thurman_johnson@anderson.info"], ["encrypted_password", "$2a$04$2NEFfQJlmlM/9IakbBY5V.2Dn5TRhAfdtbgUXubqo7a5aiGq5Ikw2"], ["confirmed_at", "2019-10-13 20:03:35.273205"], ["uid", "thurman_johnson@anderson.info"], ["created_at", "2019-10-13 20:03:35.275434"], ["updated_at", "2019-10-13 20:03:35.275434"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"djEtxyvC_XNg6eXmbBOLWw\":{\"token\":\"$2a$10$t4jrJu0UYwpJ.CfCUeW/3u9lua4erCZLiZYIzUcrBF4l7N817aJ72\",\"expiry\":1572206615,\"updated_at\":\"2019-10-13 20:03:35 UTC\"}}"], ["updated_at", "2019-10-13 20:03:35.341228"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "thurman_johnson@anderson.info"]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 69ms (Views: 0.2ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'sharolyn@collierernser.com' AND "users"."provider" = 'email') LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Anita Job"], ["email", "sharolyn@collierernser.com"], ["encrypted_password", "$2a$04$iwFD2m/jZrd36P9xiFhQFuweGROCMZ2RpmTX92W4SIu3J4bidXW1S"], ["confirmed_at", "2019-10-13 20:03:35.426319"], ["allow_password_change", "t"], ["uid", "sharolyn@collierernser.com"], ["created_at", "2019-10-13 20:03:35.427407"], ["updated_at", "2019-10-13 20:03:35.427407"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"WmC95qxaeHxteFwMHuOvAQ\":{\"token\":\"$2a$10$wRot5/xGVxWD.TZM/p1Vw.5yO3p0sZj4SjBwCCi3j2pDaRH9q14mm\",\"expiry\":1572206615,\"updated_at\":\"2019-10-13 20:03:35 UTC\"}}"], ["updated_at", "2019-10-13 20:03:35.491158"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "sharolyn@collierernser.com"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$ARb/oB64fLEMAOkdSoXdMOJ82OR.ziQrUbXEMy8PlJ0hfI3glzQ7i"], ["updated_at", "2019-10-13 20:03:35.568289"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:35.569447"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 69ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'tatum@terry.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "allow_password_change", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Nick O'Teen"], ["email", "tatum@terry.name"], ["encrypted_password", "$2a$04$benweVGWx37oNHkwwhFD6OnqpvZ3xrfYENoRjiaqTA5eXUn5JheMm"], ["confirmed_at", "2019-10-13 20:03:35.575575"], ["allow_password_change", "t"], ["uid", "tatum@terry.name"], ["created_at", "2019-10-13 20:03:35.577262"], ["updated_at", "2019-10-13 20:03:35.577262"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"IAAnjA16n7RK5qD39Duevg\":{\"token\":\"$2a$10$4A2w1StJ1Pbb4QMk1ShzcOMTliFinriHjxXGbpKeFTPpNfqNNvMBK\",\"expiry\":1572206615,\"updated_at\":\"2019-10-13 20:03:35 UTC\"}}"], ["updated_at", "2019-10-13 20:03:35.639035"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "tatum@terry.name"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$UkPlLkj5xMLAhf6F/FPdaO2BMquZc0.l52R3YppuM0VHuYLBC76ue"], ["updated_at", "2019-10-13 20:03:35.714779"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:35.718730"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 78ms (Views: 0.3ms | ActiveRecord: 1.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'jerold.connelly@moriette.name' AND "users"."provider" = 'email') LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Mike Stand"], ["email", "jerold.connelly@moriette.name"], ["encrypted_password", "$2a$04$mTZwJSLBhEhofA9n1NWNDujAdCm.P2rX62SsJ6kyskZ8mRgXE8r/y"], ["confirmed_at", "2019-10-13 20:03:35.732427"], ["uid", "jerold.connelly@moriette.name"], ["created_at", "2019-10-13 20:03:35.735413"], ["updated_at", "2019-10-13 20:03:35.735413"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"MCN-Uo6i4WvZ-9_6KlAiyA\":{\"token\":\"$2a$10$9zs/B9PKB7hQ/ic87Wb3lOv1yIC3D2AlePB6bZFne6vrQn7TUAsVe\",\"expiry\":1572206615,\"updated_at\":\"2019-10-13 20:03:35 UTC\"}}"], ["updated_at", "2019-10-13 20:03:35.805849"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "jerold.connelly@moriette.name"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$vet.i7V.6ar8foMqI.w1EOLaYOnghaw5OCzXlDisEo7QwpOoKr7dO"], ["updated_at", "2019-10-13 20:03:35.876870"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 71ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'earl@bode.biz' AND "users"."provider" = 'email') LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Pat Pending"], ["email", "earl@bode.biz"], ["encrypted_password", "$2a$04$yjhvvVzwJESL69bsQY87c.FxXsj3fqXQclxU/Xt09FBJrjz7je73q"], ["confirmed_at", "2019-10-13 20:03:35.892481"], ["uid", "earl@bode.biz"], ["created_at", "2019-10-13 20:03:35.894472"], ["updated_at", "2019-10-13 20:03:35.894472"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'khadijah@weimann.org' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Sam Dayoulpay"], ["email", "khadijah@weimann.org"], ["encrypted_password", "$2a$04$DkndJ3.ix4EHDz.WYee62uriO29Lt1s2MTYYNqWUOU6iYvWlVNhAG"], ["confirmed_at", "2019-10-13 20:03:35.914606"], ["uid", "khadijah@weimann.org"], ["created_at", "2019-10-13 20:03:35.916123"], ["updated_at", "2019-10-13 20:03:35.916123"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "6e64aa768b4f7eafeba0354570e0449d1a419b53e8406d98eec91f5ec68ba573"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "6e64aa768b4f7eafeba0354570e0449d1a419b53e8406d98eec91f5ec68ba573"], ["reset_password_sent_at", "2019-10-13 20:03:35.917935"], ["updated_at", "2019-10-13 20:03:35.918209"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22CC83DLYHSV4C18kdhbLP%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"CC83DLYHSV4C18kdhbLP\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "6e64aa768b4f7eafeba0354570e0449d1a419b53e8406d98eec91f5ec68ba573"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hYnHeDWFEQgqH-0a9obBww\":{\"token\":\"$2a$10$ZFD/sXi7NXYrR.hnf2O1ruczPbCRFJMiguEuW3Jw9FqFD3Uwzwkmu\",\"expiry\":1572206615}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:03:35.994234"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hYnHeDWFEQgqH-0a9obBww\":{\"token\":\"$2a$10$ZFD/sXi7NXYrR.hnf2O1ruczPbCRFJMiguEuW3Jw9FqFD3Uwzwkmu\",\"expiry\":1572206615},\"0x6F1ep-aZfeQgp4muxlcQ\":{\"token\":\"$2a$10$/gfgGfw4SNRsNAOEGG1Df.yHc6/wuZHhrNHOPmxv5NaF9LPb.PQb.\",\"expiry\":1572206616,\"updated_at\":\"2019-10-13 20:03:35 UTC\"}}"], ["updated_at", "2019-10-13 20:03:36.055767"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 134ms (Views: 0.1ms | ActiveRecord: 0.6ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'grace_raynor@dubuque.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Justin Inch"], ["email", "grace_raynor@dubuque.info"], ["encrypted_password", "$2a$04$5fK.18.a3etK70gXtHBqy.qJESCHKMnqDNNYrMrXq1aV/wme5oJxO"], ["confirmed_at", "2019-10-13 20:03:36.063678"], ["uid", "grace_raynor@dubuque.info"], ["created_at", "2019-10-13 20:03:36.067386"], ["updated_at", "2019-10-13 20:03:36.067386"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "54333d8fcdcfe75c8e7ae4d4efecb14f0e8c0931a8c16d39254a06285e1cfc5a"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "54333d8fcdcfe75c8e7ae4d4efecb14f0e8c0931a8c16d39254a06285e1cfc5a"], ["reset_password_sent_at", "2019-10-13 20:03:36.072019"], ["updated_at", "2019-10-13 20:03:36.073402"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22yxwc71EpVY6axTkRR4yG%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"yxwc71EpVY6axTkRR4yG\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "54333d8fcdcfe75c8e7ae4d4efecb14f0e8c0931a8c16d39254a06285e1cfc5a"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"1SmfCE_axgZIhkmB6gZeCA\":{\"token\":\"$2a$10$O6fa3xZDQeRUyfALX.qXku8zZsiC4gxvYOShfXX3Ue.NC0doMrjNe\",\"expiry\":1572206616}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:03:36.149462"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=RwUxzPh2w7Eb0AKKnlMCzg&client=1SmfCE_axgZIhkmB6gZeCA&client_id=1SmfCE_axgZIhkmB6gZeCA&config=&expiry=&reset_password=true&token=RwUxzPh2w7Eb0AKKnlMCzg&uid=grace_raynor%40dubuque.info Completed 302 Found in 72ms (ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'kerstin@yost.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.0ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Walt Smedley"], ["email", "kerstin@yost.info"], ["encrypted_password", "$2a$04$4Hy2GAeEpwRHrxPZlz9QKO8XPdTKJPTtdOtT9JVaF19Jyxbe51.NS"], ["confirmed_at", "2019-10-13 10:03:36.000000"], ["uid", "kerstin@yost.info"], ["created_at", "2019-10-13 10:03:36.000000"], ["updated_at", "2019-10-13 10:03:36.000000"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "77bf1cec5c07568ff28817c2d0354624bb884f613d2df7216ac33453dd246978"]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "77bf1cec5c07568ff28817c2d0354624bb884f613d2df7216ac33453dd246978"], ["reset_password_sent_at", "2019-10-13 10:03:36.000000"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22-sxxeptZcxtxkF_aLvj9%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"-sxxeptZcxtxkF_aLvj9\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "77bf1cec5c07568ff28817c2d0354624bb884f613d2df7216ac33453dd246978"]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'loris_wyman@okeefe.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Rusty Steele"], ["email", "loris_wyman@okeefe.co"], ["encrypted_password", "$2a$04$V11p0CPP1n7d6oJPSQBir.MgOLmNRwH4lKiW/9ut1pOGSy0h0Ig6."], ["confirmed_at", "2019-10-13 20:03:36.175806"], ["uid", "loris_wyman@okeefe.co"], ["created_at", "2019-10-13 20:03:36.176982"], ["updated_at", "2019-10-13 20:03:36.176982"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "9a666a2c59aa432a545c146a73a6bc3cc666b620207b837b634b7df3622668ae"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "9a666a2c59aa432a545c146a73a6bc3cc666b620207b837b634b7df3622668ae"], ["reset_password_sent_at", "2019-10-13 20:03:36.180222"], ["updated_at", "2019-10-13 20:03:36.181179"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22xPhLeW1tDbQcg1YXswVfinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"xPhLeW1tDbQcg1YXswVfinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["reset_password_token", "976f1b2ba3b045eff7a5db0b8930108848a121a2677fde19b1188119e4c3bb63"]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'sydney@breitenberg.co' AND "users"."provider" = 'email') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Art Painter"], ["email", "sydney@breitenberg.co"], ["encrypted_password", "$2a$04$SvSoJyVQQn8VnPNCkQBNtOgc4t7YlP7HRykYWcWCK7gRDv2Gvq08K"], ["uid", "sydney@breitenberg.co"], ["created_at", "2019-10-13 20:03:36.200945"], ["updated_at", "2019-10-13 20:03:36.200945"], ["confirmation_token", "88sRvSGB5bcvESBzosuN"], ["confirmation_sent_at", "2019-10-13 20:03:36.201135"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.5ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.4ms Sent mail to sydney@breitenberg.co (1.4ms) Date: Sun, 13 Oct 2019 15:03:36 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: sydney@breitenberg.co Message-ID: <5da3831831f95_d56f3feeee4320205702e@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome sydney@breitenberg.co!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%2288sRvSGB5bcvESBzosuN%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fkoelpin.net%2Fsean_parisian%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"88sRvSGB5bcvESBzosuN\"\n redirectUrl: \"http://koelpin.net/sean_parisian\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "88sRvSGB5bcvESBzosuN"]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:03:36.214220"], ["updated_at", "2019-10-13 20:03:36.215406"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://koelpin.net/sean_parisian?account_confirmation_success=true Completed 302 Found in 9ms (ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'delfina.kuhn@rodriguez.info' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["name", "Thor Luther"], ["email", "delfina.kuhn@rodriguez.info"], ["encrypted_password", "$2a$04$4rGtAZ3Y.ykIgiDhpsX8NeoWxxO9XNqjIvWzBgMQjmF5lnhFNADcK"], ["uid", "delfina.kuhn@rodriguez.info"], ["created_at", "2019-10-13 20:03:36.249671"], ["updated_at", "2019-10-13 20:03:36.249671"], ["confirmation_token", "6j6CyT8WomT5w-QqUwEy"], ["confirmation_sent_at", "2019-10-13 20:03:36.249965"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%226j6CyT8WomT5w-QqUwEy-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fcrooks.io%2Fstephane%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:36 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"6j6CyT8WomT5w-QqUwEy-invalid\"\n redirectUrl: \"http://crooks.io/stephane\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "6j6CyT8WomT5w-QqUwEy-invalid"]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "0912acaddf892dac8ed63b2eea787c3a73cc9a1195a62878b49d7961e8d6f0f6"]] Completed 200 OK in 95ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'alec@mcdermottcummings.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.2ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Jim Laucher"], ["email", "alec@mcdermottcummings.net"], ["encrypted_password", "$2a$04$pf/dKv68fnw6WZKMK1YBQeZTcwYiKMAJAe7sj2yJc7n9jca7bWv.a"], ["confirmed_at", "2019-10-13 20:03:36.355281"], ["uid", "alec@mcdermottcummings.net"], ["created_at", "2019-10-13 20:03:36.356051"], ["updated_at", "2019-10-13 20:03:36.356051"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Rhj52Jb2_NHkiT7KdhPjdA\":{\"token\":\"$2a$10$NWqertscZ4AXgqw.pxnVs.117ldzKuqpysrb2cFYzVlomJMbajRtC\",\"expiry\":1572206616,\"updated_at\":\"2019-10-13 20:03:36 UTC\"}}"], ["updated_at", "2019-10-13 20:03:36.403858"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:03:36 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "alec@mcdermottcummings.net"]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'emeline@gutmanncronin.net' AND "users"."provider" = 'email') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("name", "email", "encrypted_password", "confirmed_at", "uid", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Ken Oppenner"], ["email", "emeline@gutmanncronin.net"], ["encrypted_password", "$2a$04$YB4ARDD3.qxScnULVVFtquZQW4LEVV6JdDJZw3aqEn81YvCxUcdoy"], ["confirmed_at", "2019-10-13 20:03:36.468480"], ["uid", "emeline@gutmanncronin.net"], ["created_at", "2019-10-13 20:03:36.469319"], ["updated_at", "2019-10-13 20:03:36.469319"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:03:36 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "van_boyer@ortiz.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "van_boyer@ortiz.co"], ["encrypted_password", "$2a$04$onjEZNfLANxmvZYpjiTngef2lJH17YmtqNvD4FPPkPMPifLShfqLG"], ["confirmed_at", "2019-10-13 20:03:39.384735"], ["name", "Ima Hogg"], ["email", "van_boyer@ortiz.co"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:39.389481"], ["updated_at", "2019-10-13 20:03:39.389481"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"van_boyer@ortiz.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "van_boyer@ortiz.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KXaQSQokm4FUX86efVQNKw\":{\"token\":\"$2a$12$mqHq53bb0jOXSZR2Yf7vB.xGp2JZSLrWMGmXfDBId2GYtzYvqJep2\",\"expiry\":1572206619,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:39.419-05:00\"}}"], ["updated_at", "2019-10-13 20:03:39.605103"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 20:03:39.610091"], ["last_sign_in_at", "2019-10-13 20:03:39.610091"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 20:03:39.610720"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 208ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "johnathan@lakinbreitenberg.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "johnathan@lakinbreitenberg.biz"], ["encrypted_password", "$2a$04$xJJYAeNFzhhiC.VWO8Gv/.46LcQFMmatauUaXpNSCd9S6PtXVg0Cy"], ["confirmed_at", "2019-10-13 20:03:39.618239"], ["name", "Les Plack"], ["email", "johnathan@lakinbreitenberg.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:39.619028"], ["updated_at", "2019-10-13 20:03:39.619028"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"johnathan@lakinbreitenberg.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "johnathan@lakinbreitenberg.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-10-13 20:03:39.624407"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nora_hills@torphy.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nora_hills@torphy.org"], ["encrypted_password", "$2a$04$N5mUx/x7gsKjyd55wUpF5e9E8zy2tfcA8iaFvgRmwlYh.MN4huPhC"], ["confirmation_token", "fjYxofebPWDb56s85P5N"], ["confirmation_sent_at", "2019-10-13 20:03:39.630237"], ["name", "Emile Eaton"], ["email", "nora_hills@torphy.org"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:39.630146"], ["updated_at", "2019-10-13 20:03:39.630146"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"nora_hills@torphy.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nora_hills@torphy.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ronna@effertz.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ronna@effertz.net"], ["encrypted_password", "$2a$04$XLiB2WHYUegAtCj.kSFMXeYzdyH9tIZbtsInAWh..jvwBquREZ1om"], ["confirmed_at", "2019-10-13 20:03:39.637647"], ["locked_at", "2019-10-13 20:03:39.637663"], ["name", "Abe Rudder"], ["email", "ronna@effertz.net"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:39.639034"], ["updated_at", "2019-10-13 20:03:39.639034"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ronna@effertz.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ronna@effertz.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "caitlyn@fadel.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "caitlyn@fadel.info"], ["encrypted_password", "$2a$04$53sK.IslTR3L7wi.wSd0Cep9JKkIG.OrmzzcVzk47wp65Am8OAYem"], ["confirmed_at", "2019-10-13 20:03:39.647832"], ["name", "Ophelia Payne"], ["email", "caitlyn@fadel.info"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:39.648897"], ["updated_at", "2019-10-13 20:03:39.648897"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"caitlyn@fadel.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "caitlyn@fadel.info"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "ru@howe.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ru@howe.org"], ["encrypted_password", "$2a$04$20SuEpouaFKaOG9lRsD2BOw/67IvmhfN3pgELMWgxcy/VwOHW1YHm"], ["confirmed_at", "2019-10-13 20:03:39.688657"], ["email", "ru@howe.org"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:39.690114"], ["updated_at", "2019-10-13 20:03:39.690114"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"ru@howe.org\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "ru@howe.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"pkdzAVXiKTmrqHKdvgQUpw\":{\"token\":\"$2a$12$ekDgVHSr1gyCGytK8fdEdeN.EZg3XFzArfBEMewEnG.elwvN6kmB2\",\"expiry\":1572206619,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:39.696-05:00\"}}"], ["updated_at", "2019-10-13 20:03:39.890600"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 200ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "raymundo@konopelski.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "raymundo@konopelski.com"], ["encrypted_password", "$2a$04$kcr1UdqpZvPoVfWLYfIh7.ynN50kMort.8lkIpE8W9r9KbTjqjNsq"], ["confirmed_at", "2019-10-13 20:03:39.897737"], ["name", "Bill Overdew"], ["email", "raymundo@konopelski.com"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:39.898827"], ["updated_at", "2019-10-13 20:03:39.898827"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"A5KkvMsbmvKnM3Vzqc3D4w\":{\"token\":\"$2a$12$iKaMDbBXEc5wwvNymrY39uLObJEiHTnBZ8kSnffwt0x.fPBTN/lUu\",\"expiry\":1572206619,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:39.899-05:00\"}}"], ["updated_at", "2019-10-13 20:03:40.084710"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "raymundo@konopelski.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 20:03:40.261081"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 175ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wilbur@bahringertremblay.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "wilbur@bahringertremblay.net"], ["encrypted_password", "$2a$04$mfUMCkxm1KXBzu9w/rOYPuACoi4YUG.RnczG7Wru4TigR6UXGSoym"], ["confirmed_at", "2019-10-13 20:03:40.268116"], ["name", "Chi Spurger"], ["email", "wilbur@bahringertremblay.net"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:40.268781"], ["updated_at", "2019-10-13 20:03:40.268781"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "britt@block.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "britt@block.name"], ["encrypted_password", "$2a$04$WgGD5iiKUWdkrcX1eigJmee80svcqge/3lxaT6lBbH4gun/Ugywa2"], ["confirmed_at", "2019-10-13 20:03:40.272124"], ["email", "britt@block.name"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:40.272825"], ["updated_at", "2019-10-13 20:03:40.272825"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"qI2ef6UPLhZ4twSk6xUc5g\":{\"token\":\"$2a$12$ehlKbmAURDd5L/n6wHvZ1.BpYF77O/uvU5bJ/NFlTn6e5RvlgMHEC\",\"expiry\":1572206620,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:40.273-05:00\"}}"], ["updated_at", "2019-10-13 20:03:40.450389"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "britt@block.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 20:03:40.620522"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 170ms (Views: 0.1ms | ActiveRecord: 0.2ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wan@schiller.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "wan@schiller.co"], ["encrypted_password", "$2a$04$V5aUToGw6cNGRii9ociNgOO5jcma2cNdCvGetinCMsOIdKaxiE/ye"], ["confirmed_at", "2019-10-13 20:03:40.627053"], ["name", "Missy Sippy"], ["email", "wan@schiller.co"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:40.627920"], ["updated_at", "2019-10-13 20:03:40.627920"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"wan@schiller.co\",\n redirectUrl: \"http://sporer.io/thurman\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE (uid = 'wan@schiller.co' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e8ceb28b8173a3a97cdb51fc784c0c5df06ea3bc0c527a8b73ac74b202818552"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "e8ceb28b8173a3a97cdb51fc784c0c5df06ea3bc0c527a8b73ac74b202818552"], ["reset_password_sent_at", "2019-10-13 20:03:40.709528"], ["updated_at", "2019-10-13 20:03:40.709887"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (3.2ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 110.3ms Sent mail to wan@schiller.co (3.4ms) Date: Sun, 13 Oct 2019 15:03:40 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: wan@schiller.co Message-ID: <5da3831cc92f2_d5883fd206c2ffd472862@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: wan@schiller.co provider: email redirect-url: http://sporer.io/thurman client-config: default

Hello wan@schiller.co!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 196ms (Views: 0.1ms | ActiveRecord: 0.3ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fsporer.io%2Fthurman&variables%5Btoken%5D=kRdUwKxGX4VsKynDBZmZ" for 127.0.0.1 at 2019-10-13 15:03:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://sporer.io/thurman", "token"=>"kRdUwKxGX4VsKynDBZmZ"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e8ceb28b8173a3a97cdb51fc784c0c5df06ea3bc0c527a8b73ac74b202818552"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DWMXFb6mKnGpCW5iaoiz1g\":{\"token\":\"$2a$12$/mUvrFY.2Fm/keQM7p/Liej0Edr3UgMDil83m3dMJq.yN0y.sa5sK\",\"expiry\":1572206620}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:03:40.997293"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://sporer.io/thurman?access-token=1572206620&client=DWMXFb6mKnGpCW5iaoiz1g&client_id=DWMXFb6mKnGpCW5iaoiz1g&config=&expiry=1572206620&reset_password=true&token=1572206620&uid=wan%40schiller.co Completed 302 Found in 171ms (ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://pouros.com/macy\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE (uid = 'nothere@gmail.com' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"reginia@keleryost.name\"\n name: \"Venetta Pagac III\"\n password: \"RcIkUxAkQ0\"\n passwordConfirmation: \"RcIkUxAkQ0\"\n confirmSuccessUrl: \"http://murphy.io/lanny_barrows\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "reginia@keleryost.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "reginia@keleryost.name"], ["encrypted_password", "$2a$04$2P2U.qgLfk76yJ20bsBXNewl4EEA45Q01r6qwSQfB2a1akkth0TXq"], ["confirmation_token", "vGfeXkuzc33UR5G9Rdsc"], ["confirmation_sent_at", "2019-10-13 20:03:41.010478"], ["name", "Venetta Pagac III"], ["email", "reginia@keleryost.name"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:41.010385"], ["updated_at", "2019-10-13 20:03:41.010385"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.6ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 4.4ms Sent mail to reginia@keleryost.name (0.9ms) Date: Sun, 13 Oct 2019 15:03:41 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: reginia@keleryost.name Message-ID: <5da3831d3fee_d5883fd206c2ffd4729af@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://murphy.io/lanny_barrows

Welcome reginia@keleryost.name!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 10ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.0ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fmurphy.io%2Flanny_barrows&variables%5Btoken%5D=vGfeXkuzc33UR5G9Rdsc" for 127.0.0.1 at 2019-10-13 15:03:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://murphy.io/lanny_barrows", "token"=>"vGfeXkuzc33UR5G9Rdsc"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "vGfeXkuzc33UR5G9Rdsc"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:03:41.025178"], ["updated_at", "2019-10-13 20:03:41.025665"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://murphy.io/lanny_barrows?account_confirmation_success=true Completed 302 Found in 9ms (ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Mr. Stefany Kreiger\"\n password: \"Dk2XrGeMhT\"\n passwordConfirmation: \"Dk2XrGeMhT\"\n confirmSuccessUrl: \"http://renner.info/eldridge_glover\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lorita.harvey@lind.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lorita.harvey@lind.io"], ["encrypted_password", "$2a$04$HeW1eJdfC4AeIx8qLKjcMuRZXR5XZEgV4lrTV4i7KW.z77znjEsu."], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:03:41.054089"], ["name", "Tina See"], ["email", "lorita.harvey@lind.io"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:41.055369"], ["updated_at", "2019-10-13 20:03:41.055369"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yDnFSLGz3yhVNPBx5tLWrg\":{\"token\":\"$2a$12$74YJ4n9Mi/zIzKMuW4VyTexHlKGWSTfT4qXLDkA6MgurP/j.fTD1.\",\"expiry\":1572206621,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:41.057-05:00\"}}"], ["updated_at", "2019-10-13 20:03:41.253541"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lorita.harvey@lind.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$merF5mYLX3p5EJ67792VE.Vlbez6gFwF1nPZ7dAGgwYv075ZIqUT."], ["updated_at", "2019-10-13 20:03:41.433525"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:41.435409"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 181ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joesph@kutch.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "joesph@kutch.co"], ["encrypted_password", "$2a$04$krW5JbBCgv8p55Dbn9BigO/8PdmFPuGiNjmNG6ZG9bhNjw7USd83W"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:03:41.442466"], ["name", "Dinah Soares"], ["email", "joesph@kutch.co"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:41.444033"], ["updated_at", "2019-10-13 20:03:41.444033"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NEftOnY-mxb4UNmU_hHemA\":{\"token\":\"$2a$12$6snJOQSg52FPiF8TN9tNhOM9sXN22b34hoMBDMk515l5EimUO1vwi\",\"expiry\":1572206621,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:41.445-05:00\"}}"], ["updated_at", "2019-10-13 20:03:41.627222"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:41 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "joesph@kutch.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$3H.gKoSi.rXpPokrXfs4Cu9o5NHkgZB0dk5a9mIYwOUkLOvN.x//O"], ["updated_at", "2019-10-13 20:03:41.812545"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:41.814308"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 185ms (Views: 0.2ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jim@watsica.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jim@watsica.org"], ["encrypted_password", "$2a$04$pZ57WcTuH0Ezdye8t1doouMxv5xWl5LDxGlQtMnXHv1iRZME9ViNy"], ["confirmed_at", "2019-10-13 20:03:41.822342"], ["name", "Otto Carr"], ["email", "jim@watsica.org"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:41.823341"], ["updated_at", "2019-10-13 20:03:41.823341"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fayz1sTH18GsIF2e2s8tCQ\":{\"token\":\"$2a$12$qS0GhHPrh5GEseYfDI6b6eqh9luuKr5/kJIgmk9kwbkyeHu0kbbye\",\"expiry\":1572206621,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:41.824-05:00\"}}"], ["updated_at", "2019-10-13 20:03:42.022470"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jim@watsica.org"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "logan_mckenzie@millerhyatt.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "logan_mckenzie@millerhyatt.org"], ["encrypted_password", "$2a$04$X8tH/fF/LrHcOCpxcM8Eq.eVCWXa3op/89xxtJq3hHPRwKHZ3hsYW"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:03:42.220130"], ["name", "Mason Jarr"], ["email", "logan_mckenzie@millerhyatt.org"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:42.220943"], ["updated_at", "2019-10-13 20:03:42.220943"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Dimom6cuyICbZUQtx18SOg\":{\"token\":\"$2a$12$E6kMu3nqOntItv1/7YZ78O1R8Bkbb2qQE7G7/1Xh10H6Lq.AkC6Zy\",\"expiry\":1572206622,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:42.222-05:00\"}}"], ["updated_at", "2019-10-13 20:03:42.399123"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "logan_mckenzie@millerhyatt.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$pZBaUhP4BTo3gXxKMm/t5eIRm7hY/S.Jrc2eT.JurfRE6IMHCm9iK"], ["updated_at", "2019-10-13 20:03:42.578676"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:42.579924"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 180ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hiram@thompson.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hiram@thompson.io"], ["encrypted_password", "$2a$04$w7FEHFBJ5jpVy1XbtPWrZOfp0wD.UvJgb3RLo06Ym9LL8FVKnfgGK"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:03:42.585544"], ["name", "Hayden Seek"], ["email", "hiram@thompson.io"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:42.586364"], ["updated_at", "2019-10-13 20:03:42.586364"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ztQFTzFgacrHUNac4Ao_FQ\":{\"token\":\"$2a$12$hKYJErv2aO11Zk8oi1m4Zejql8B.Ah1Lep6FMHucGyJZj6kGYgUv6\",\"expiry\":1572206622,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:42.587-05:00\"}}"], ["updated_at", "2019-10-13 20:03:42.776318"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "hiram@thompson.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$HLkbS/TW9z7D56/1n9PJP.WsgNXUh5H0CT0LljbD.ryrW/1IWUB/."], ["updated_at", "2019-10-13 20:03:42.978022"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:42.979517"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 202ms (Views: 0.1ms | ActiveRecord: 0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dick@dachmoriette.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dick@dachmoriette.io"], ["encrypted_password", "$2a$04$St7z7IWHngDBmdADhyaTB.jDxODEq5z.GaKUISGFSSC1r.A2dzxIe"], ["confirmed_at", "2019-10-13 20:03:42.986372"], ["name", "Mike Raffone"], ["email", "dick@dachmoriette.io"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:42.987177"], ["updated_at", "2019-10-13 20:03:42.987177"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"HQoEj4GOg-DeLD-tZlKiJA\":{\"token\":\"$2a$12$M7jTSWoa.UTjjyIGBy7i/uOfbUVBruQi/atIfDzzX6dY/D6rJ0UJa\",\"expiry\":1572206622,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:42.988-05:00\"}}"], ["updated_at", "2019-10-13 20:03:43.167202"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dick@dachmoriette.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$1QRhIMDQxPhVzhKFtmh79uWMcSFoIIjlnZxNy6rC9kzexKjxDHtwK"], ["updated_at", "2019-10-13 20:03:43.348862"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 182ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "linsey@blick.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "linsey@blick.name"], ["encrypted_password", "$2a$04$0lJGZIqg.3b6K9wCs91N1uBkvwSZKbYhSePC/7Z5xkj6RLFW4I//2"], ["confirmed_at", "2019-10-13 20:03:43.356286"], ["name", "Rusty Keyes"], ["email", "linsey@blick.name"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:43.357066"], ["updated_at", "2019-10-13 20:03:43.357066"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "darell@tromp.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "darell@tromp.info"], ["encrypted_password", "$2a$04$Mw86bVLH20Gc0.O8iTeehOoy2Y5lb9BByxJy2jfKPCmp2yTO.1kI2"], ["confirmed_at", "2019-10-13 20:03:43.364959"], ["name", "Luke Warm"], ["email", "darell@tromp.info"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:43.365914"], ["updated_at", "2019-10-13 20:03:43.365914"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cb6e5cd5e34c85caecd4046e2ab04e01fc886bb518748adc58bd08d8eaa099f7"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "cb6e5cd5e34c85caecd4046e2ab04e01fc886bb518748adc58bd08d8eaa099f7"], ["reset_password_sent_at", "2019-10-13 20:03:43.367555"], ["updated_at", "2019-10-13 20:03:43.367784"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22mvQpNXzLS2521cihTEPM%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"mvQpNXzLS2521cihTEPM\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cb6e5cd5e34c85caecd4046e2ab04e01fc886bb518748adc58bd08d8eaa099f7"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KYLulyxHGa_B3l3U0PTMrw\":{\"token\":\"$2a$12$Sau.gCqEaFZcsXjT6nnKR.9dYcZe937X9i1q9m1SMTeEAKhNur7Xq\",\"expiry\":1572206623}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:03:43.555311"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KYLulyxHGa_B3l3U0PTMrw\":{\"token\":\"$2a$12$Sau.gCqEaFZcsXjT6nnKR.9dYcZe937X9i1q9m1SMTeEAKhNur7Xq\",\"expiry\":1572206623},\"fCN9F1s9RrDaxBvfEB0oHw\":{\"token\":\"$2a$12$MyjSnqLFuJncNrWrPK1BaOOoIT6SVqyVmtNHLyYkrppMn3mR8bFL.\",\"expiry\":1572206623,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:43.559-05:00\"}}"], ["updated_at", "2019-10-13 20:03:43.752091"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 386ms (Views: 0.7ms | ActiveRecord: 0.9ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kirk_stamm@skiles.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kirk_stamm@skiles.info"], ["encrypted_password", "$2a$04$z60lfcCKzwTqcpRgPEVebuhcf5RdcCLQCnURirvEAODfWqQ7a/Ebm"], ["confirmed_at", "2019-10-13 20:03:43.760796"], ["name", "Mary Gold"], ["email", "kirk_stamm@skiles.info"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:43.762268"], ["updated_at", "2019-10-13 20:03:43.762268"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "079a526cc7cefa163f4cb07e7b96263bec3355c7fbd431a09175c9553e5ff49c"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "079a526cc7cefa163f4cb07e7b96263bec3355c7fbd431a09175c9553e5ff49c"], ["reset_password_sent_at", "2019-10-13 20:03:43.798472"], ["updated_at", "2019-10-13 20:03:43.799173"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22hy9ozz68RJRuCrmifUqo%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"hy9ozz68RJRuCrmifUqo\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "079a526cc7cefa163f4cb07e7b96263bec3355c7fbd431a09175c9553e5ff49c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ABkm3QzBIHDkgk2gd588CA\":{\"token\":\"$2a$12$6FO3zyw.UWRVwxyXh2HAse/N/vt9WLgUJbiO/3VlEoRz5ZEJyIfXa\",\"expiry\":1572206623}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:03:43.991213"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1572206623&client=ABkm3QzBIHDkgk2gd588CA&client_id=ABkm3QzBIHDkgk2gd588CA&config=&expiry=1572206623&reset_password=true&token=1572206623&uid=kirk_stamm%40skiles.info Completed 302 Found in 191ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "berry@weimann.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "berry@weimann.name"], ["encrypted_password", "$2a$04$JU8i3ZNdWcIALKv5Nn929up3QCplWLNDi3z22WbBFzaeHKH08NMoG"], ["confirmed_at", "2019-10-13 10:03:43"], ["name", "Al O'Moaney"], ["email", "berry@weimann.name"], ["tokens", "{}"], ["created_at", "2019-10-13 10:03:43"], ["updated_at", "2019-10-13 10:03:43"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2e61fb9d6336aa5c1f7fd2e880711c8b444be7e0f63dc87a564dc414961f59e1"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "2e61fb9d6336aa5c1f7fd2e880711c8b444be7e0f63dc87a564dc414961f59e1"], ["reset_password_sent_at", "2019-10-13 10:03:43"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22Vm7Dzs8oFPX2nt5nhv44%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"Vm7Dzs8oFPX2nt5nhv44\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2e61fb9d6336aa5c1f7fd2e880711c8b444be7e0f63dc87a564dc414961f59e1"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lacy.terry@wolffleannon.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lacy.terry@wolffleannon.org"], ["encrypted_password", "$2a$04$Kr0I7SDwAvRHTzxtpbCbj.OnBbpL8tjfeUBn5FGQtB7iaDSQ5LYBK"], ["confirmed_at", "2019-10-13 20:03:44.006668"], ["name", "Terry Achey"], ["email", "lacy.terry@wolffleannon.org"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:44.007333"], ["updated_at", "2019-10-13 20:03:44.007333"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "95bc313706c2d096dfd2ab6389bd6a7cf66f773289dcc9a1d08c299336c33ac1"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "95bc313706c2d096dfd2ab6389bd6a7cf66f773289dcc9a1d08c299336c33ac1"], ["reset_password_sent_at", "2019-10-13 20:03:44.008513"], ["updated_at", "2019-10-13 20:03:44.008726"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22M6H4cbLuzcr56uxMEZKkinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"M6H4cbLuzcr56uxMEZKkinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c240dde585f061f7e4d6fb3790ddd02e4dedefcb9da3ab39e78272625c69180f"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mariel_cummings@koelpin.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mariel_cummings@koelpin.net"], ["encrypted_password", "$2a$04$wEioAiIvKi6Tt1VtHOdWcuLzNMFuhWC2JyfYezumzvTkCjKFgB/Xe"], ["confirmation_token", "yxzzv9_XDxXxy3BB2Dzf"], ["confirmation_sent_at", "2019-10-13 20:03:44.016637"], ["name", "Jed Dye"], ["email", "mariel_cummings@koelpin.net"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:44.016461"], ["updated_at", "2019-10-13 20:03:44.016461"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.9ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 4.0ms Sent mail to mariel_cummings@koelpin.net (1.2ms) Date: Sun, 13 Oct 2019 15:03:44 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: mariel_cummings@koelpin.net Message-ID: <5da3832059a3_d5883fd206c2ffd4730d@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome mariel_cummings@koelpin.net!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22yxzzv9_XDxXxy3BB2Dzf%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fkreiger.co%2Fashley.jacobs%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"yxzzv9_XDxXxy3BB2Dzf\"\n redirectUrl: \"http://kreiger.co/ashley.jacobs\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "yxzzv9_XDxXxy3BB2Dzf"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:03:44.027223"], ["updated_at", "2019-10-13 20:03:44.027602"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://kreiger.co/ashley.jacobs?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carman_bosco@wisoky.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "carman_bosco@wisoky.io"], ["encrypted_password", "$2a$04$77ZiZ5E1N1ZNi2PU/.E35.5nLKc9tlRkm365o8RqvrSeIA6Rr85Um"], ["confirmation_token", "fQaZBd1kyTHzsyMpPwr5"], ["confirmation_sent_at", "2019-10-13 20:03:44.035051"], ["name", "Hilda Climb"], ["email", "carman_bosco@wisoky.io"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:44.034918"], ["updated_at", "2019-10-13 20:03:44.034918"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22fQaZBd1kyTHzsyMpPwr5-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fkovacek.biz%2Fanderson%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"fQaZBd1kyTHzsyMpPwr5-invalid\"\n redirectUrl: \"http://kovacek.biz/anderson\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "fQaZBd1kyTHzsyMpPwr5-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "ed55c1ad0c0b56a049a05d16d101e17b47d830e3fa539f2656452b51bb33eac3"], ["LIMIT", 1]] Completed 200 OK in 91ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sadye_treutel@breitenberg.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sadye_treutel@breitenberg.info"], ["encrypted_password", "$2a$04$6lnYuX8OdxQIpjmps70j9eTPRUKgRDH0hCSgz2wtr.obb7q34xZGa"], ["confirmed_at", "2019-10-13 20:03:44.132226"], ["name", "Jack Hammer"], ["email", "sadye_treutel@breitenberg.info"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:44.132933"], ["updated_at", "2019-10-13 20:03:44.132933"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-Db5jQ7Su-2kqfyEsbFf_w\":{\"token\":\"$2a$12$hvLN09VPl3NIPgY.rAwH8uL.o1xiCb5JjFBmAXj9138ZLIFBrrx3u\",\"expiry\":1572206624,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:44.133-05:00\"}}"], ["updated_at", "2019-10-13 20:03:44.315214"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:03:44 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sadye_treutel@breitenberg.info"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 181ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "raven.kemmer@schultzdonnelly.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "raven.kemmer@schultzdonnelly.name"], ["encrypted_password", "$2a$04$fXsyUrV0mMCAeyoLTkGSi.7G636LAillR3UGfIwNZBtW7N.IzARKS"], ["confirmed_at", "2019-10-13 20:03:44.503795"], ["name", "Isadore Bell"], ["email", "raven.kemmer@schultzdonnelly.name"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:44.504499"], ["updated_at", "2019-10-13 20:03:44.504499"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:03:44 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alonzo_crooks@gleichner.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alonzo_crooks@gleichner.io"], ["encrypted_password", "$2a$04$HPSjkoM8/k36EQsXpcBKve86aekK21KCB8f41PI.oEI3ue204wHqS"], ["confirmed_at", "2019-10-13 20:03:47.959492"], ["name", "Eileen Dover"], ["email", "alonzo_crooks@gleichner.io"], ["created_at", "2019-10-13 20:03:47.965358"], ["updated_at", "2019-10-13 20:03:47.965358"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"alonzo_crooks@gleichner.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alonzo_crooks@gleichner.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"JUW61AC3bc28vNKDPwbRng\":{\"token\":\"$2a$10$D2OAIKrVDuJwToLdR6i/5ePBWzHmlEx1hcik6PRQIsuSuuVb.QS5O\",\"expiry\":1572206628,\"updated_at\":\"2019-10-13 20:03:47 UTC\"}}"], ["updated_at", "2019-10-13 20:03:48.035627"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 20:03:48.040166"], ["last_sign_in_at", "2019-10-13 20:03:48.040166"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 20:03:48.040574"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 63ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "santina@cainkutch.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "santina@cainkutch.name"], ["encrypted_password", "$2a$04$5qNQmy5AebFraFyrdgKd9u6l9.IZWiyMePWXrvrNn4jKplEO1IHKy"], ["confirmed_at", "2019-10-13 20:03:48.048104"], ["name", "Mike Raffone"], ["email", "santina@cainkutch.name"], ["created_at", "2019-10-13 20:03:48.048988"], ["updated_at", "2019-10-13 20:03:48.048988"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"santina@cainkutch.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "santina@cainkutch.name"], ["LIMIT", 1]] SQL (0.0ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ervin.jacobson@hickle.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ervin.jacobson@hickle.net"], ["encrypted_password", "$2a$04$YBtIqK2qHwtJ6laFgsONEudtPIRdyMJhhXmljnrTk2dW0OiWhbiqG"], ["confirmation_token", "xVLBzLCtRoY2TbSbLQx7"], ["confirmation_sent_at", "2019-10-13 20:03:48.058597"], ["name", "Marty Graw"], ["email", "ervin.jacobson@hickle.net"], ["created_at", "2019-10-13 20:03:48.058517"], ["updated_at", "2019-10-13 20:03:48.058517"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ervin.jacobson@hickle.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ervin.jacobson@hickle.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gaynelle@stark.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gaynelle@stark.biz"], ["encrypted_password", "$2a$04$JoujqvRYZGRadt22Vr9oh.35AosZM8OtkwZmNuh7pDPPXQk3Vcez6"], ["confirmed_at", "2019-10-13 20:03:48.082035"], ["locked_at", "2019-10-13 20:03:48.082064"], ["name", "Joaquin DeFlores"], ["email", "gaynelle@stark.biz"], ["created_at", "2019-10-13 20:03:48.084148"], ["updated_at", "2019-10-13 20:03:48.084148"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"gaynelle@stark.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gaynelle@stark.biz"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "magdalene.friesen@maggio.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "magdalene.friesen@maggio.io"], ["encrypted_password", "$2a$04$Xa/1Pj3yKq.m2hBSDpYtmuH6bvFakT9Ygf3yLnwEaU51.0vZF9wGa"], ["confirmed_at", "2019-10-13 20:03:48.096458"], ["name", "Cam Payne"], ["email", "magdalene.friesen@maggio.io"], ["created_at", "2019-10-13 20:03:48.097598"], ["updated_at", "2019-10-13 20:03:48.097598"], ["auth_available", "f"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"magdalene.friesen@maggio.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "magdalene.friesen@maggio.io"], ["LIMIT", 1]] Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "dallas@hickle.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "dallas@hickle.biz"], ["encrypted_password", "$2a$04$lb4OrUL9d6pF4FQDNstRbu36QYOUfYM0g.LaOqUi.QE8.97ANq7Sa"], ["confirmed_at", "2019-10-13 20:03:48.124247"], ["email", "dallas@hickle.biz"], ["created_at", "2019-10-13 20:03:48.125898"], ["updated_at", "2019-10-13 20:03:48.125898"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"dallas@hickle.biz\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.3ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "dallas@hickle.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"7Ui4Ul7y53XG2R3kY0fcBg\":{\"token\":\"$2a$10$5gUnPXVeCYwZbuBBzEmyeeOZGvK6/AfbBoEahW7XA2mbp925JAduO\",\"expiry\":1572206628,\"updated_at\":\"2019-10-13 20:03:48 UTC\"}}"], ["updated_at", "2019-10-13 20:03:48.191880"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 65ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cinthia@kilback.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cinthia@kilback.io"], ["encrypted_password", "$2a$04$A3kFEV3/AD1TYnfu/d3HL.rOMb0WhaDKlNWE0WKzTh2mK0OOP52/2"], ["confirmed_at", "2019-10-13 20:03:48.196636"], ["name", "Cammie Sole"], ["email", "cinthia@kilback.io"], ["created_at", "2019-10-13 20:03:48.197600"], ["updated_at", "2019-10-13 20:03:48.197600"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"rM-B8X8AHND_3jga2hC4DA\":{\"token\":\"$2a$10$5c4imOWVnEbs1yTuPYybe.PPSwNOtBP2dMtYCXpbDvMib2yySJMm6\",\"expiry\":1572206628,\"updated_at\":\"2019-10-13 20:03:48 UTC\"}}"], ["updated_at", "2019-10-13 20:03:48.254301"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "cinthia@kilback.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:03:48.303822"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dorine@kubschmitt.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dorine@kubschmitt.net"], ["encrypted_password", "$2a$04$taV0RyvgPPicnVJxcIb.qex6Z7mE.YKmFIEOs0R58.PTEOrXY5H4."], ["confirmed_at", "2019-10-13 20:03:48.313314"], ["name", "Hugh deMann"], ["email", "dorine@kubschmitt.net"], ["created_at", "2019-10-13 20:03:48.314604"], ["updated_at", "2019-10-13 20:03:48.314604"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "nubia.hansen@mueller.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "nubia.hansen@mueller.co"], ["encrypted_password", "$2a$04$BfUxYjCFu.a.YxmeAjqjkelE7EtspN9CzPGXomk4BXK7qS7lFblFu"], ["confirmed_at", "2019-10-13 20:03:48.322287"], ["email", "nubia.hansen@mueller.co"], ["created_at", "2019-10-13 20:03:48.323889"], ["updated_at", "2019-10-13 20:03:48.323889"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"KX_rXHmRs5MeuwVm_YQfnw\":{\"token\":\"$2a$10$KYZTx93hAk2lzzmdVexRc.xv3GH91Try3RewsrZ1655GBYtZDtaou\",\"expiry\":1572206628,\"updated_at\":\"2019-10-13 20:03:48 UTC\"}}"], ["updated_at", "2019-10-13 20:03:48.381038"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "nubia.hansen@mueller.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:03:48.431602"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.2ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sung@cormier.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sung@cormier.com"], ["encrypted_password", "$2a$04$520EoQ6ZKKC4EEg23pnlreyYCbrBzuxBu7tcV8amnyyTd/mm/Qcle"], ["confirmed_at", "2019-10-13 20:03:48.438062"], ["name", "Xavier Money"], ["email", "sung@cormier.com"], ["created_at", "2019-10-13 20:03:48.438987"], ["updated_at", "2019-10-13 20:03:48.438987"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"sung@cormier.com\",\n redirectUrl: \"http://larkincruickshank.net/roseanne_crooks\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "sung@cormier.com"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "46651fb60e2b1e35935fcc5fe6138f1b5f4ee74733acabfc52516e6b44f39bd5"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "46651fb60e2b1e35935fcc5fe6138f1b5f4ee74733acabfc52516e6b44f39bd5"], ["reset_password_sent_at", "2019-10-13 20:03:48.525041"], ["updated_at", "2019-10-13 20:03:48.525403"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (3.2ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 108.0ms Sent mail to sung@cormier.com (3.4ms) Date: Sun, 13 Oct 2019 15:03:48 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: sung@cormier.com Message-ID: <5da383249b8cb_d5a33fed0fc3200897097@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: sung@cormier.com provider: email redirect-url: http://larkincruickshank.net/roseanne_crooks client-config: default

Hello sung@cormier.com!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 198ms (Views: 0.1ms | ActiveRecord: 0.4ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Flarkincruickshank.net%2Froseanne_crooks&variables%5Btoken%5D=R3THFDoRBuop6EnXrcJf" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://larkincruickshank.net/roseanne_crooks", "token"=>"R3THFDoRBuop6EnXrcJf"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "46651fb60e2b1e35935fcc5fe6138f1b5f4ee74733acabfc52516e6b44f39bd5"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"AG0Rx8Q8rSPf-rOVUEhkzg\":{\"token\":\"$2a$10$5Xl9Pr9bd9iEQdBVSMLO1ugMNgz5HUxvDKd44ujnahDYyKdplMSvq\",\"expiry\":1572206628}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:03:48.684779"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://larkincruickshank.net/roseanne_crooks?access-token=agtLpUaFn0fS-HgnYPlKUQ&client=AG0Rx8Q8rSPf-rOVUEhkzg&client_id=AG0Rx8Q8rSPf-rOVUEhkzg&config=&expiry=1572206628&reset_password=true&token=agtLpUaFn0fS-HgnYPlKUQ&uid=sung%40cormier.com Completed 302 Found in 45ms (ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://heaneysenger.name/jacinto\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"kenny.casper@crona.info\"\n name: \"Flo Mohr\"\n password: \"6NoYaPfI2a3S6j\"\n passwordConfirmation: \"6NoYaPfI2a3S6j\"\n confirmSuccessUrl: \"http://bednarhansen.info/loretta_cole\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kenny.casper@crona.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kenny.casper@crona.info"], ["encrypted_password", "$2a$04$d6HOOLRVtJK/hR50erkuEOeaRropVCWuStBgDE8azfkIaG6Tjg0oa"], ["confirmation_token", "cCses88G7rwyqzdcxjeB"], ["confirmation_sent_at", "2019-10-13 20:03:48.695963"], ["name", "Flo Mohr"], ["email", "kenny.casper@crona.info"], ["created_at", "2019-10-13 20:03:48.695844"], ["updated_at", "2019-10-13 20:03:48.695844"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.6ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.0ms Sent mail to kenny.casper@crona.info (0.9ms) Date: Sun, 13 Oct 2019 15:03:48 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: kenny.casper@crona.info Message-ID: <5da38324ab0a4_d5a33fed0fc3200897132@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://bednarhansen.info/loretta_cole

Welcome kenny.casper@crona.info!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.0ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fbednarhansen.info%2Floretta_cole&variables%5Btoken%5D=cCses88G7rwyqzdcxjeB" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://bednarhansen.info/loretta_cole", "token"=>"cCses88G7rwyqzdcxjeB"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "cCses88G7rwyqzdcxjeB"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:03:48.706110"], ["updated_at", "2019-10-13 20:03:48.706421"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://bednarhansen.info/loretta_cole?account_confirmation_success=true Completed 302 Found in 6ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Emmie Kihn\"\n password: \"BwZgGn6R4bD1g\"\n passwordConfirmation: \"BwZgGn6R4bD1g\"\n confirmSuccessUrl: \"http://stantoncartwright.org/hayden_cain\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.4ms | ActiveRecord: 0.7ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rolande.robel@cronin.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rolande.robel@cronin.org"], ["encrypted_password", "$2a$04$57/DBhl1EbgEap/HTfECWuxwntzWpSo/Kc4/1r51Hi/hlkJX0KUaq"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:03:48.743740"], ["name", "M. Balmer"], ["email", "rolande.robel@cronin.org"], ["created_at", "2019-10-13 20:03:48.745479"], ["updated_at", "2019-10-13 20:03:48.745479"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2bWq5k5GQleQHEZ6SK3pfw\":{\"token\":\"$2a$10$TbUpSD4qQTzeRsJyGtlEg.yav3FQ2IZIa4d5CeJWYHWMYyFnCjgl.\",\"expiry\":1572206628,\"updated_at\":\"2019-10-13 20:03:48 UTC\"}}"], ["updated_at", "2019-10-13 20:03:48.808657"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "rolande.robel@cronin.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$QsLJx/v4ztJEUQwZwytNBOu7LOhh5.YVrxaI4ozfDo4wRfU6q1RIG"], ["updated_at", "2019-10-13 20:03:48.867644"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:48.869096"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brady@beahan.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "brady@beahan.co"], ["encrypted_password", "$2a$04$WALlc5h//QlgImuGnwpFu.HiTFyalYnXsEcnPUfsQOOjGxY30rp6."], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:03:48.877090"], ["name", "Ulee Daway"], ["email", "brady@beahan.co"], ["created_at", "2019-10-13 20:03:48.879660"], ["updated_at", "2019-10-13 20:03:48.879660"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"i6sx-YnT8eRtk3Oo1Km4Lw\":{\"token\":\"$2a$10$fgad6qpP.yV/vpoVl83lwe/BdCGIBnvCILXNKMf7NpyqbWjAdhVtm\",\"expiry\":1572206628,\"updated_at\":\"2019-10-13 20:03:48 UTC\"}}"], ["updated_at", "2019-10-13 20:03:48.933308"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "brady@beahan.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$lQpGwUxz6kUgWKgy0eSFm.COvRS9X8fjXh5XYf/LKtO0eaYmvQ9e."], ["updated_at", "2019-10-13 20:03:48.986192"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:48.987298"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "drema.bashirian@huel.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "drema.bashirian@huel.io"], ["encrypted_password", "$2a$04$B9NLtwEWn5jfD68gIO4QNuD5ZWg2IX3Zun/3dkyhBMxxrlExUOamG"], ["confirmed_at", "2019-10-13 20:03:48.993945"], ["name", "Helen Back"], ["email", "drema.bashirian@huel.io"], ["created_at", "2019-10-13 20:03:48.996280"], ["updated_at", "2019-10-13 20:03:48.996280"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hfb4XUDpfmq77TXNY_xpRQ\":{\"token\":\"$2a$10$alunskiXSLEAIafCA2SQR.fnYOycfYs1v4uAvywZ.b1Y1.85Ij6Qu\",\"expiry\":1572206629,\"updated_at\":\"2019-10-13 20:03:48 UTC\"}}"], ["updated_at", "2019-10-13 20:03:49.047453"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "drema.bashirian@huel.io"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.2ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ahmad_prohaska@hicklemarvin.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ahmad_prohaska@hicklemarvin.io"], ["encrypted_password", "$2a$04$dPsu6iouOgZQbcPvPx18..nAtjVAwxG2nhMa6sZFxsGXMYptzaLZW"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:03:49.101817"], ["name", "Hilda Climb"], ["email", "ahmad_prohaska@hicklemarvin.io"], ["created_at", "2019-10-13 20:03:49.102741"], ["updated_at", "2019-10-13 20:03:49.102741"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Jpwkb5tMEsFEE0u0Jp95ig\":{\"token\":\"$2a$10$4bejIlXESbAx/89IGpDW5O.74oz.N4HRys8OBA1mMBThoUFJMzO7a\",\"expiry\":1572206629,\"updated_at\":\"2019-10-13 20:03:49 UTC\"}}"], ["updated_at", "2019-10-13 20:03:49.150399"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ahmad_prohaska@hicklemarvin.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$ycN60NdTBz6dkYKgtgNepeF4u1LWXoUDfVAxTdZbs4q0vWru0Cegu"], ["updated_at", "2019-10-13 20:03:49.199622"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:49.201019"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tu@langworth.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tu@langworth.name"], ["encrypted_password", "$2a$04$IrSgyebdPpruLJ/HgaG2V.X9WW.k1jEqSTuplFmmKnk4Gmizt5sVa"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:03:49.206010"], ["name", "Katy Litter"], ["email", "tu@langworth.name"], ["created_at", "2019-10-13 20:03:49.206799"], ["updated_at", "2019-10-13 20:03:49.206799"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hCJapkeE8LGxj2cAR70LHQ\":{\"token\":\"$2a$10$Kzhu.dKB19wAO9ybV7qYIO/NZ3dC.eNH15VKHaZPlXbHBIom5wP6q\",\"expiry\":1572206629,\"updated_at\":\"2019-10-13 20:03:49 UTC\"}}"], ["updated_at", "2019-10-13 20:03:49.255286"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tu@langworth.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$ma6Op/hLD5OC./3CpD654..oiz0zDhqlh.L7woLMxPYIpX86rQEeW"], ["updated_at", "2019-10-13 20:03:49.306117"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:49.307220"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "guillermo@danieljohnston.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "guillermo@danieljohnston.com"], ["encrypted_password", "$2a$04$zNW.hfE.tarWWtXwSDhyAusvKsXtywaT3P.l6lnCdaLg.QofRTexy"], ["confirmed_at", "2019-10-13 20:03:49.314221"], ["name", "Miss Alanius"], ["email", "guillermo@danieljohnston.com"], ["created_at", "2019-10-13 20:03:49.315210"], ["updated_at", "2019-10-13 20:03:49.315210"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"1w3nPW4q4l2aMAFBHcNjVA\":{\"token\":\"$2a$10$HVizaI4VL4G.VnXeWLu1iu853tyEgap7bRkuGO5CeDp/iXTeUDQoS\",\"expiry\":1572206629,\"updated_at\":\"2019-10-13 20:03:49 UTC\"}}"], ["updated_at", "2019-10-13 20:03:49.363036"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "guillermo@danieljohnston.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$AKRg5TeF4.LBHGjRhzP.qux1peQUnJrhkA293GQWxArx58aKQb6Ou"], ["updated_at", "2019-10-13 20:03:49.414179"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.6ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gino@kuhlmanwilliamson.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gino@kuhlmanwilliamson.biz"], ["encrypted_password", "$2a$04$uUeyQwZ0azrxQ57/DDgYF..WwTw3lvOoznbbkHaspD22Ay4affNG2"], ["confirmed_at", "2019-10-13 20:03:49.421639"], ["name", "Emma Royds"], ["email", "gino@kuhlmanwilliamson.biz"], ["created_at", "2019-10-13 20:03:49.422389"], ["updated_at", "2019-10-13 20:03:49.422389"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "denver@cummingchiller.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "denver@cummingchiller.io"], ["encrypted_password", "$2a$04$zTFyBnfjQIw.zDJhQQRY7.lduKe.C0JiGchwzcShAL/whwb/aUR5O"], ["confirmed_at", "2019-10-13 20:03:49.434105"], ["name", "Mel Practiss"], ["email", "denver@cummingchiller.io"], ["created_at", "2019-10-13 20:03:49.435356"], ["updated_at", "2019-10-13 20:03:49.435356"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1df435da4d87d47fe4e50f750eca75fba51116ea8720c5089e1a1935f0feb2bb"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "1df435da4d87d47fe4e50f750eca75fba51116ea8720c5089e1a1935f0feb2bb"], ["reset_password_sent_at", "2019-10-13 20:03:49.437194"], ["updated_at", "2019-10-13 20:03:49.437442"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22b-z6WXpJM46DhMavLgwM%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"b-z6WXpJM46DhMavLgwM\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1df435da4d87d47fe4e50f750eca75fba51116ea8720c5089e1a1935f0feb2bb"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NJUkcRXQHMdQ9yYg7q2O4A\":{\"token\":\"$2a$10$GX3UOh5nA8v38pnKQN98B.MlaPK8bQd8bR0CsdglpcC1bNWYKa79K\",\"expiry\":1572206629}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:03:49.501723"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NJUkcRXQHMdQ9yYg7q2O4A\":{\"token\":\"$2a$10$GX3UOh5nA8v38pnKQN98B.MlaPK8bQd8bR0CsdglpcC1bNWYKa79K\",\"expiry\":1572206629},\"aoa6lmad5GdDThjUe-qcqg\":{\"token\":\"$2a$10$9cx6tctYRSLdjypqA5iFX.K1giZDvO4H1XCNWCKwh0iLRn5mic9b6\",\"expiry\":1572206629,\"updated_at\":\"2019-10-13 20:03:49 UTC\"}}"], ["updated_at", "2019-10-13 20:03:49.547612"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 108ms (Views: 0.1ms | ActiveRecord: 1.4ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bernie_grady@williamsonullrich.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bernie_grady@williamsonullrich.biz"], ["encrypted_password", "$2a$04$uFECAHNIYAnJUhjj9JX8Zuw9f/OClTYRs1aGwtArtDrT7Ly336PcW"], ["confirmed_at", "2019-10-13 20:03:49.552839"], ["name", "Vlad Tire"], ["email", "bernie_grady@williamsonullrich.biz"], ["created_at", "2019-10-13 20:03:49.553821"], ["updated_at", "2019-10-13 20:03:49.553821"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "aae9d0333477a08eafb64afd7510c04ae672a490f7d985bc8dd59e50890b8280"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "aae9d0333477a08eafb64afd7510c04ae672a490f7d985bc8dd59e50890b8280"], ["reset_password_sent_at", "2019-10-13 20:03:49.555307"], ["updated_at", "2019-10-13 20:03:49.555489"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22w5U8BDrW8j_rPxTNZha2%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"w5U8BDrW8j_rPxTNZha2\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "aae9d0333477a08eafb64afd7510c04ae672a490f7d985bc8dd59e50890b8280"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nOekWNsvtJH_li5beDIRsA\":{\"token\":\"$2a$10$/EP63ibTJVziwIWgqzevyueeW6DTygEoNfvTp6mm2oCyTuQSXak72\",\"expiry\":1572206629}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:03:49.608599"], ["id", 1]]  (23.5ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=iP22f657OqJ_2_5jmil7mA&client=nOekWNsvtJH_li5beDIRsA&client_id=nOekWNsvtJH_li5beDIRsA&config=&expiry=1572206629&reset_password=true&token=iP22f657OqJ_2_5jmil7mA&uid=bernie_grady%40williamsonullrich.biz Completed 302 Found in 76ms (ActiveRecord: 23.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dalila@hagenes.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dalila@hagenes.com"], ["encrypted_password", "$2a$04$9MCc8Xw5FJ.79xA79sxhxu0leUhPqpIhUJFCIo5rnTbIBThHLsgBO"], ["confirmed_at", "2019-10-13 10:03:49"], ["name", "Terry Bull"], ["email", "dalila@hagenes.com"], ["created_at", "2019-10-13 10:03:49"], ["updated_at", "2019-10-13 10:03:49"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "aeada50b628518570a042fd8458e03acb06feea222026fc93ef8332a92cb1900"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "aeada50b628518570a042fd8458e03acb06feea222026fc93ef8332a92cb1900"], ["reset_password_sent_at", "2019-10-13 10:03:49"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22guFv47Tv-2orymoxAgJy%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"guFv47Tv-2orymoxAgJy\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "aeada50b628518570a042fd8458e03acb06feea222026fc93ef8332a92cb1900"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chase@rutherfordlebsack.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "chase@rutherfordlebsack.org"], ["encrypted_password", "$2a$04$xm8U7u2Ec890IDHHeMYtuux3hnlSFs37rrTv1zHDTpUVODBG1Cxee"], ["confirmed_at", "2019-10-13 20:03:49.654757"], ["name", "Gene Poole"], ["email", "chase@rutherfordlebsack.org"], ["created_at", "2019-10-13 20:03:49.655761"], ["updated_at", "2019-10-13 20:03:49.655761"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b94e294f16bd8ccab112b6cb57fc92d65a292cf0ecc557251d380a82bc5adf84"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b94e294f16bd8ccab112b6cb57fc92d65a292cf0ecc557251d380a82bc5adf84"], ["reset_password_sent_at", "2019-10-13 20:03:49.657693"], ["updated_at", "2019-10-13 20:03:49.658045"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22PF3VwgTUFuG-PKo9D3n7invalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"PF3VwgTUFuG-PKo9D3n7invalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b0555edbb462baa9fba23322cbde49e65e26b482ffb1fa69de27e8d0a653968e"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "anibal@streich.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.8ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "anibal@streich.info"], ["encrypted_password", "$2a$04$Xx21fvKJLIOJxeST6whi9eEwsAGr59Ra7ooBBCzQwfquGJtA4tu9G"], ["confirmation_token", "mZ7mxqqEq8EMGqfa87yw"], ["confirmation_sent_at", "2019-10-13 20:03:49.669924"], ["name", "Midas Well"], ["email", "anibal@streich.info"], ["created_at", "2019-10-13 20:03:49.669749"], ["updated_at", "2019-10-13 20:03:49.669749"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.9ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 5.7ms Sent mail to anibal@streich.info (1.9ms) Date: Sun, 13 Oct 2019 15:03:49 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: anibal@streich.info Message-ID: <5da38325a5f10_d5a33fed0fc3200897266@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome anibal@streich.info!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22mZ7mxqqEq8EMGqfa87yw%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fgrimes.biz%2Fjody_runolfsdottir%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"mZ7mxqqEq8EMGqfa87yw\"\n redirectUrl: \"http://grimes.biz/jody_runolfsdottir\"\n ) {\n email\n name\n }\n }\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "mZ7mxqqEq8EMGqfa87yw"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:03:49.687884"], ["updated_at", "2019-10-13 20:03:49.688793"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://grimes.biz/jody_runolfsdottir?account_confirmation_success=true Completed 302 Found in 8ms (ActiveRecord: 0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stefan@schummberge.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "stefan@schummberge.net"], ["encrypted_password", "$2a$04$gWgNclzHiS8zmR5HzoaXH.q/V0heARtQJ2.KqHnpC6QTJxoAle9Em"], ["confirmation_token", "Jc5vP4kYWFhPYsxyV4nd"], ["confirmation_sent_at", "2019-10-13 20:03:49.697188"], ["name", "Frank Enstein"], ["email", "stefan@schummberge.net"], ["created_at", "2019-10-13 20:03:49.697085"], ["updated_at", "2019-10-13 20:03:49.697085"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22Jc5vP4kYWFhPYsxyV4nd-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fmcdermott.net%2Fluciana%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"Jc5vP4kYWFhPYsxyV4nd-invalid\"\n redirectUrl: \"http://mcdermott.net/luciana\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "Jc5vP4kYWFhPYsxyV4nd-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "e71ae34f155db7b2e21564efaf7e463150a075d52a7a9ce5df54e199e7240da0"], ["LIMIT", 1]] Completed 200 OK in 94ms (Views: 0.2ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cordell@skilesaltenwerth.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cordell@skilesaltenwerth.name"], ["encrypted_password", "$2a$04$wCqyu1OwDpggbby.UTQ4GOuRSZVdwHOCYoFolfUblV4kRo9cRLlH2"], ["confirmed_at", "2019-10-13 20:03:49.797638"], ["name", "Tyrone Shoes"], ["email", "cordell@skilesaltenwerth.name"], ["created_at", "2019-10-13 20:03:49.798675"], ["updated_at", "2019-10-13 20:03:49.798675"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yTfCRBAeIfuns2IFVi-nww\":{\"token\":\"$2a$10$W28QormvSnBSRG6QoQ6dCOMZ5iTqj9u35Eql2XocvP55XoUzYm5cS\",\"expiry\":1572206629,\"updated_at\":\"2019-10-13 20:03:49 UTC\"}}"], ["updated_at", "2019-10-13 20:03:49.850104"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:03:49 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "cordell@skilesaltenwerth.name"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "pok.dach@monahan.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "pok.dach@monahan.net"], ["encrypted_password", "$2a$04$rliam0.RZQ7C13aa1MAOnOMM4v9Rhn0FOYg5Fg1byvEz/0ubMhIpm"], ["confirmed_at", "2019-10-13 20:03:49.906726"], ["name", "Manny Kinn"], ["email", "pok.dach@monahan.net"], ["created_at", "2019-10-13 20:03:49.907499"], ["updated_at", "2019-10-13 20:03:49.907499"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:03:49 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.4ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kasey@pacocha.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kasey@pacocha.com"], ["encrypted_password", "$2a$04$SWhhUjdgnKlRcnwDfnJEy.63A1/FgawRqqPqYECSwC52aFEgjNLyW"], ["confirmed_at", "2019-10-13 20:03:52.666966"], ["name", "Lisa Neucar"], ["email", "kasey@pacocha.com"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:52.668927"], ["updated_at", "2019-10-13 20:03:52.668927"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kasey@pacocha.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kasey@pacocha.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"WCYLxlYP9iqs9H6mc_hVyQ\":{\"token\":\"$2a$12$12Tix5CTGKv1JOJE5bZ8pePdwom2IsQ.p9uo.ZBq49Hem/8A7u5O6\",\"expiry\":1572206632,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:52.694-05:00\"}}"], ["updated_at", "2019-10-13 20:03:52.887386"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 20:03:52.891274"], ["last_sign_in_at", "2019-10-13 20:03:52.891274"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 20:03:52.891638"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 211ms (Views: 0.1ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gonzalo_sauer@runte.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gonzalo_sauer@runte.co"], ["encrypted_password", "$2a$04$D8fHEHd1PQyEglo0l1/fueFNGyyGs07MNwaNXgecmZ2VytSFqUFLC"], ["confirmed_at", "2019-10-13 20:03:52.899261"], ["name", "Lynn Meabuck"], ["email", "gonzalo_sauer@runte.co"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:52.899993"], ["updated_at", "2019-10-13 20:03:52.899993"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"gonzalo_sauer@runte.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gonzalo_sauer@runte.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-10-13 20:03:52.904380"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "silvia@reichel.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "silvia@reichel.name"], ["encrypted_password", "$2a$04$V2.YJ6AyI6i98I9.odIh.e1H5AUmxC7pOIPx9cxY07e7Fz.epDNM."], ["confirmation_token", "i_9dvosE9e_AxnGjxF7M"], ["confirmation_sent_at", "2019-10-13 20:03:52.908827"], ["name", "Frank Furter"], ["email", "silvia@reichel.name"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:52.908744"], ["updated_at", "2019-10-13 20:03:52.908744"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"silvia@reichel.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "silvia@reichel.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chloe@aufderharbeatty.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "chloe@aufderharbeatty.io"], ["encrypted_password", "$2a$04$VEFdBWoj0e7H7DVgmPe.2OrAvF0ISAuE.yfGnICuSeXvOet0fnXia"], ["confirmed_at", "2019-10-13 20:03:52.915168"], ["locked_at", "2019-10-13 20:03:52.915179"], ["name", "Anna Prentice"], ["email", "chloe@aufderharbeatty.io"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:52.916029"], ["updated_at", "2019-10-13 20:03:52.916029"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"chloe@aufderharbeatty.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "chloe@aufderharbeatty.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "valeria@flatleyschneider.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "valeria@flatleyschneider.name"], ["encrypted_password", "$2a$04$mnrdkzE5TjIWqU/c/mjd4OcWXzRRiCx9B2s3aeXm/49M2Cat7hyRS"], ["confirmed_at", "2019-10-13 20:03:52.923612"], ["name", "Anna Mull"], ["email", "valeria@flatleyschneider.name"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:52.924515"], ["updated_at", "2019-10-13 20:03:52.924515"], ["auth_available", "f"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"valeria@flatleyschneider.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "valeria@flatleyschneider.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "gavin@ruel.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gavin@ruel.net"], ["encrypted_password", "$2a$04$hnzqewhMblL588VklivgMOGZ8tMJVUTuf6AMmeqBFOubvR2PdzUnu"], ["confirmed_at", "2019-10-13 20:03:52.954722"], ["email", "gavin@ruel.net"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:52.955969"], ["updated_at", "2019-10-13 20:03:52.955969"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"gavin@ruel.net\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "gavin@ruel.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"x8MMH9lP35j-nm2u1Ef9kQ\":{\"token\":\"$2a$12$kV7c8.li/BV11R/yfLBNA.QVx5tbvfS8lAP0VjBOvc50JuHLX1jvu\",\"expiry\":1572206632,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:52.961-05:00\"}}"], ["updated_at", "2019-10-13 20:03:53.141166"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 184ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sol@pacocha.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sol@pacocha.co"], ["encrypted_password", "$2a$04$QSLdpeQjMSCxO.gdt9kO4O0kanZqe.KR8kOThE/KKfOqLazFsbDge"], ["confirmed_at", "2019-10-13 20:03:53.148054"], ["name", "Ed Jewcation"], ["email", "sol@pacocha.co"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:53.149311"], ["updated_at", "2019-10-13 20:03:53.149311"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EPR92fzAHcHn-Eq0sOEjSA\":{\"token\":\"$2a$12$v7qUJ9NX9h/EpB.cIafgqODGk9UIkAPPr4.P5xjl5zYeI6WlFv2KK\",\"expiry\":1572206633,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:53.150-05:00\"}}"], ["updated_at", "2019-10-13 20:03:53.344209"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sol@pacocha.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 20:03:53.523842"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 178ms (Views: 0.2ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "noma_weber@gottliebhuels.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "noma_weber@gottliebhuels.org"], ["encrypted_password", "$2a$04$RCBncPB6hh6Aj6DG7GZK3O40UmS6rlsxPfsgVY9WpNBs2g4W3k.0y"], ["confirmed_at", "2019-10-13 20:03:53.531064"], ["name", "Joe Czarfunee"], ["email", "noma_weber@gottliebhuels.org"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:53.531827"], ["updated_at", "2019-10-13 20:03:53.531827"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "macie_shanahan@rodriguezhalvorson.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "macie_shanahan@rodriguezhalvorson.name"], ["encrypted_password", "$2a$04$ttGSx5xL6QmO4XdxcpJh6.iGkbSeWmldmZEfKSVmqdwYJJtB7OQBi"], ["confirmed_at", "2019-10-13 20:03:53.535218"], ["email", "macie_shanahan@rodriguezhalvorson.name"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:53.535920"], ["updated_at", "2019-10-13 20:03:53.535920"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"lkR5k_nW28GpTIAnMDtYOg\":{\"token\":\"$2a$12$lVa8ZtBNRbWx9MK/DxNNGePKWSETXE2NfRJGMFQTNDECIzYJg3.Dq\",\"expiry\":1572206633,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:53.536-05:00\"}}"], ["updated_at", "2019-10-13 20:03:53.718648"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "macie_shanahan@rodriguezhalvorson.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 20:03:53.894847"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 176ms (Views: 0.1ms | ActiveRecord: 0.2ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "steve.little@oberbrunnerrobel.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "steve.little@oberbrunnerrobel.org"], ["encrypted_password", "$2a$04$MYP31XsERO9p7m0ZNrInkOFrbg3NgC/uxdgCJUfLJcuBstT3w5V/q"], ["confirmed_at", "2019-10-13 20:03:53.903772"], ["name", "Lisa Carr"], ["email", "steve.little@oberbrunnerrobel.org"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:53.904941"], ["updated_at", "2019-10-13 20:03:53.904941"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"steve.little@oberbrunnerrobel.org\",\n redirectUrl: \"http://nitzscheharber.io/vincenzo\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE (uid = 'steve.little@oberbrunnerrobel.org' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "65e6c9e81161821f5f01adbe3fefe6bc23f2ab70f5015125f5c0841bb1bbdf90"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "65e6c9e81161821f5f01adbe3fefe6bc23f2ab70f5015125f5c0841bb1bbdf90"], ["reset_password_sent_at", "2019-10-13 20:03:53.992372"], ["updated_at", "2019-10-13 20:03:53.992625"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (1.6ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 107.7ms Sent mail to steve.little@oberbrunnerrobel.org (3.9ms) Date: Sun, 13 Oct 2019 15:03:54 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: steve.little@oberbrunnerrobel.org Message-ID: <5da3832a1968f_d5bd3fe1e10320204949a@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: steve.little@oberbrunnerrobel.org provider: email redirect-url: http://nitzscheharber.io/vincenzo client-config: default

Hello steve.little@oberbrunnerrobel.org!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 199ms (Views: 0.1ms | ActiveRecord: 0.4ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fnitzscheharber.io%2Fvincenzo&variables%5Btoken%5D=XjH5V9sxyrKKZ9qb8xMY" for 127.0.0.1 at 2019-10-13 15:03:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://nitzscheharber.io/vincenzo", "token"=>"XjH5V9sxyrKKZ9qb8xMY"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "65e6c9e81161821f5f01adbe3fefe6bc23f2ab70f5015125f5c0841bb1bbdf90"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YnDeX60TZn6T66DHSZW0SA\":{\"token\":\"$2a$12$FEAssc//FkIdM/0wlJkW8u97QX0lQKp5mTbJh5UzwT/MJ9xdlHmLq\",\"expiry\":1572206634}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:03:54.275484"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://nitzscheharber.io/vincenzo?access-token=1572206634&client=YnDeX60TZn6T66DHSZW0SA&client_id=YnDeX60TZn6T66DHSZW0SA&config=&expiry=1572206634&reset_password=true&token=1572206634&uid=steve.little%40oberbrunnerrobel.org Completed 302 Found in 169ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://prosacco.net/marcos\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.4ms) SELECT "users".* FROM "users" WHERE (uid = 'nothere@gmail.com' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.4ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"min_weinat@collins.org\"\n name: \"Miss Fermina Schneider\"\n password: \"N17tZqXxDiWjB\"\n passwordConfirmation: \"N17tZqXxDiWjB\"\n confirmSuccessUrl: \"http://roberts.io/shoshana\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "min_weinat@collins.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "min_weinat@collins.org"], ["encrypted_password", "$2a$04$T5ulslytlqbV.haFa52yUOy9lGOaHc3jFEEfCeg/YAp.0M5TWSb7W"], ["confirmation_token", "8saqz5zKJALTV29rH2fC"], ["confirmation_sent_at", "2019-10-13 20:03:54.290849"], ["name", "Miss Fermina Schneider"], ["email", "min_weinat@collins.org"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:54.290781"], ["updated_at", "2019-10-13 20:03:54.290781"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.6ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.4ms Sent mail to min_weinat@collins.org (0.9ms) Date: Sun, 13 Oct 2019 15:03:54 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: min_weinat@collins.org Message-ID: <5da3832a47f56_d5bd3fe1e1032020495c8@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://roberts.io/shoshana

Welcome min_weinat@collins.org!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Froberts.io%2Fshoshana&variables%5Btoken%5D=8saqz5zKJALTV29rH2fC" for 127.0.0.1 at 2019-10-13 15:03:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://roberts.io/shoshana", "token"=>"8saqz5zKJALTV29rH2fC"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "8saqz5zKJALTV29rH2fC"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:03:54.304060"], ["updated_at", "2019-10-13 20:03:54.304383"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://roberts.io/shoshana?account_confirmation_success=true Completed 302 Found in 6ms (ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Nathaniel Veum DDS\"\n password: \"LrPxYeLuVpN9t\"\n passwordConfirmation: \"LrPxYeLuVpN9t\"\n confirmSuccessUrl: \"http://towne.info/deidra.oberbrunner\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 1.0ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "donnell@grimes.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.9ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "donnell@grimes.io"], ["encrypted_password", "$2a$04$jfjO6uh5lAmHFhXsVjm9turcBElcJ.7nkxLsw3ONvxqMlpM4VKF42"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:03:54.330695"], ["name", "Terry Bull"], ["email", "donnell@grimes.io"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:54.334085"], ["updated_at", "2019-10-13 20:03:54.334085"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"h-3b0sg6kujwkAHcxg3j3g\":{\"token\":\"$2a$12$KHG6DLNo.JmewB6CRmHFr.5E7KTQ30d848bawOFA5NsgRlJrv1DEi\",\"expiry\":1572206634,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:54.338-05:00\"}}"], ["updated_at", "2019-10-13 20:03:54.526929"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "donnell@grimes.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$/ABNiwbB6EztHxdBCcNuD.MG14brhELVXcGlh1YCtL4iApKBsO3Qa"], ["updated_at", "2019-10-13 20:03:54.700050"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:54.701725"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 174ms (Views: 0.1ms | ActiveRecord: 0.7ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sudie@ankundingferry.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sudie@ankundingferry.biz"], ["encrypted_password", "$2a$04$xP/MsyVrV1nDu5DHNCv.2e7Q0QPEFXbfjZqs0nKom5AsntNm57pSe"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:03:54.709329"], ["name", "Dee Kay"], ["email", "sudie@ankundingferry.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:54.710567"], ["updated_at", "2019-10-13 20:03:54.710567"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Zk5m4Jj9ljlApDRiRuLwtg\":{\"token\":\"$2a$12$cDhTe1yfukpqbcp.5pc4QOLePVAGcpDWd8tlUGm7zo7NG6vVE79Ly\",\"expiry\":1572206634,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:54.711-05:00\"}}"], ["updated_at", "2019-10-13 20:03:54.890865"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sudie@ankundingferry.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$A5yv30mrBZs6.qGKysVOruyCN2QAC.4btVu6GIv6HpEF0hZBS41Z."], ["updated_at", "2019-10-13 20:03:55.064164"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:55.065752"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 174ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jasper.stroman@brakuslang.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jasper.stroman@brakuslang.info"], ["encrypted_password", "$2a$04$q7sKBPOXZkUJ1sF7NVPhPuwJAJklmtabo4KC1841TLyBIzJm.tfFu"], ["confirmed_at", "2019-10-13 20:03:55.074496"], ["name", "Anita Knapp"], ["email", "jasper.stroman@brakuslang.info"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:55.075300"], ["updated_at", "2019-10-13 20:03:55.075300"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bNqyNFaggEt6PV9G90zWYw\":{\"token\":\"$2a$12$mcgy7WzMhqW9gzia90eNce.DoDByL6xafhkXTpD8tAvwJe0nvAX02\",\"expiry\":1572206635,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:55.076-05:00\"}}"], ["updated_at", "2019-10-13 20:03:55.255281"], ["id", 1]]  (0.3ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jasper.stroman@brakuslang.info"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 178ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "harry@wintheiserbailey.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "harry@wintheiserbailey.info"], ["encrypted_password", "$2a$04$Gz6X8S1KXQO5jyeOGvVSQuygyrIy74UPv7QI2OFBZALQlhAHYiOf."], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:03:55.442645"], ["name", "Walt Smedley"], ["email", "harry@wintheiserbailey.info"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:55.444424"], ["updated_at", "2019-10-13 20:03:55.444424"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hLx_NIKC2_B77NCWqLsJqw\":{\"token\":\"$2a$12$pF.xqcD2/DI/N05PF1XpLOPr3BE9767lB2hcRqAomE3AHXANIdyoO\",\"expiry\":1572206635,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:55.445-05:00\"}}"], ["updated_at", "2019-10-13 20:03:55.622008"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "harry@wintheiserbailey.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$hzMcd6tofxgXZaD0XLwBBOgtPsISvBDv9KeEEdJ0vq1JnV0HL4Zgq"], ["updated_at", "2019-10-13 20:03:55.798200"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:55.799814"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 177ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.2ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tisa@quigley.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tisa@quigley.org"], ["encrypted_password", "$2a$04$Ddfumbgn/pvOwZYC8vWqaObVJSbuVKbOaTUugrknLJ0WtEJV5T.fG"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:03:55.807399"], ["name", "Val Lay"], ["email", "tisa@quigley.org"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:55.808873"], ["updated_at", "2019-10-13 20:03:55.808873"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"M3sRMgizeaR-LvW1cRf4Xw\":{\"token\":\"$2a$12$K5l7YjWXoTqh386YaTwXY.494HmS2xT/IS1u46/EOGLSB/eJxkEIS\",\"expiry\":1572206635,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:55.810-05:00\"}}"], ["updated_at", "2019-10-13 20:03:56.004337"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tisa@quigley.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$NYs1GKcV3HBGk30GZLs8TeBSLy2AwoQrPndf7NjOJV3dO9Vvrh7hu"], ["updated_at", "2019-10-13 20:03:56.188108"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:03:56.189355"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 185ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "keshia@moore.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "keshia@moore.com"], ["encrypted_password", "$2a$04$2I596we9YK0acwYWbD7AUuLEh5v2tYrloKkpWamSvYA08kS.npOIS"], ["confirmed_at", "2019-10-13 20:03:56.195951"], ["name", "Lucy Fer"], ["email", "keshia@moore.com"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:56.196789"], ["updated_at", "2019-10-13 20:03:56.196789"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DtZRRUYGOi_sSPRDY5w1YQ\":{\"token\":\"$2a$12$Dcqif/eU0aM04ExeZ6m87uk/Z01v8druzwAJALM6kGVwfPccf/kqC\",\"expiry\":1572206636,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:56.197-05:00\"}}"], ["updated_at", "2019-10-13 20:03:56.380699"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "keshia@moore.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Mo6mWBnwJdq8ffFbn8ZUq.NCe.dMR/0i2VrXXPJcyz2JXGj3bJYMO"], ["updated_at", "2019-10-13 20:03:56.559232"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 179ms (Views: 0.2ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shonna.armstrong@pouros.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "shonna.armstrong@pouros.biz"], ["encrypted_password", "$2a$04$bnUaCisiOUL3s2ZsV7Sxr.P9oIRGgTObmiKpscEmb/kqVQUaiNu3m"], ["confirmed_at", "2019-10-13 20:03:56.567048"], ["name", "Tom Katt"], ["email", "shonna.armstrong@pouros.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:56.567924"], ["updated_at", "2019-10-13 20:03:56.567924"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:03:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "oscar@treutel.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "oscar@treutel.co"], ["encrypted_password", "$2a$04$zL.sFGp1LhGnBTgDU2rGVeHS6izM.A1NWGuA5Ze97A4ecpyU1Vfeu"], ["confirmed_at", "2019-10-13 20:03:56.574630"], ["name", "Skip Stone"], ["email", "oscar@treutel.co"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:56.575464"], ["updated_at", "2019-10-13 20:03:56.575464"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "40ef7914feedfefb627c3f876c3ea1ebae3e078e8de344e6f78459ce359554ef"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "40ef7914feedfefb627c3f876c3ea1ebae3e078e8de344e6f78459ce359554ef"], ["reset_password_sent_at", "2019-10-13 20:03:56.576697"], ["updated_at", "2019-10-13 20:03:56.576851"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22HU8KxKcV93mqBWKZLdZf%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"HU8KxKcV93mqBWKZLdZf\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "40ef7914feedfefb627c3f876c3ea1ebae3e078e8de344e6f78459ce359554ef"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"eTRx7DJb0s9Jo0Sez4pBBQ\":{\"token\":\"$2a$12$a9cnxEjrkdU3bvFD/6hPy.r2o03AVXv6ZWVKOh4GOXlb50Gq4VYY.\",\"expiry\":1572206636}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:03:56.769400"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"eTRx7DJb0s9Jo0Sez4pBBQ\":{\"token\":\"$2a$12$a9cnxEjrkdU3bvFD/6hPy.r2o03AVXv6ZWVKOh4GOXlb50Gq4VYY.\",\"expiry\":1572206636},\"XzkemlY7uR-xFzrzMaAGFQ\":{\"token\":\"$2a$12$xCklVSWu93o9Xpl0Iaq5Feoqk4GVmJF3dCiheucyHhusHeJp2kuYa\",\"expiry\":1572206636,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:56.770-05:00\"}}"], ["updated_at", "2019-10-13 20:03:56.958763"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 382ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "miquel@kilback.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "miquel@kilback.io"], ["encrypted_password", "$2a$04$tKRNa2CFB49pL.9QjxTszOj4egyBXw1bC0sbBxiyU5RvsiDjwEgh."], ["confirmed_at", "2019-10-13 20:03:56.963854"], ["name", "Ayma Moron"], ["email", "miquel@kilback.io"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:56.964817"], ["updated_at", "2019-10-13 20:03:56.964817"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0eceebecd0ea5ec38032f0f2e8db20b0e23c851358b48301f9c4d61b0430ee1c"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "0eceebecd0ea5ec38032f0f2e8db20b0e23c851358b48301f9c4d61b0430ee1c"], ["reset_password_sent_at", "2019-10-13 20:03:56.991811"], ["updated_at", "2019-10-13 20:03:56.992131"], ["id", 1]]  (0.4ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22z2jVcKziyZSuzsp3hsAY%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"z2jVcKziyZSuzsp3hsAY\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0eceebecd0ea5ec38032f0f2e8db20b0e23c851358b48301f9c4d61b0430ee1c"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mn9AcEBi-Xgev4axoDhKnA\":{\"token\":\"$2a$12$2IIjxo0n.k6c0eI9ldNB7evwrIUsukXo/Ii6GTVFS2Pjz7JKdCqIS\",\"expiry\":1572206636}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:03:57.179159"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1572206636&client=mn9AcEBi-Xgev4axoDhKnA&client_id=mn9AcEBi-Xgev4axoDhKnA&config=&expiry=1572206636&reset_password=true&token=1572206636&uid=miquel%40kilback.io Completed 302 Found in 185ms (ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "major@ziemeheidenreich.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "major@ziemeheidenreich.info"], ["encrypted_password", "$2a$04$E6aG2eHT0XR6/aN8gbZ/5OQKSVqH3YbNWjDUsyiog4moUoJwJM2qe"], ["confirmed_at", "2019-10-13 10:03:57"], ["name", "Shanda Lear"], ["email", "major@ziemeheidenreich.info"], ["tokens", "{}"], ["created_at", "2019-10-13 10:03:57"], ["updated_at", "2019-10-13 10:03:57"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7fa972f29f7aa87621bdea96f51927a5ea0e53e66916c6cd5283c566b4869122"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7fa972f29f7aa87621bdea96f51927a5ea0e53e66916c6cd5283c566b4869122"], ["reset_password_sent_at", "2019-10-13 10:03:57"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22PopCt7j-eb6BTh4AxQTy%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"PopCt7j-eb6BTh4AxQTy\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7fa972f29f7aa87621bdea96f51927a5ea0e53e66916c6cd5283c566b4869122"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "digna@ritchiehilpert.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "digna@ritchiehilpert.io"], ["encrypted_password", "$2a$04$c9ste/npq9NVKoN5Y34z/./haWtQu5tuMw/65GJt2M/QETgrdh912"], ["confirmed_at", "2019-10-13 20:03:57.193394"], ["name", "Jim Shorts"], ["email", "digna@ritchiehilpert.io"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:57.194107"], ["updated_at", "2019-10-13 20:03:57.194107"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "34e81814151e9f30b2c69fa43a1faa5679e849ae6ecd50b05bf84fbc3513bd34"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "34e81814151e9f30b2c69fa43a1faa5679e849ae6ecd50b05bf84fbc3513bd34"], ["reset_password_sent_at", "2019-10-13 20:03:57.195376"], ["updated_at", "2019-10-13 20:03:57.195549"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22TgbMfbLzZ9oqwzxcH4-Uinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"TgbMfbLzZ9oqwzxcH4-Uinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "589701bf0c1bed373f33709649ff6008641146abd3d8e0cacf4531dc800dd402"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kerry@yost.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kerry@yost.io"], ["encrypted_password", "$2a$04$PZnPCMk37GiyCBYrcF1iD.hXK7JRsd0/KoskwqjDrTMgV4i4L.YJi"], ["confirmation_token", "HhKxKTKsFp-2Nu4zUzoH"], ["confirmation_sent_at", "2019-10-13 20:03:57.204385"], ["name", "Cal Culator"], ["email", "kerry@yost.io"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:57.204234"], ["updated_at", "2019-10-13 20:03:57.204234"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.7ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.1ms Sent mail to kerry@yost.io (1.2ms) Date: Sun, 13 Oct 2019 15:03:57 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: kerry@yost.io Message-ID: <5da3832d331e8_d5bd3fe1e103202049631@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome kerry@yost.io!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22HhKxKTKsFp-2Nu4zUzoH%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fbarrows.net%2Fkandra.west%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"HhKxKTKsFp-2Nu4zUzoH\"\n redirectUrl: \"http://barrows.net/kandra.west\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "HhKxKTKsFp-2Nu4zUzoH"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:03:57.213973"], ["updated_at", "2019-10-13 20:03:57.214390"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://barrows.net/kandra.west?account_confirmation_success=true Completed 302 Found in 5ms (ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mathew_adams@mayer.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "mathew_adams@mayer.info"], ["encrypted_password", "$2a$04$3CI89bNbgDfGTFgE0DMtNeM8.pVLlsDRcnWZGa3nLw.wISWTcnD0K"], ["confirmation_token", "4E7H4whZuH4X5F3PX54A"], ["confirmation_sent_at", "2019-10-13 20:03:57.226064"], ["name", "Beau Vine"], ["email", "mathew_adams@mayer.info"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:57.225891"], ["updated_at", "2019-10-13 20:03:57.225891"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%224E7H4whZuH4X5F3PX54A-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fstroman.biz%2Fleoma_stoltenberg%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:03:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"4E7H4whZuH4X5F3PX54A-invalid\"\n redirectUrl: \"http://stroman.biz/leoma_stoltenberg\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "4E7H4whZuH4X5F3PX54A-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "8ac10976e66fe96faa74e470efff5c36e0d1298bba50034fce4b8be25e4ee8e7"], ["LIMIT", 1]] Completed 200 OK in 97ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "robby_jones@harris.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "robby_jones@harris.co"], ["encrypted_password", "$2a$04$lTz9NTJqjJpdcEGr2/ho1.fvqY.YRw0HBDJhG/bvN0QMUVjydGkxS"], ["confirmed_at", "2019-10-13 20:03:57.331471"], ["name", "Doug Updegrave"], ["email", "robby_jones@harris.co"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:57.332445"], ["updated_at", "2019-10-13 20:03:57.332445"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"qq06c2vQnZgOwDa7JceDWg\":{\"token\":\"$2a$12$gO.wM1lB/bpBuX0M5ovmMO0LMGlCuj9IzYN1E9GB/9WmDQlYkCxzC\",\"expiry\":1572206637,\"last_token\":null,\"updated_at\":\"2019-10-13T15:03:57.333-05:00\"}}"], ["updated_at", "2019-10-13 20:03:57.522336"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:03:57 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "robby_jones@harris.co"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 190ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeanmarie_ryan@gulgowskibernier.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jeanmarie_ryan@gulgowskibernier.io"], ["encrypted_password", "$2a$04$5O14moR/kejVA7d0Xc7b1eIKw2111Y5T9IJO7r3A6ZdEK7AcyOcLi"], ["confirmed_at", "2019-10-13 20:03:57.719405"], ["name", "Reed Toomey"], ["email", "jeanmarie_ryan@gulgowskibernier.io"], ["tokens", "{}"], ["created_at", "2019-10-13 20:03:57.720260"], ["updated_at", "2019-10-13 20:03:57.720260"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:03:57 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sherrell_olson@lindbaumbach.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sherrell_olson@lindbaumbach.io"], ["encrypted_password", "$2a$04$x/5pca6/iJ/2uAU4fzAmUenS2mdlboKps0SOcY5kcpiVfhQ8DP6LG"], ["confirmed_at", "2019-10-13 20:04:01.017970"], ["name", "Art Exhibit"], ["email", "sherrell_olson@lindbaumbach.io"], ["created_at", "2019-10-13 20:04:01.020058"], ["updated_at", "2019-10-13 20:04:01.020058"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sherrell_olson@lindbaumbach.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sherrell_olson@lindbaumbach.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"XTgsxnN0EBnwBXWZBJtmYg\":{\"token\":\"$2a$10$rtjsXix/e9TyfJpvy58wrecngQCZcknk/sxCy.AxmRJjjes1yf1Uy\",\"expiry\":1572206641,\"updated_at\":\"2019-10-13 20:04:01 UTC\"}}"], ["updated_at", "2019-10-13 20:04:01.095512"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 20:04:01.099801"], ["last_sign_in_at", "2019-10-13 20:04:01.099801"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 20:04:01.100565"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 67ms (Views: 0.2ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kasey.bernier@considinebalistreri.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kasey.bernier@considinebalistreri.org"], ["encrypted_password", "$2a$04$3m0ijbWKZHdTOHMk05CqTO.32BEf7Fsx6.vGHtwhhHpKZhNhqDHIC"], ["confirmed_at", "2019-10-13 20:04:01.109504"], ["name", "Penny Bunn"], ["email", "kasey.bernier@considinebalistreri.org"], ["created_at", "2019-10-13 20:04:01.110588"], ["updated_at", "2019-10-13 20:04:01.110588"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kasey.bernier@considinebalistreri.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kasey.bernier@considinebalistreri.org"], ["LIMIT", 1]] SQL (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "madelene_wiegand@stroman.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "madelene_wiegand@stroman.net"], ["encrypted_password", "$2a$04$97sR56QuQWLfK4aKOihu6.haC84HxvhQt7aQvG.vPOAwqEV6zH4VS"], ["confirmation_token", "24XyJYgjh8CzEe_4F5NJ"], ["confirmation_sent_at", "2019-10-13 20:04:01.121498"], ["name", "Faye Slift"], ["email", "madelene_wiegand@stroman.net"], ["created_at", "2019-10-13 20:04:01.121406"], ["updated_at", "2019-10-13 20:04:01.121406"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"madelene_wiegand@stroman.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "madelene_wiegand@stroman.net"], ["LIMIT", 1]] Completed 200 OK in 21ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "olive@predovic.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "olive@predovic.com"], ["encrypted_password", "$2a$04$8N03GvQjuyaZ.wIm/7UrXOyiEPjf/dl2jVBXvTbuVfXmynj09QymW"], ["confirmed_at", "2019-10-13 20:04:01.148630"], ["locked_at", "2019-10-13 20:04:01.148653"], ["name", "Ben O'Drill"], ["email", "olive@predovic.com"], ["created_at", "2019-10-13 20:04:01.149899"], ["updated_at", "2019-10-13 20:04:01.149899"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"olive@predovic.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "olive@predovic.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "towanda@walker.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "towanda@walker.info"], ["encrypted_password", "$2a$04$YdK0QnzG53KHVoz3./Ut7uyLJ3OZnChYn1wkz8jIzT9XSPphcvP2i"], ["confirmed_at", "2019-10-13 20:04:01.158053"], ["name", "Juan Fortharoad"], ["email", "towanda@walker.info"], ["created_at", "2019-10-13 20:04:01.159077"], ["updated_at", "2019-10-13 20:04:01.159077"], ["auth_available", "f"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"towanda@walker.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "towanda@walker.info"], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "ramona.jast@gutkowski.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "ramona.jast@gutkowski.net"], ["encrypted_password", "$2a$04$ScMRyHQ.veayVAGN27d0MOJsBcovPGt8avBG3vhecidAvIqgz8mwC"], ["confirmed_at", "2019-10-13 20:04:01.184433"], ["email", "ramona.jast@gutkowski.net"], ["created_at", "2019-10-13 20:04:01.186909"], ["updated_at", "2019-10-13 20:04:01.186909"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"ramona.jast@gutkowski.net\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "ramona.jast@gutkowski.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"2-qs15TDtQNCn33HluSOdg\":{\"token\":\"$2a$10$A5hbTUAtp5Gs7VErTBzqVO5GEDvWHtVg2NjCaJ1npDd60x9lTiviK\",\"expiry\":1572206641,\"updated_at\":\"2019-10-13 20:04:01 UTC\"}}"], ["updated_at", "2019-10-13 20:04:01.252096"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 63ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "inga@oberbrunner.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "inga@oberbrunner.io"], ["encrypted_password", "$2a$04$iGm6uDe1hx30XWqWp64XZu9DjeOUG6bOWZFB2lVeeZLSDMLhq0g9a"], ["confirmed_at", "2019-10-13 20:04:01.257400"], ["name", "Clara Sabell"], ["email", "inga@oberbrunner.io"], ["created_at", "2019-10-13 20:04:01.258324"], ["updated_at", "2019-10-13 20:04:01.258324"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"4aw2Sd2uUyE787Wdi7UjYw\":{\"token\":\"$2a$10$tGrl9g.O60LjzblWeI7.3Oc5U6WIiFV1RUGsyH/EbGm/aOiravduG\",\"expiry\":1572206641,\"updated_at\":\"2019-10-13 20:04:01 UTC\"}}"], ["updated_at", "2019-10-13 20:04:01.315845"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "inga@oberbrunner.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:04:01.366182"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kerstin@hyatt.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kerstin@hyatt.name"], ["encrypted_password", "$2a$04$5mbWtmIVWhVPIcSMCOKLZetrJzezV4qgEBOOIWs9bLWnfPZyySU.6"], ["confirmed_at", "2019-10-13 20:04:01.377692"], ["name", "Reed Toomey"], ["email", "kerstin@hyatt.name"], ["created_at", "2019-10-13 20:04:01.380060"], ["updated_at", "2019-10-13 20:04:01.380060"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "maricruz@hacketteffertz.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "maricruz@hacketteffertz.org"], ["encrypted_password", "$2a$04$xQDRnnHuShaeafcrsK0mP.GetZfsgQXmvzYjUF2U4dOGnctALeVUy"], ["confirmed_at", "2019-10-13 20:04:01.386938"], ["email", "maricruz@hacketteffertz.org"], ["created_at", "2019-10-13 20:04:01.388207"], ["updated_at", "2019-10-13 20:04:01.388207"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"-K2MIN4tC3AsobBrOks0vg\":{\"token\":\"$2a$10$xzM1yiGX/LYWgFCAsfIYYOYE.okEv7O.xdbTLzxbKpCXHkLB86bje\",\"expiry\":1572206641,\"updated_at\":\"2019-10-13 20:04:01 UTC\"}}"], ["updated_at", "2019-10-13 20:04:01.447728"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "maricruz@hacketteffertz.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:04:01.503159"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.5ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeremiah@windlerrohan.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jeremiah@windlerrohan.info"], ["encrypted_password", "$2a$04$1u2IKKL93VAx/0sDV8mPT.s/eyl6uolp3q9UvdfqdzWGq5kqev3rq"], ["confirmed_at", "2019-10-13 20:04:01.511036"], ["name", "Barry Cade"], ["email", "jeremiah@windlerrohan.info"], ["created_at", "2019-10-13 20:04:01.513175"], ["updated_at", "2019-10-13 20:04:01.513175"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"jeremiah@windlerrohan.info\",\n redirectUrl: \"http://moriette.com/bruno_spencer\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "jeremiah@windlerrohan.info"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "628d7489792010520cda56d0423766d713bf051aa8864ac251cb286a54037308"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "628d7489792010520cda56d0423766d713bf051aa8864ac251cb286a54037308"], ["reset_password_sent_at", "2019-10-13 20:04:01.605317"], ["updated_at", "2019-10-13 20:04:01.605578"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (1.6ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 121.0ms Sent mail to jeremiah@windlerrohan.info (4.8ms) Date: Sun, 13 Oct 2019 15:04:01 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: jeremiah@windlerrohan.info Message-ID: <5da38331b2648_d5d83ff7e9c2ffd08184c@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: jeremiah@windlerrohan.info provider: email redirect-url: http://moriette.com/bruno_spencer client-config: default

Hello jeremiah@windlerrohan.info!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 216ms (Views: 0.1ms | ActiveRecord: 0.5ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fmoriette.com%2Fbruno_spencer&variables%5Btoken%5D=7VfscM_ikzLeK4Qf4DpE" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://moriette.com/bruno_spencer", "token"=>"7VfscM_ikzLeK4Qf4DpE"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "628d7489792010520cda56d0423766d713bf051aa8864ac251cb286a54037308"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Jjkg6fWYsbF1QdXXDiyXRA\":{\"token\":\"$2a$10$9MA6ASjuDlopbBr4zWwp0.1pIDSY0VMIaGFyP0E4txkrDFX57fdFm\",\"expiry\":1572206641}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:04:01.795413"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://moriette.com/bruno_spencer?access-token=sX3IWXsI6nXda6EBUl6urQ&client=Jjkg6fWYsbF1QdXXDiyXRA&client_id=Jjkg6fWYsbF1QdXXDiyXRA&config=&expiry=1572206641&reset_password=true&token=sX3IWXsI6nXda6EBUl6urQ&uid=jeremiah%40windlerrohan.info Completed 302 Found in 62ms (ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://smith.name/frankie_schimmel\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"jeie.hamill@wiza.info\"\n name: \"Hank Rau Sr.\"\n password: \"DcUuVm95J0bA\"\n passwordConfirmation: \"DcUuVm95J0bA\"\n confirmSuccessUrl: \"http://thompson.co/garret\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeie.hamill@wiza.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jeie.hamill@wiza.info"], ["encrypted_password", "$2a$04$NfBsLNUFZbv8l/Kel48bjeZ4NHTqmuUbrnADpdsFV7mOwqMBL1xeS"], ["confirmation_token", "mX3xAcHKyp1WsskPVssq"], ["confirmation_sent_at", "2019-10-13 20:04:01.812691"], ["name", "Hank Rau Sr."], ["email", "jeie.hamill@wiza.info"], ["created_at", "2019-10-13 20:04:01.812561"], ["updated_at", "2019-10-13 20:04:01.812561"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.8ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.5ms Sent mail to jeie.hamill@wiza.info (1.7ms) Date: Sun, 13 Oct 2019 15:04:01 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: jeie.hamill@wiza.info Message-ID: <5da38331c7cef_d5d83ff7e9c2ffd081978@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://thompson.co/garret

Welcome jeie.hamill@wiza.info!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fthompson.co%2Fgarret&variables%5Btoken%5D=mX3xAcHKyp1WsskPVssq" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://thompson.co/garret", "token"=>"mX3xAcHKyp1WsskPVssq"}} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "mX3xAcHKyp1WsskPVssq"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:04:01.831090"], ["updated_at", "2019-10-13 20:04:01.831514"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://thompson.co/garret?account_confirmation_success=true Completed 302 Found in 9ms (ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Mrs. Carmella Schulist\"\n password: \"YbX4gUnT3388kQl\"\n passwordConfirmation: \"YbX4gUnT3388kQl\"\n confirmSuccessUrl: \"http://stroman.org/mayme\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.4ms)  (0.2ms) SELECT COUNT(*) FROM "users"  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "juan@beierbogan.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "juan@beierbogan.org"], ["encrypted_password", "$2a$04$3zGoUA2U2dlhP4.WLCe.YOXxXsS.cWa57X1Pe0nvpnNF0KUM6I2VO"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:04:01.862125"], ["name", "Tom Morrow"], ["email", "juan@beierbogan.org"], ["created_at", "2019-10-13 20:04:01.863509"], ["updated_at", "2019-10-13 20:04:01.863509"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"VLu0OO_W2z8iHbQN5Vx7Mw\":{\"token\":\"$2a$10$cN1apl/U0.l19cUWT5Z0W.eRASDvvKjAcEqykazdQJ3BVAmeoEvKC\",\"expiry\":1572206641,\"updated_at\":\"2019-10-13 20:04:01 UTC\"}}"], ["updated_at", "2019-10-13 20:04:01.925843"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "juan@beierbogan.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$oHqTI0GFb9wCGOLFAr4wgebXAGX31MICiGgJN1Udo9ZFgzFXzkabi"], ["updated_at", "2019-10-13 20:04:01.993927"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:04:01.996226"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 70ms (Views: 0.1ms | ActiveRecord: 1.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cheyenne.hoppe@gislasonrath.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cheyenne.hoppe@gislasonrath.org"], ["encrypted_password", "$2a$04$0A/ks7Upe5LFxu/3XA4bkOgEo5jN1Gem7xagi3nB39PWEvO4Skbku"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:04:02.004412"], ["name", "Emma Royds"], ["email", "cheyenne.hoppe@gislasonrath.org"], ["created_at", "2019-10-13 20:04:02.005713"], ["updated_at", "2019-10-13 20:04:02.005713"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZU2JT1YDx_tM3lIZiW11pg\":{\"token\":\"$2a$10$5uJRah/D7IcQU/.HfTI9COt9YhlW2x6OWKMvZt5Ib.CnGfVWYXqGi\",\"expiry\":1572206642,\"updated_at\":\"2019-10-13 20:04:02 UTC\"}}"], ["updated_at", "2019-10-13 20:04:02.068431"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "cheyenne.hoppe@gislasonrath.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$WTPcLn5mAns3tClVwlp1zuyE2BBsBcEgTVdXbzv036yYEJuQHCvIW"], ["updated_at", "2019-10-13 20:04:02.135897"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:04:02.138403"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 67ms (Views: 0.1ms | ActiveRecord: 1.2ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.9ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shera_hamill@kuhn.name"], ["provider", "email"], ["LIMIT", 1]] SQL (1.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shera_hamill@kuhn.name"], ["encrypted_password", "$2a$04$Mk9mHICykPn2ryEBDzqhs.5mmeeqBmzQFVouANCJXiu3Jdxl2OFVq"], ["confirmed_at", "2019-10-13 20:04:02.148658"], ["name", "Rusty Irons"], ["email", "shera_hamill@kuhn.name"], ["created_at", "2019-10-13 20:04:02.150415"], ["updated_at", "2019-10-13 20:04:02.150415"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"_FNkxSp0Cav2Y7hcNEUFYA\":{\"token\":\"$2a$10$P8P/jQrvbPKYA37HKAs1.eSsHjP.Wi/oWB62.cQmxf95Krvc/JKR.\",\"expiry\":1572206642,\"updated_at\":\"2019-10-13 20:04:02 UTC\"}}"], ["updated_at", "2019-10-13 20:04:02.219237"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "shera_hamill@kuhn.name"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 62ms (Views: 0.2ms | ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lupe_sauer@lebsack.io"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lupe_sauer@lebsack.io"], ["encrypted_password", "$2a$04$OVYuholuUkNX.vIDpl6uBuJULbz0CSLlKhz4Lx/2GIofd3eGHhIt2"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:04:02.290717"], ["name", "Hope Ferterbest"], ["email", "lupe_sauer@lebsack.io"], ["created_at", "2019-10-13 20:04:02.291749"], ["updated_at", "2019-10-13 20:04:02.291749"]]  (0.5ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nLdyNW0lzTL6hK21LTek2g\":{\"token\":\"$2a$10$xokqoVsI4LS/Vbangpaxs.WQ.s60Y826EgpocGK3WMOLTdwaB/J7G\",\"expiry\":1572206642,\"updated_at\":\"2019-10-13 20:04:02 UTC\"}}"], ["updated_at", "2019-10-13 20:04:02.351845"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lupe_sauer@lebsack.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$2.xGV9yCRE/jNCWfh/BeiOz1B5HXFAl5R5dWAZcrQKz6DJQCo0M2y"], ["updated_at", "2019-10-13 20:04:02.422135"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:04:02.423954"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 69ms (Views: 0.2ms | ActiveRecord: 0.9ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.8ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "linette@mertzlangosh.com"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "linette@mertzlangosh.com"], ["encrypted_password", "$2a$04$STQYwUk3pJ4xW.WT1q4Fvu5v5VkWybXHilc5TJ6YNFV866h/43qzy"], ["allow_password_change", "t"], ["confirmed_at", "2019-10-13 20:04:02.431999"], ["name", "Oscar Ruitt"], ["email", "linette@mertzlangosh.com"], ["created_at", "2019-10-13 20:04:02.435827"], ["updated_at", "2019-10-13 20:04:02.435827"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"HaTZHb9mNCtwonvh-crcrg\":{\"token\":\"$2a$10$heuaS4K7h5qwVnhIQN0wXuK6UwNh8N8HFsIbKFeh1.cTJWxx.Mr7W\",\"expiry\":1572206642,\"updated_at\":\"2019-10-13 20:04:02 UTC\"}}"], ["updated_at", "2019-10-13 20:04:02.497795"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "linette@mertzlangosh.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$AeOlgQuqcQBb8zLkzfvwxeus3NCaO3exFI334hsqG7lPPiC4PAnby"], ["updated_at", "2019-10-13 20:04:02.559034"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", "f"], ["updated_at", "2019-10-13 20:04:02.560999"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 63ms (Views: 0.1ms | ActiveRecord: 0.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "devon.bayer@ebertfritsch.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.8ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "devon.bayer@ebertfritsch.co"], ["encrypted_password", "$2a$04$wAOTrTdkrPIEfjBEmaOyE.HNH0wvqw2Ew3P8RqJaHhpGOHwAsc1Ku"], ["confirmed_at", "2019-10-13 20:04:02.569740"], ["name", "Juana Bea"], ["email", "devon.bayer@ebertfritsch.co"], ["created_at", "2019-10-13 20:04:02.573087"], ["updated_at", "2019-10-13 20:04:02.573087"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YvVWjCizOhsrG3dSB1POaA\":{\"token\":\"$2a$10$bilGIe4O1j88AW1Mk9tMDeZI7IL7k8SLIYrrKYXxwOESlr//av1QK\",\"expiry\":1572206642,\"updated_at\":\"2019-10-13 20:04:02 UTC\"}}"], ["updated_at", "2019-10-13 20:04:02.641534"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "devon.bayer@ebertfritsch.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$RH7/9YsJUna58xMeWDPEpesPu.XiUH2FFOBYvarye7SJO1VjHg6Cq"], ["updated_at", "2019-10-13 20:04:02.712117"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 70ms (Views: 0.1ms | ActiveRecord: 0.6ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "trent.schaden@sipes.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "trent.schaden@sipes.info"], ["encrypted_password", "$2a$04$8puSvucxntlue/de0p3oK.pTe6URM3pNB0822LJaERJhaZVBoVHvy"], ["confirmed_at", "2019-10-13 20:04:02.721576"], ["name", "Alec Tricity"], ["email", "trent.schaden@sipes.info"], ["created_at", "2019-10-13 20:04:02.722709"], ["updated_at", "2019-10-13 20:04:02.722709"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "erma_johns@jones.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "erma_johns@jones.co"], ["encrypted_password", "$2a$04$LT6UeGUJjuBGIPT3dnDV7epqiS6/zpCZmGBypq8c6nxWSKvICATeK"], ["confirmed_at", "2019-10-13 20:04:02.733043"], ["name", "Owen Big"], ["email", "erma_johns@jones.co"], ["created_at", "2019-10-13 20:04:02.735421"], ["updated_at", "2019-10-13 20:04:02.735421"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "08aba6366c7eb8a06cc651ed6f816cbbae5227cc8dc4daa5a5011c29634c7fbd"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "08aba6366c7eb8a06cc651ed6f816cbbae5227cc8dc4daa5a5011c29634c7fbd"], ["reset_password_sent_at", "2019-10-13 20:04:02.739329"], ["updated_at", "2019-10-13 20:04:02.739802"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22VBQVDNS3uMm7oP12ftMT%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"VBQVDNS3uMm7oP12ftMT\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "08aba6366c7eb8a06cc651ed6f816cbbae5227cc8dc4daa5a5011c29634c7fbd"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"AhW2URkokB3znbc5yM066g\":{\"token\":\"$2a$10$Gsraa/FxhAtu2Wy8gyXCiuq4gkaDdGd2RuKhA0YirtpD/UcJSHoOO\",\"expiry\":1572206642}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:04:02.810932"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"AhW2URkokB3znbc5yM066g\":{\"token\":\"$2a$10$Gsraa/FxhAtu2Wy8gyXCiuq4gkaDdGd2RuKhA0YirtpD/UcJSHoOO\",\"expiry\":1572206642},\"0Inrn6VtGlPL1VVG5_egBA\":{\"token\":\"$2a$10$KtDiEsJPCsT1onQt5ndIUuValMycUtG8eMEiQqfyFY0mGruQcQgbC\",\"expiry\":1572206642,\"updated_at\":\"2019-10-13 20:04:02 UTC\"}}"], ["updated_at", "2019-10-13 20:04:02.863932"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 120ms (Views: 0.1ms | ActiveRecord: 0.7ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cheryle@ko.name"], ["provider", "email"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cheryle@ko.name"], ["encrypted_password", "$2a$04$8qvwFMWPu7.rS1NOjNReeO1SfOy82WcG4T/Y0.gnK50gRpbgJTeuC"], ["confirmed_at", "2019-10-13 20:04:02.868876"], ["name", "Lowden Clear"], ["email", "cheryle@ko.name"], ["created_at", "2019-10-13 20:04:02.870029"], ["updated_at", "2019-10-13 20:04:02.870029"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0da7b662c1d6bea44d238604bfb486371639047cf9b54103b8adf44269e8f2f3"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "0da7b662c1d6bea44d238604bfb486371639047cf9b54103b8adf44269e8f2f3"], ["reset_password_sent_at", "2019-10-13 20:04:02.871669"], ["updated_at", "2019-10-13 20:04:02.871873"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22VMjba-iPqU-D1HxvrHGe%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"VMjba-iPqU-D1HxvrHGe\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0da7b662c1d6bea44d238604bfb486371639047cf9b54103b8adf44269e8f2f3"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"owog9l40949nZuoqowPKsQ\":{\"token\":\"$2a$10$cu4hUVrMYDdDW86QFd.uNuk..o7K8hgEJtOuzrUWVvZ1fz1oZe806\",\"expiry\":1572206642}}"], ["allow_password_change", "t"], ["updated_at", "2019-10-13 20:04:02.936740"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=kMtieGxSTn2jZ4j29g-mDg&client=owog9l40949nZuoqowPKsQ&client_id=owog9l40949nZuoqowPKsQ&config=&expiry=1572206642&reset_password=true&token=kMtieGxSTn2jZ4j29g-mDg&uid=cheryle%40ko.name Completed 302 Found in 91ms (ActiveRecord: 0.4ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "julie@mills.org"], ["provider", "email"], ["LIMIT", 1]] SQL (0.0ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "julie@mills.org"], ["encrypted_password", "$2a$04$.ZmYXQVWeJfO1FDzQ5ydWOqmqn29AVufbpOfrQ55BndVMNWjCkX2u"], ["confirmed_at", "2019-10-13 10:04:02"], ["name", "Kareem O'Weet"], ["email", "julie@mills.org"], ["created_at", "2019-10-13 10:04:02"], ["updated_at", "2019-10-13 10:04:02"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "63db5120592c99364a901ad0d927db55a6f6a5265db7a35bf6ccb78093690eeb"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.0ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "63db5120592c99364a901ad0d927db55a6f6a5265db7a35bf6ccb78093690eeb"], ["reset_password_sent_at", "2019-10-13 10:04:02"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22L_LyyFSt3szt2QPAz69S%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"L_LyyFSt3szt2QPAz69S\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "63db5120592c99364a901ad0d927db55a6f6a5265db7a35bf6ccb78093690eeb"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ro@blick.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ro@blick.biz"], ["encrypted_password", "$2a$04$rfHL4r6/zEPOzv73DaGobujp65QAoJEu6ma8gIeQdcrpqOLe8tO7e"], ["confirmed_at", "2019-10-13 20:04:02.981208"], ["name", "Les Plack"], ["email", "ro@blick.biz"], ["created_at", "2019-10-13 20:04:02.982125"], ["updated_at", "2019-10-13 20:04:02.982125"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "24d966be87211c19cb55427aa2b25f4ae03fad841b0cd6cc2d14c3a35f90ed58"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "24d966be87211c19cb55427aa2b25f4ae03fad841b0cd6cc2d14c3a35f90ed58"], ["reset_password_sent_at", "2019-10-13 20:04:02.983761"], ["updated_at", "2019-10-13 20:04:02.984093"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%229VXTQbYt-zHZPVUxoM5rinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:02 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"9VXTQbYt-zHZPVUxoM5rinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5452823bf54181152e39a8e10eb4e4828858ef9e91015766822c7b4b615cfdc5"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "millard_koch@brown.info"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "millard_koch@brown.info"], ["encrypted_password", "$2a$04$TzOu0d9/F09.YBlwAMwHPuDJ80xteEV/sbbOSjwJ01wFxh3CmTZoS"], ["confirmation_token", "1y7knMZx3CSXAhz_zD6u"], ["confirmation_sent_at", "2019-10-13 20:04:02.996396"], ["name", "Winnie Bago"], ["email", "millard_koch@brown.info"], ["created_at", "2019-10-13 20:04:02.996256"], ["updated_at", "2019-10-13 20:04:02.996256"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.6ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.7ms Sent mail to millard_koch@brown.info (1.4ms) Date: Sun, 13 Oct 2019 15:04:03 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: millard_koch@brown.info Message-ID: <5da3833321f_d5d83ff7e9c2ffd08208c@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome millard_koch@brown.info!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%221y7knMZx3CSXAhz_zD6u%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Ftillman.com%2Flonnie%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"1y7knMZx3CSXAhz_zD6u\"\n redirectUrl: \"http://tillman.com/lonnie\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "1y7knMZx3CSXAhz_zD6u"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:04:03.004914"], ["updated_at", "2019-10-13 20:04:03.005261"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://tillman.com/lonnie?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.4ms) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sigrid_muller@millslockman.co"], ["provider", "email"], ["LIMIT", 1]] SQL (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sigrid_muller@millslockman.co"], ["encrypted_password", "$2a$04$r20nzZXrrFTSdlbZkHs/QOTlUpjSgR0rElG32AhexqaDCt5NWnzmm"], ["confirmation_token", "MY9zns6WJ-9uUwMJUcYC"], ["confirmation_sent_at", "2019-10-13 20:04:03.016940"], ["name", "Joaquin DeFlores"], ["email", "sigrid_muller@millslockman.co"], ["created_at", "2019-10-13 20:04:03.016784"], ["updated_at", "2019-10-13 20:04:03.016784"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22MY9zns6WJ-9uUwMJUcYC-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Flakinquigley.info%2Fervin%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:03 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"MY9zns6WJ-9uUwMJUcYC-invalid\"\n redirectUrl: \"http://lakinquigley.info/ervin\"\n ) {\n email\n name\n }\n }\n"} User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "MY9zns6WJ-9uUwMJUcYC-invalid"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "50ba6a8dfd657e0c465e3e44c40ac34bd5e1d5430ee99c4016c5182fb731be81"], ["LIMIT", 1]] Completed 200 OK in 109ms (Views: 0.3ms | ActiveRecord: 0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vertie@rennerconn.biz"], ["provider", "email"], ["LIMIT", 1]] SQL (0.8ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "vertie@rennerconn.biz"], ["encrypted_password", "$2a$04$Pcyf9TTkiuGooHu6f6rKg.ax/Ll5oMTGKocVd5.SZw/IvaY8LgUKy"], ["confirmed_at", "2019-10-13 20:04:03.135552"], ["name", "Ford Parker"], ["email", "vertie@rennerconn.biz"], ["created_at", "2019-10-13 20:04:03.137272"], ["updated_at", "2019-10-13 20:04:03.137272"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"tHBcgbvamTM6hOmXNen6kA\":{\"token\":\"$2a$10$ZS.CbIzTvalMDXRusblgD.BVUlFAqi.DgkX/EjIlDfT/ig.ZVt.v.\",\"expiry\":1572206643,\"updated_at\":\"2019-10-13 20:04:03 UTC\"}}"], ["updated_at", "2019-10-13 20:04:03.202640"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:04:03 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "vertie@rennerconn.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bud@mcdermottrunte.net"], ["provider", "email"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bud@mcdermottrunte.net"], ["encrypted_password", "$2a$04$u.gJvhPgsAGWRJ2xw1.ic.zAOH/0FuaNoD2DF18e0OTyWkBqMUqhK"], ["confirmed_at", "2019-10-13 20:04:03.268722"], ["name", "Tate Urtots"], ["email", "bud@mcdermottrunte.net"], ["created_at", "2019-10-13 20:04:03.269540"], ["updated_at", "2019-10-13 20:04:03.269540"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:04:03 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.5ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "paula_stoltenberg@hermann.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "paula_stoltenberg@hermann.com"], ["encrypted_password", "$2a$04$k6GrY3Lf7NRrlhS6cU2z7OZRv1aXJgVhZ0C2T0siYOLmINgp6DL2q"], ["confirmed_at", "2019-10-13 20:04:06.557817"], ["name", "Terry Achey"], ["email", "paula_stoltenberg@hermann.com"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:06.559849"], ["updated_at", "2019-10-13 20:04:06.559849"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"paula_stoltenberg@hermann.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "paula_stoltenberg@hermann.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3EIDTkMfsUSulG4oJAEfrg\":{\"token\":\"$2a$12$0yLRiXMbtjumKuDV0QBRMOHpbGXCswxWpVTnqJ1J1kQWlVusmrnre\",\"expiry\":1572206646,\"last_token\":null,\"updated_at\":\"2019-10-13T15:04:06.586-05:00\"}}"], ["updated_at", "2019-10-13 20:04:06.762430"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 20:04:06.765275"], ["last_sign_in_at", "2019-10-13 20:04:06.765275"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 20:04:06.765529"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "milo@von.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "milo@von.org"], ["encrypted_password", "$2a$04$9.nJT5FBktRaKr9XJUxj4OGr971DS4KFq.vEhm4tomOpdKq9h.XE6"], ["confirmed_at", "2019-10-13 20:04:06.772579"], ["name", "Luna Tick"], ["email", "milo@von.org"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:06.773354"], ["updated_at", "2019-10-13 20:04:06.773354"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"milo@von.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "milo@von.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "failed_attempts" = ?, "updated_at" = ? WHERE "users"."id" = ? [["failed_attempts", 1], ["updated_at", "2019-10-13 20:04:06.777461"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kittie_howell@padberg.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kittie_howell@padberg.info"], ["encrypted_password", "$2a$04$YzbxvxutdhJFLNHdGZG8JOhafF1Vh2USMqEiY7/hElxYYAKbnEdoW"], ["confirmation_token", "3oRsXeeSyaZA_xs4pg_v"], ["confirmation_sent_at", "2019-10-13 20:04:06.781593"], ["name", "Jane Linkfence"], ["email", "kittie_howell@padberg.info"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:06.781519"], ["updated_at", "2019-10-13 20:04:06.781519"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kittie_howell@padberg.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kittie_howell@padberg.info"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fredrick_oconner@price.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "fredrick_oconner@price.co"], ["encrypted_password", "$2a$04$kDqJFF2oF2W0phIA8dWqneet5RRp5h2VCniYqs510Y2iURpwQLA8."], ["confirmed_at", "2019-10-13 20:04:06.787504"], ["locked_at", "2019-10-13 20:04:06.787513"], ["name", "Sue Jeu"], ["email", "fredrick_oconner@price.co"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:06.788247"], ["updated_at", "2019-10-13 20:04:06.788247"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"fredrick_oconner@price.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "fredrick_oconner@price.co"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "krystin_crist@cummings.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "krystin_crist@cummings.info"], ["encrypted_password", "$2a$04$ZgAVHYrz48jgb8IlFqa0XOQUTWwbureiqHBV6VhCdOQTM9V8e.1Ga"], ["confirmed_at", "2019-10-13 20:04:06.799445"], ["name", "Daisy Picking"], ["email", "krystin_crist@cummings.info"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:06.800749"], ["updated_at", "2019-10-13 20:04:06.800749"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"krystin_crist@cummings.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "krystin_crist@cummings.info"], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "marisha_mann@schmittabshire.biz"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.6ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marisha_mann@schmittabshire.biz"], ["encrypted_password", "$2a$04$s0Q.jAueUqvfjtuY7FqH0em/yPnWlJFQ1gyga7Zww9Vr1ZPz0ryJ."], ["confirmed_at", "2019-10-13 20:04:06.842081"], ["email", "marisha_mann@schmittabshire.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:06.844036"], ["updated_at", "2019-10-13 20:04:06.844036"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"marisha_mann@schmittabshire.biz\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "marisha_mann@schmittabshire.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"G3ul9eCJwx_jioWtSt4XEA\":{\"token\":\"$2a$12$jxscTcpb2RfyHDHKsve1XOlfTa2Keyo4XA3Zh5wKNZOMtuOV3uxs2\",\"expiry\":1572206646,\"last_token\":null,\"updated_at\":\"2019-10-13T15:04:06.852-05:00\"}}"], ["updated_at", "2019-10-13 20:04:07.037406"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 191ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marisha_torp@hermanbednar.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "marisha_torp@hermanbednar.io"], ["encrypted_password", "$2a$04$rD2bGe01TEA/IhuIdPvIH.zoZxXOw2bG5PBvge1Wk.7i6gUahyWBe"], ["confirmed_at", "2019-10-13 20:04:07.043916"], ["name", "Mike Raffone"], ["email", "marisha_torp@hermanbednar.io"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:07.044839"], ["updated_at", "2019-10-13 20:04:07.044839"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"iujPKYpn3eMOazCoMKHCZw\":{\"token\":\"$2a$12$vDrsHr.rDEZE3XlAZIO11ONUFKv0frR6j0rvZprTs5O31NLCUS2za\",\"expiry\":1572206647,\"last_token\":null,\"updated_at\":\"2019-10-13T15:04:07.045-05:00\"}}"], ["updated_at", "2019-10-13 20:04:07.224624"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "marisha_torp@hermanbednar.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 20:04:07.394265"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 169ms (Views: 0.1ms | ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "buck@fadelnienow.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "buck@fadelnienow.com"], ["encrypted_password", "$2a$04$YcfvbfJe7iWsOPLvhKfAAOYw/x7ARLcqcUuRt/r43FBD0LTFZ1yPu"], ["confirmed_at", "2019-10-13 20:04:07.401320"], ["name", "Rich Guy"], ["email", "buck@fadelnienow.com"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:07.402043"], ["updated_at", "2019-10-13 20:04:07.402043"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "venita.waelchi@barrows.info"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.2ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "venita.waelchi@barrows.info"], ["encrypted_password", "$2a$04$OK.c8W48E0SZzOR2Gj56h.I2VYcjI3tqV4b0a6zDzVBCkjcmEN9yy"], ["confirmed_at", "2019-10-13 20:04:07.405269"], ["email", "venita.waelchi@barrows.info"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:07.405902"], ["updated_at", "2019-10-13 20:04:07.405902"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"_zhudSIJ855FXGTfxE-Aiw\":{\"token\":\"$2a$12$B6zCcmtEmWxc5D0xYusT7.dIXTxddKwNh6RerJemhzWVQ9b4I9B6W\",\"expiry\":1572206647,\"last_token\":null,\"updated_at\":\"2019-10-13T15:04:07.406-05:00\"}}"], ["updated_at", "2019-10-13 20:04:07.581022"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "venita.waelchi@barrows.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{}"], ["updated_at", "2019-10-13 20:04:07.749879"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 168ms (Views: 0.2ms | ActiveRecord: 0.2ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "everett.stiedemann@schroeder.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "everett.stiedemann@schroeder.com"], ["encrypted_password", "$2a$04$/kTc6OFIGw40LAV6RaO9fumR1joGB35Sc.D3/SET4WDlSgf2lHmUm"], ["confirmed_at", "2019-10-13 20:04:07.756286"], ["name", "Mark Mywords"], ["email", "everett.stiedemann@schroeder.com"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:07.757075"], ["updated_at", "2019-10-13 20:04:07.757075"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"everett.stiedemann@schroeder.com\",\n redirectUrl: \"http://dibbert.io/natalia\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE (uid = 'everett.stiedemann@schroeder.com' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3d64afb57c2f09cc2078b13e485816858237a1e00bd9df27c9dad3f35966cb24"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "3d64afb57c2f09cc2078b13e485816858237a1e00bd9df27c9dad3f35966cb24"], ["reset_password_sent_at", "2019-10-13 20:04:07.837244"], ["updated_at", "2019-10-13 20:04:07.837502"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (1.6ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 108.4ms Sent mail to everett.stiedemann@schroeder.com (3.5ms) Date: Sun, 13 Oct 2019 15:04:07 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: everett.stiedemann@schroeder.com Message-ID: <5da38337e7b69_d5fa3fe92ac2ffd080464@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: everett.stiedemann@schroeder.com provider: email redirect-url: http://dibbert.io/natalia client-config: default

Hello everett.stiedemann@schroeder.com!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 192ms (Views: 0.1ms | ActiveRecord: 0.4ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fdibbert.io%2Fnatalia&variables%5Btoken%5D=-8_xGwTYAzEyFrViBbmV" for 127.0.0.1 at 2019-10-13 15:04:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://dibbert.io/natalia", "token"=>"-8_xGwTYAzEyFrViBbmV"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3d64afb57c2f09cc2078b13e485816858237a1e00bd9df27c9dad3f35966cb24"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"sj-wD9YLbrkX2_crkc1Jfg\":{\"token\":\"$2a$12$BMfqV6axFvK.kTDqlipPgeOsFqIEkRzYR9B1C.jHbQXh5p3.AdzPO\",\"expiry\":1572206647}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:08.132004"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://dibbert.io/natalia?access-token=1572206647&client=sj-wD9YLbrkX2_crkc1Jfg&client_id=sj-wD9YLbrkX2_crkc1Jfg&config=&expiry=1572206647&reset_password=true&token=1572206647&uid=everett.stiedemann%40schroeder.com Completed 302 Found in 181ms (ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://toy.com/michelle\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE (uid = 'nothere@gmail.com' AND provider='email') ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"bethel@beatty.com\"\n name: \"Seymour Huels II\"\n password: \"KkSpCpPz0\"\n passwordConfirmation: \"KkSpCpPz0\"\n confirmSuccessUrl: \"http://turnerblick.io/denver_hayes\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bethel@beatty.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bethel@beatty.com"], ["encrypted_password", "$2a$04$sg0EQGjkT8gk7wva2PNp3uZezWp.nC8TF/4Eid9rCFZa85z8wqlUe"], ["confirmation_token", "43mcxVEt1DQ9kpbvcRGE"], ["confirmation_sent_at", "2019-10-13 20:04:08.148584"], ["name", "Seymour Huels II"], ["email", "bethel@beatty.com"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:08.148512"], ["updated_at", "2019-10-13 20:04:08.148512"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.7ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 4.3ms Sent mail to bethel@beatty.com (1.6ms) Date: Sun, 13 Oct 2019 15:04:08 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: bethel@beatty.com Message-ID: <5da3833825cb4_d5fa3fe92ac2ffd0805c9@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://turnerblick.io/denver_hayes

Welcome bethel@beatty.com!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.4ms)  (0.2ms) SELECT COUNT(*) FROM "users" User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fturnerblick.io%2Fdenver_hayes&variables%5Btoken%5D=43mcxVEt1DQ9kpbvcRGE" for 127.0.0.1 at 2019-10-13 15:04:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://turnerblick.io/denver_hayes", "token"=>"43mcxVEt1DQ9kpbvcRGE"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "43mcxVEt1DQ9kpbvcRGE"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:04:08.164930"], ["updated_at", "2019-10-13 20:04:08.165328"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://turnerblick.io/denver_hayes?account_confirmation_success=true Completed 302 Found in 7ms (ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Tyron Runolfsson\"\n password: \"ZrUiBdIe4F1uBd8U\"\n passwordConfirmation: \"ZrUiBdIe4F1uBd8U\"\n confirmSuccessUrl: \"http://mcclure.info/linsey\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brunilda@boyle.com"], ["provider", "email"], ["LIMIT", 1]] User Create (1.0ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "brunilda@boyle.com"], ["encrypted_password", "$2a$04$77YxhX/idnOGCRBJPPla/O3MLFRVZ.mxonJG1W.zfYRrfBQPRip0y"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:08.184718"], ["name", "Eddie Bull"], ["email", "brunilda@boyle.com"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:08.186713"], ["updated_at", "2019-10-13 20:04:08.186713"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bFgS9eLdj4d9gSgvYwFsLQ\":{\"token\":\"$2a$12$cTrxogxfLoMCSeS9JsLQOeE8LNC7vytFO7pTOfFXqWmla8cl03UHS\",\"expiry\":1572206648,\"last_token\":null,\"updated_at\":\"2019-10-13T15:04:08.189-05:00\"}}"], ["updated_at", "2019-10-13 20:04:08.383545"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "brunilda@boyle.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$LEgWrQ1duqpM/h8MSkpjROmHbLNpslVqBFgme9dYIfKsAha99VR6G"], ["updated_at", "2019-10-13 20:04:08.566769"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:08.568670"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 185ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "inge@spinka.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "inge@spinka.info"], ["encrypted_password", "$2a$04$xc73HkkVnZZiDfnN0fIAwehJiow4o6P7.ZsauSKRO6fiGH8EvTWoy"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:08.576339"], ["name", "Ilene East"], ["email", "inge@spinka.info"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:08.577329"], ["updated_at", "2019-10-13 20:04:08.577329"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"IKCEZRfwU4-sReNxhe_ntQ\":{\"token\":\"$2a$12$J1ZBU31MEeyoWfol0J/qWeL8XvOP.R26ESfBW0gdD7.NySN.nuRT.\",\"expiry\":1572206648,\"last_token\":null,\"updated_at\":\"2019-10-13T15:04:08.578-05:00\"}}"], ["updated_at", "2019-10-13 20:04:08.781501"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:08 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "inge@spinka.info"], ["LIMIT", 1]]  (0.4ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$UKciIcY2QDer9yujYC/Xj.0HCx8BoTdbIAdUsRk3mNro0hsB9Osz."], ["updated_at", "2019-10-13 20:04:08.971990"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:08.974236"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 192ms (Views: 0.1ms | ActiveRecord: 0.8ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arnoldo.witting@raujohnson.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "arnoldo.witting@raujohnson.biz"], ["encrypted_password", "$2a$04$FsiM0o.BSE4jT0JxXScy5.LYJZML4bbraj6pd8TArgphFHX8Vfwym"], ["confirmed_at", "2019-10-13 20:04:08.983066"], ["name", "Al Fresco"], ["email", "arnoldo.witting@raujohnson.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:08.984395"], ["updated_at", "2019-10-13 20:04:08.984395"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Kr9Ks9AX6RR2VPVOMzRTmw\":{\"token\":\"$2a$12$70uleVGreOSb.3jGXkl4FuTudyq7diAHlf/Jm6398wFnxys9DfXD6\",\"expiry\":1572206648,\"last_token\":null,\"updated_at\":\"2019-10-13T15:04:08.985-05:00\"}}"], ["updated_at", "2019-10-13 20:04:09.178004"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "arnoldo.witting@raujohnson.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 182ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "moshe.schulist@raynor.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "moshe.schulist@raynor.biz"], ["encrypted_password", "$2a$04$Ve.Rt6DqomNkc6dFMDXAV.Ndxx7cVWnZHE0LGtc2gjpmeplrtR356"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:09.367425"], ["name", "Penny Profit"], ["email", "moshe.schulist@raynor.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:09.368117"], ["updated_at", "2019-10-13 20:04:09.368117"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DHXkXRB9oFqctwU3Wzjyvg\":{\"token\":\"$2a$12$aZQ88lJoptZksSiYO8Fp8OxezNEilZhdknC.k65iBNaiyvrFTQBQS\",\"expiry\":1572206649,\"last_token\":null,\"updated_at\":\"2019-10-13T15:04:09.369-05:00\"}}"], ["updated_at", "2019-10-13 20:04:09.549054"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "moshe.schulist@raynor.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$fitwjbdv80oJESxcJP4TreDLrSnCIzrmbWvekK6g8tRt7xO3VoucG"], ["updated_at", "2019-10-13 20:04:09.736287"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:09.737611"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 188ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kareem@kunzebotsford.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kareem@kunzebotsford.com"], ["encrypted_password", "$2a$04$fGVfyDRGA./oa1/viYuQBOuN6mltI9WNGExW5eRexzlefeSok1kjK"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:09.745192"], ["name", "Misty Waters"], ["email", "kareem@kunzebotsford.com"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:09.746768"], ["updated_at", "2019-10-13 20:04:09.746768"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"RoGuy0WjKMgCVXIt0Dw3dA\":{\"token\":\"$2a$12$3gkbz4Fl.EGZmk1wn7Ooze6AfQWtRdCapPNJCrTM9N9wx2drQIYNW\",\"expiry\":1572206649,\"last_token\":null,\"updated_at\":\"2019-10-13T15:04:09.748-05:00\"}}"], ["updated_at", "2019-10-13 20:04:09.940435"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kareem@kunzebotsford.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$stG/.l/N0x5cffaK98QfQeGFESYm4XM9AHynzk4q..Nj/IYmdDrBO"], ["updated_at", "2019-10-13 20:04:10.127906"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:10.129406"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 187ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leonard.borer@hand.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "leonard.borer@hand.org"], ["encrypted_password", "$2a$04$K27tqMfYldPGTix3KUqNt.eVcFEBriJT46vnoZlZt1HjLr.tKp2Lu"], ["confirmed_at", "2019-10-13 20:04:10.136866"], ["name", "Joy Kil"], ["email", "leonard.borer@hand.org"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:10.137780"], ["updated_at", "2019-10-13 20:04:10.137780"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YKwN2-KboAWj0xn3o07Z4Q\":{\"token\":\"$2a$12$b1ZPR0hzhywCnWMLoIYVKehy6e4Dtr8Us1HJW3hHBw.nQv4c2HJTq\",\"expiry\":1572206650,\"last_token\":null,\"updated_at\":\"2019-10-13T15:04:10.138-05:00\"}}"], ["updated_at", "2019-10-13 20:04:10.328789"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "leonard.borer@hand.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$r0DrY1VcIoke7viplRTjaOHcWLzqvSZN1yOH2dVhYleJ.1E2WuVkS"], ["updated_at", "2019-10-13 20:04:10.554930"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 227ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kemberly.kris@brekke.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kemberly.kris@brekke.net"], ["encrypted_password", "$2a$04$qG4Klwo/QL1g9qEW9Kzrs.lzEu/kpqLzx9wKZlU5RtjSWnGnD.ife"], ["confirmed_at", "2019-10-13 20:04:10.564456"], ["name", "Taylor Maid"], ["email", "kemberly.kris@brekke.net"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:10.565489"], ["updated_at", "2019-10-13 20:04:10.565489"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "matthew@pfefferharris.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "matthew@pfefferharris.name"], ["encrypted_password", "$2a$04$0t4ijnO5Rq.AkBeBah69gO6Kpp/1nwxgifmOI45.4qJrqCbUbU5/u"], ["confirmed_at", "2019-10-13 20:04:10.574289"], ["name", "Les Plack"], ["email", "matthew@pfefferharris.name"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:10.575255"], ["updated_at", "2019-10-13 20:04:10.575255"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "278fe108df5deeb855aff40718958006f4e17a71560cce8c9f5a6b6b66d9e941"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "278fe108df5deeb855aff40718958006f4e17a71560cce8c9f5a6b6b66d9e941"], ["reset_password_sent_at", "2019-10-13 20:04:10.577636"], ["updated_at", "2019-10-13 20:04:10.577877"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22rvN2e3fpQRMPjVe9qozk%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"rvN2e3fpQRMPjVe9qozk\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "278fe108df5deeb855aff40718958006f4e17a71560cce8c9f5a6b6b66d9e941"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hHNzwuKuuppwzyABglJeCQ\":{\"token\":\"$2a$12$4pZe4MSGH97HAPacI4lP2Ool2vUaPmxT4Lw7/13b19ufHPy3nK99y\",\"expiry\":1572206650}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:10.778876"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hHNzwuKuuppwzyABglJeCQ\":{\"token\":\"$2a$12$4pZe4MSGH97HAPacI4lP2Ool2vUaPmxT4Lw7/13b19ufHPy3nK99y\",\"expiry\":1572206650},\"zzIYuaPlqVcEwqJxpC2PUQ\":{\"token\":\"$2a$12$VANHtdKLbuVk5YcMTWq5Le54OLAcRwEOyZqZI99jbMH.GtQFdRkA6\",\"expiry\":1572206650,\"last_token\":null,\"updated_at\":\"2019-10-13T15:04:10.779-05:00\"}}"], ["updated_at", "2019-10-13 20:04:10.954013"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 375ms (Views: 0.1ms | ActiveRecord: 0.5ms)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stephani.pacocha@wittinghills.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "stephani.pacocha@wittinghills.io"], ["encrypted_password", "$2a$04$n2nSI2uZvTojxzYfhRuaWuLmvtE8stKxytZZH3Csfn1HrEBVWc7M2"], ["confirmed_at", "2019-10-13 20:04:10.959570"], ["name", "Al Dente"], ["email", "stephani.pacocha@wittinghills.io"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:10.960498"], ["updated_at", "2019-10-13 20:04:10.960498"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e25f3f0677d982cabfc9499f718467a28f23b21eb13ceb63be386f3c32e42851"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "e25f3f0677d982cabfc9499f718467a28f23b21eb13ceb63be386f3c32e42851"], ["reset_password_sent_at", "2019-10-13 20:04:10.962236"], ["updated_at", "2019-10-13 20:04:10.962399"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%2259x1G_5L9_yuo8Yeyd4V%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"59x1G_5L9_yuo8Yeyd4V\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e25f3f0677d982cabfc9499f718467a28f23b21eb13ceb63be386f3c32e42851"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"JmLwJqrIdQ2dXrPUuFMR9Q\":{\"token\":\"$2a$12$/gY7aJJ7glHP188mLI7Mgu21K2kN2flIxAgFl9MmOe1/QyMH8XYGm\",\"expiry\":1572206650}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:11.142533"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=1572206650&client=JmLwJqrIdQ2dXrPUuFMR9Q&client_id=JmLwJqrIdQ2dXrPUuFMR9Q&config=&expiry=1572206650&reset_password=true&token=1572206650&uid=stephani.pacocha%40wittinghills.io Completed 302 Found in 180ms (ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "josh.reichel@homenickgrant.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "josh.reichel@homenickgrant.org"], ["encrypted_password", "$2a$04$Y7xaXQJVy9CjdXyZxVdaXePN5lFcZzkiA7ayumy3fwgHLL76g7bS."], ["confirmed_at", "2019-10-13 10:04:11"], ["name", "Carrie Dababi"], ["email", "josh.reichel@homenickgrant.org"], ["tokens", "{}"], ["created_at", "2019-10-13 10:04:11"], ["updated_at", "2019-10-13 10:04:11"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cd0489140c24bbe7124557140a75ca8932e2d983f3c82b45c705f5129a18cb96"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "cd0489140c24bbe7124557140a75ca8932e2d983f3c82b45c705f5129a18cb96"], ["reset_password_sent_at", "2019-10-13 10:04:11"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22senBxms3zzXjai6ZnRya%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"senBxms3zzXjai6ZnRya\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cd0489140c24bbe7124557140a75ca8932e2d983f3c82b45c705f5129a18cb96"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "chanelle@block.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "chanelle@block.info"], ["encrypted_password", "$2a$04$Bc7msNMF4CxAdeh1XCcAI.70.w3/B3LzJ312qr1scMW5YYNWvMRVq"], ["confirmed_at", "2019-10-13 20:04:11.158267"], ["name", "Sid Down"], ["email", "chanelle@block.info"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:11.159110"], ["updated_at", "2019-10-13 20:04:11.159110"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7738225da49ad842a9fa0cded3bbfa6e246382d83811338d1c8ff6ebcdf27638"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7738225da49ad842a9fa0cded3bbfa6e246382d83811338d1c8ff6ebcdf27638"], ["reset_password_sent_at", "2019-10-13 20:04:11.160610"], ["updated_at", "2019-10-13 20:04:11.160806"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%224Kb2_BCtr96UP8oYRsBqinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"4Kb2_BCtr96UP8oYRsBqinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5bcdb21c45bf69d574c254fe31455d6d3257c552374954015741b7e7421ea987"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "freda_bednar@schneider.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "freda_bednar@schneider.com"], ["encrypted_password", "$2a$04$/9fPHnYDuSUqPP2B8sLjkOkKyhOCYxfTySHJ1Vv45H4X/s0YeKPrW"], ["confirmation_token", "91eESDUMAYjN1Au7FNGn"], ["confirmation_sent_at", "2019-10-13 20:04:11.198143"], ["name", "Tate Urtots"], ["email", "freda_bednar@schneider.com"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:11.198034"], ["updated_at", "2019-10-13 20:04:11.198034"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.7ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.4ms Sent mail to freda_bednar@schneider.com (2.1ms) Date: Sun, 13 Oct 2019 15:04:11 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: freda_bednar@schneider.com Message-ID: <5da3833b31cc9_d5fa3fe92ac2ffd08067e@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome freda_bednar@schneider.com!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%2291eESDUMAYjN1Au7FNGn%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fortizterry.biz%2Fbertha%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"91eESDUMAYjN1Au7FNGn\"\n redirectUrl: \"http://ortizterry.biz/bertha\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "91eESDUMAYjN1Au7FNGn"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:04:11.210383"], ["updated_at", "2019-10-13 20:04:11.210789"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://ortizterry.biz/bertha?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lynetta@paucek.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lynetta@paucek.name"], ["encrypted_password", "$2a$04$cMqYv9QrhHYVUIfmjqyhAum5H15yq5SYT83QgNZHmXUR4olKG8veK"], ["confirmation_token", "hYDNY-sAtnA2VGx42wB8"], ["confirmation_sent_at", "2019-10-13 20:04:11.218465"], ["name", "Hugo First"], ["email", "lynetta@paucek.name"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:11.218351"], ["updated_at", "2019-10-13 20:04:11.218351"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22hYDNY-sAtnA2VGx42wB8-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fmoenweimann.com%2Framon%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"hYDNY-sAtnA2VGx42wB8-invalid\"\n redirectUrl: \"http://moenweimann.com/ramon\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "hYDNY-sAtnA2VGx42wB8-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "f9d850697f5160478c85991850fe712affdcfcc7f3319c7236d4e7d478557ee3"], ["LIMIT", 1]] Completed 200 OK in 92ms (Views: 0.1ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "minh@davis.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "minh@davis.biz"], ["encrypted_password", "$2a$04$73zJ8vwMk8lS8Rquq1Sak./WmMC0kGu8Fvx5c2G6Lk4FnacBm0cZi"], ["confirmed_at", "2019-10-13 20:04:11.317530"], ["name", "Ira Fuse"], ["email", "minh@davis.biz"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:11.318352"], ["updated_at", "2019-10-13 20:04:11.318352"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"UtbzkI4yByiCs6JnfjOs_A\":{\"token\":\"$2a$12$5G4V4zqRhokwhyqu.XipUO3SgcHZtSkx.uaLYZ9fae8W02i6L6.ei\",\"expiry\":1572206651,\"last_token\":null,\"updated_at\":\"2019-10-13T15:04:11.319-05:00\"}}"], ["updated_at", "2019-10-13 20:04:11.496466"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:04:11 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "minh@davis.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 173ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dagmar_jerde@mccullough.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "tokens", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dagmar_jerde@mccullough.net"], ["encrypted_password", "$2a$04$FFYvmjaWsQNrOqD7GjXu3e4uok055P0mmDHM9VXn93KIA98dau3Si"], ["confirmed_at", "2019-10-13 20:04:11.677311"], ["name", "Holly Wood"], ["email", "dagmar_jerde@mccullough.net"], ["tokens", "{}"], ["created_at", "2019-10-13 20:04:11.678083"], ["updated_at", "2019-10-13 20:04:11.678083"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:04:11 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.3ms) rollback transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shandra.mayert@deckow.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shandra.mayert@deckow.io"], ["encrypted_password", "$2a$04$otfAYzpS/ZyeZq6V.fYhtOee4hrpEL2rZXwq6lkNKT1ucVkUBConC"], ["confirmed_at", "2019-10-13 20:04:14.557844"], ["name", "Annie Matter"], ["email", "shandra.mayert@deckow.io"], ["created_at", "2019-10-13 20:04:14.559873"], ["updated_at", "2019-10-13 20:04:14.559873"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"shandra.mayert@deckow.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shandra.mayert@deckow.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"6NX5KzX_n2h-eixrQErlpg\":{\"token\":\"$2a$10$f5cTro3PdXYPacLfLOgmyuVmRsoTXb5JT0ULbtM0SgWQuLN7yX.U2\",\"expiry\":1572206654,\"updated_at\":\"2019-10-13 20:04:14 UTC\"}}"], ["updated_at", "2019-10-13 20:04:14.631019"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 20:04:14.633885"], ["last_sign_in_at", "2019-10-13 20:04:14.633885"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 20:04:14.634184"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.5ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mechelle_beahan@erdmanstiedemann.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mechelle_beahan@erdmanstiedemann.org"], ["encrypted_password", "$2a$04$V3Ei9AxeoypI9vKWYV/1PeT/YjXnvVnZMUNopOjukz7xFtTpCmxYi"], ["confirmed_at", "2019-10-13 20:04:14.641422"], ["name", "Matt Tress"], ["email", "mechelle_beahan@erdmanstiedemann.org"], ["created_at", "2019-10-13 20:04:14.642253"], ["updated_at", "2019-10-13 20:04:14.642253"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"mechelle_beahan@erdmanstiedemann.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mechelle_beahan@erdmanstiedemann.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + 1 WHERE "users"."id" = ? [["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bettye@beattymayer.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bettye@beattymayer.biz"], ["encrypted_password", "$2a$04$oEvQ.1Gc90UzVGvhZ7o5SOrH4bOt1co23pr2q4ae8iycLrX1cmpyO"], ["confirmation_token", "cDohzah6s-p5BJguMj-D"], ["confirmation_sent_at", "2019-10-13 20:04:14.652159"], ["name", "Don Thatt"], ["email", "bettye@beattymayer.biz"], ["created_at", "2019-10-13 20:04:14.652072"], ["updated_at", "2019-10-13 20:04:14.652072"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"bettye@beattymayer.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bettye@beattymayer.biz"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "margret@torp.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "margret@torp.org"], ["encrypted_password", "$2a$04$souFiSNhPWSwbbEdZUpUvOIRJThX0mWZUSl7kdQBIEh3HcIjE.KKK"], ["confirmed_at", "2019-10-13 20:04:14.676760"], ["locked_at", "2019-10-13 20:04:14.676777"], ["name", "Tom Katz"], ["email", "margret@torp.org"], ["created_at", "2019-10-13 20:04:14.677914"], ["updated_at", "2019-10-13 20:04:14.677914"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"margret@torp.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "margret@torp.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ruben.daniel@kiehn.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ruben.daniel@kiehn.name"], ["encrypted_password", "$2a$04$Wiwu9I73TlnlUp2SeASrC.v6w8mAy1WJLhNp0SLUHR3iXO7k6EwAy"], ["confirmed_at", "2019-10-13 20:04:14.686923"], ["name", "Sam Pull"], ["email", "ruben.daniel@kiehn.name"], ["created_at", "2019-10-13 20:04:14.688402"], ["updated_at", "2019-10-13 20:04:14.688402"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ruben.daniel@kiehn.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ruben.daniel@kiehn.name"], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "steve.predovic@jakubowskibechtelar.io"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "steve.predovic@jakubowskibechtelar.io"], ["encrypted_password", "$2a$04$CsmkW6dyX4oXHnwMosjBk.G0zr6DANjPtEVPat2XcTgsQB2Gkp29O"], ["confirmed_at", "2019-10-13 20:04:14.715533"], ["email", "steve.predovic@jakubowskibechtelar.io"], ["created_at", "2019-10-13 20:04:14.717822"], ["updated_at", "2019-10-13 20:04:14.717822"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"steve.predovic@jakubowskibechtelar.io\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "steve.predovic@jakubowskibechtelar.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"LvC-9UM-jxV8688wSsFQQQ\":{\"token\":\"$2a$10$peNU81k7.tQrcyDvKp6bneutacBwHuq0sOk9.aNobKXx1MU8BT5o2\",\"expiry\":1572206654,\"updated_at\":\"2019-10-13 20:04:14 UTC\"}}"], ["updated_at", "2019-10-13 20:04:14.779933"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "angel.rodriguez@gislason.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "angel.rodriguez@gislason.biz"], ["encrypted_password", "$2a$04$xJHFnsQyYnGAQKg7nTSxAuJnm.dqBi606Rr1GXLACkt0pUpu.I0gS"], ["confirmed_at", "2019-10-13 20:04:14.784802"], ["name", "Anita Knapp"], ["email", "angel.rodriguez@gislason.biz"], ["created_at", "2019-10-13 20:04:14.785723"], ["updated_at", "2019-10-13 20:04:14.785723"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"8lYu0fG8sXjSvA8kOekZkQ\":{\"token\":\"$2a$10$BcX1P3YlyQCyvd27efhxYOprmZD/AEBn8DzV6eH8JtN.w6ySFmM/S\",\"expiry\":1572206654,\"updated_at\":\"2019-10-13 20:04:14 UTC\"}}"], ["updated_at", "2019-10-13 20:04:14.841999"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "angel.rodriguez@gislason.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:04:14.892415"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "diamond@feeney.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "diamond@feeney.net"], ["encrypted_password", "$2a$04$NhXxJ4YNxxO3mWBEvHTFPumS174RWhl20iNWTvYonta/uTeeaKtZ2"], ["confirmed_at", "2019-10-13 20:04:14.899290"], ["name", "Ginger Vitis"], ["email", "diamond@feeney.net"], ["created_at", "2019-10-13 20:04:14.900092"], ["updated_at", "2019-10-13 20:04:14.900092"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "julius.herman@langdibbert.com"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "julius.herman@langdibbert.com"], ["encrypted_password", "$2a$04$XkVIyK64.CDjowfCPcAl0OB.7/SS6drSlN5jD0LVa08j/ptips5aC"], ["confirmed_at", "2019-10-13 20:04:14.903722"], ["email", "julius.herman@langdibbert.com"], ["created_at", "2019-10-13 20:04:14.904558"], ["updated_at", "2019-10-13 20:04:14.904558"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"7p2hbjdan-BVrxtdLEoI7g\":{\"token\":\"$2a$10$VuOIfk/uF9MCrzWm.rA3LOqnQxm53YXGQg92WspdRdVNX2sPkNY32\",\"expiry\":1572206654,\"updated_at\":\"2019-10-13 20:04:14 UTC\"}}"], ["updated_at", "2019-10-13 20:04:14.955377"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "julius.herman@langdibbert.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:04:15.005245"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alphonso.okon@renner.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alphonso.okon@renner.info"], ["encrypted_password", "$2a$04$du2EQFfo.ecvbKpMaqge3O7o2w03Qj3cG5OKpO9IeIqUd683b73QS"], ["confirmed_at", "2019-10-13 20:04:15.012121"], ["name", "Rusty Carr"], ["email", "alphonso.okon@renner.info"], ["created_at", "2019-10-13 20:04:15.013029"], ["updated_at", "2019-10-13 20:04:15.013029"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"alphonso.okon@renner.info\",\n redirectUrl: \"http://gutmann.co/antonia_pacocha\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "alphonso.okon@renner.info"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2626cae9833e1f3dd027146af1dabf7b5c3076f626b835a78ea46defedf3d8c0"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "2626cae9833e1f3dd027146af1dabf7b5c3076f626b835a78ea46defedf3d8c0"], ["reset_password_sent_at", "2019-10-13 20:04:15.100325"], ["updated_at", "2019-10-13 20:04:15.100580"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (1.8ms) Devise::Mailer#reset_password_instructions: processed outbound mail in 115.1ms Sent mail to alphonso.okon@renner.info (3.5ms) Date: Sun, 13 Oct 2019 15:04:15 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: alphonso.okon@renner.info Message-ID: <5da3833f356bc_d6143ff51b832020474cf@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: alphonso.okon@renner.info provider: email redirect-url: http://gutmann.co/antonia_pacocha client-config: default

Hello alphonso.okon@renner.info!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 206ms (Views: 0.1ms | ActiveRecord: 0.4ms) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fgutmann.co%2Fantonia_pacocha&variables%5Btoken%5D=vsBDB5EWGWazRX_X8C4K" for 127.0.0.1 at 2019-10-13 15:04:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://gutmann.co/antonia_pacocha", "token"=>"vsBDB5EWGWazRX_X8C4K"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2626cae9833e1f3dd027146af1dabf7b5c3076f626b835a78ea46defedf3d8c0"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Jz6d5DWVJ9HMGQykLYBohQ\":{\"token\":\"$2a$10$Jmz22dK6SMBxsn5YSstNYeyhMGnS8Hx4eiymPk079ZFA3ZYaNohyS\",\"expiry\":1572206655}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:15.269287"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://gutmann.co/antonia_pacocha?access-token=NdXeySMZh4oBxp0Bsu1IhA&client=Jz6d5DWVJ9HMGQykLYBohQ&client_id=Jz6d5DWVJ9HMGQykLYBohQ&config=&expiry=1572206655&reset_password=true&token=NdXeySMZh4oBxp0Bsu1IhA&uid=alphonso.okon%40renner.info Completed 302 Found in 48ms (ActiveRecord: 0.2ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://rogahn.name/reynaldo.hintz\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"deadra@pollichwunsch.biz\"\n name: \"Susann Kris\"\n password: \"ZmAgLzPuCsF\"\n passwordConfirmation: \"ZmAgLzPuCsF\"\n confirmSuccessUrl: \"http://mooreokeefe.name/everett.crooks\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deadra@pollichwunsch.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "deadra@pollichwunsch.biz"], ["encrypted_password", "$2a$04$tDF/MjDW0FJAL.zj9rdK7OlD/Bpc/Nu57io9GdFFtWi00GMuhmkYy"], ["confirmation_token", "xyde9ZP4h21Wh-Lgsjx_"], ["confirmation_sent_at", "2019-10-13 20:04:15.280946"], ["name", "Susann Kris"], ["email", "deadra@pollichwunsch.biz"], ["created_at", "2019-10-13 20:04:15.280879"], ["updated_at", "2019-10-13 20:04:15.280879"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.6ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.1ms Sent mail to deadra@pollichwunsch.biz (1.0ms) Date: Sun, 13 Oct 2019 15:04:15 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: deadra@pollichwunsch.biz Message-ID: <5da3833f45b0b_d6143ff51b832020475b@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://mooreokeefe.name/everett.crooks

Welcome deadra@pollichwunsch.biz!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fmooreokeefe.name%2Feverett.crooks&variables%5Btoken%5D=xyde9ZP4h21Wh-Lgsjx_" for 127.0.0.1 at 2019-10-13 15:04:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://mooreokeefe.name/everett.crooks", "token"=>"xyde9ZP4h21Wh-Lgsjx_"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "xyde9ZP4h21Wh-Lgsjx_"], ["LIMIT", 1]]  (0.2ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:04:15.292559"], ["updated_at", "2019-10-13 20:04:15.294840"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://mooreokeefe.name/everett.crooks?account_confirmation_success=true Completed 302 Found in 10ms (ActiveRecord: 0.7ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.2ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Malcom Gerhold\"\n password: \"0HiFbZmB731fT4\"\n passwordConfirmation: \"0HiFbZmB731fT4\"\n confirmSuccessUrl: \"http://brekkecain.io/jarred_haley\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 13ms (Views: 0.8ms | ActiveRecord: 0.4ms)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "maude@hyattpaucek.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "maude@hyattpaucek.net"], ["encrypted_password", "$2a$04$rCA0ZvN5PAM3IN4Q958muOJygrSzinTIa49.K7fAZ7keRRK6nBPda"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:15.328025"], ["name", "Darren Deeds"], ["email", "maude@hyattpaucek.net"], ["created_at", "2019-10-13 20:04:15.329363"], ["updated_at", "2019-10-13 20:04:15.329363"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) SAVEPOINT active_record_1 User Update (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"1iXpvBLbeizik8NqR9Kv9g\":{\"token\":\"$2a$10$iOB16bnQOkSwjfi.U6dcUO3x0BmDaPYPBQmdNrlVrLceQJj9kJ84e\",\"expiry\":1572206655,\"updated_at\":\"2019-10-13 20:04:15 UTC\"}}"], ["updated_at", "2019-10-13 20:04:15.390140"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "maude@hyattpaucek.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$kLwzEQeQ/IRJaCO2L7wzzO/wa.p3chl6mxTgn4es2zV/IydADfntK"], ["updated_at", "2019-10-13 20:04:15.445860"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:15.447626"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.4ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "denie@stiedemannlarkin.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "denie@stiedemannlarkin.io"], ["encrypted_password", "$2a$04$oJQGhtg7U/WFbYaTloRH7uTczn6qMYhPP/3SILGFgnQdHsukTNcx2"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:15.454456"], ["name", "Cammie Sole"], ["email", "denie@stiedemannlarkin.io"], ["created_at", "2019-10-13 20:04:15.455663"], ["updated_at", "2019-10-13 20:04:15.455663"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0w8aRbXkacF_ZxYDBrow9A\":{\"token\":\"$2a$10$l2F7mCU9ywDd9F.uu9oRcOPlv3.4kq/8axsZ1W65tyt5hnz9ERus2\",\"expiry\":1572206655,\"updated_at\":\"2019-10-13 20:04:15 UTC\"}}"], ["updated_at", "2019-10-13 20:04:15.508499"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "denie@stiedemannlarkin.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$iEf20unA0x.LXn8mxlRfD.E6bhPMLDXBX5tM0ThiPdYlFLBnjPk66"], ["updated_at", "2019-10-13 20:04:15.559691"], ["id", 1]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:15.560891"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.4ms | ActiveRecord: 1.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kizzie@gibson.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kizzie@gibson.biz"], ["encrypted_password", "$2a$04$6qR1CRKBdeXzwRneH3r0ou5vPDFx/ExPr0cUvAo0pCi2Akap7lnJm"], ["confirmed_at", "2019-10-13 20:04:15.567905"], ["name", "Sandy Banks"], ["email", "kizzie@gibson.biz"], ["created_at", "2019-10-13 20:04:15.568991"], ["updated_at", "2019-10-13 20:04:15.568991"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"sXN6VSa7ywsYDhnr4_82rw\":{\"token\":\"$2a$10$7b1ghYBOZbcgNChGK0efa.qLIe7YhlmaW5Qtt0pQdrjqU3Cxh9Fvu\",\"expiry\":1572206655,\"updated_at\":\"2019-10-13 20:04:15 UTC\"}}"], ["updated_at", "2019-10-13 20:04:15.618446"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kizzie@gibson.biz"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.4ms | ActiveRecord: 0.1ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.8ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "domenic_price@nienowrice.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "domenic_price@nienowrice.com"], ["encrypted_password", "$2a$04$uVq0P38wxbFD.NfFryJCSOaBK2hxBCBWyldWacasYNisCCcmI/Qau"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:15.674791"], ["name", "Tommy Hawk"], ["email", "domenic_price@nienowrice.com"], ["created_at", "2019-10-13 20:04:15.677530"], ["updated_at", "2019-10-13 20:04:15.677530"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZQkP7_blg3bYitUunc2WCA\":{\"token\":\"$2a$10$Rhlx4kk2s8LlAQZV/vQE.O/4H/xGUGlo9/SELvpuxEGUXGl7y.1FG\",\"expiry\":1572206655,\"updated_at\":\"2019-10-13 20:04:15 UTC\"}}"], ["updated_at", "2019-10-13 20:04:15.729633"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "domenic_price@nienowrice.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$KZoxQHAcezg..R7gBKIcaOVqdau.jz16RvA3nGRs5vJQvqBIcdN5q"], ["updated_at", "2019-10-13 20:04:15.780557"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:15.781687"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.8ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gustavo.howell@hyatt.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gustavo.howell@hyatt.io"], ["encrypted_password", "$2a$04$7s4r3e7Tg0PU8uBqzEhegewYEeAl65zkeps6ZixO0ED4Q7NF.Bkuu"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:15.788128"], ["name", "Taylor Maid"], ["email", "gustavo.howell@hyatt.io"], ["created_at", "2019-10-13 20:04:15.788825"], ["updated_at", "2019-10-13 20:04:15.788825"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"UXX6HgbBtjK4n8o8cddZJA\":{\"token\":\"$2a$10$jbSon5HDEofctV68cdAgFekWP.yL3s9eutenABtUMJjvSGG1xwLFu\",\"expiry\":1572206655,\"updated_at\":\"2019-10-13 20:04:15 UTC\"}}"], ["updated_at", "2019-10-13 20:04:15.836478"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gustavo.howell@hyatt.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$EOrb8nmTnrAuqb4g4EdQcOCwBz.m4EVr1i2tjk3TuKqMacg0LD6W2"], ["updated_at", "2019-10-13 20:04:15.884887"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:15.885887"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.4ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "scott.morar@wiegandmayer.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "scott.morar@wiegandmayer.net"], ["encrypted_password", "$2a$04$DpihXYKsoe9oEQ1nCDayveRPOFo0d28EEKmYAqJecryLoOWGkS/m."], ["confirmed_at", "2019-10-13 20:04:15.891456"], ["name", "Candy Baskett"], ["email", "scott.morar@wiegandmayer.net"], ["created_at", "2019-10-13 20:04:15.892255"], ["updated_at", "2019-10-13 20:04:15.892255"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ipxSGCySpGU4JN_w10cO_g\":{\"token\":\"$2a$10$23FrXALr469Bmt/rynMUlODUqG1zHWzCsOrxTas.RW1VeA7roHRUu\",\"expiry\":1572206655,\"updated_at\":\"2019-10-13 20:04:15 UTC\"}}"], ["updated_at", "2019-10-13 20:04:15.940849"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:15 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "scott.morar@wiegandmayer.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$k7fk.CLGd6wr05hV2Qd2weLqOlky3tmENYgjF4m71IMSi3cww2T/."], ["updated_at", "2019-10-13 20:04:15.990820"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marc@gusikowski.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marc@gusikowski.info"], ["encrypted_password", "$2a$04$fB8xkGJxYMwQaOYAwhqnU./rtWh7vLWeVAzngq49t9MDcxkIrLBVa"], ["confirmed_at", "2019-10-13 20:04:15.999223"], ["name", "Bill Board"], ["email", "marc@gusikowski.info"], ["created_at", "2019-10-13 20:04:16.000056"], ["updated_at", "2019-10-13 20:04:16.000056"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sal@towne.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sal@towne.info"], ["encrypted_password", "$2a$04$Tj.6oZ49x1iFgBeRyDZ7le/rOHUf4tXMM8Svx6QIsi0dW1gDaLoRy"], ["confirmed_at", "2019-10-13 20:04:16.006478"], ["name", "Nick O'Time"], ["email", "sal@towne.info"], ["created_at", "2019-10-13 20:04:16.007259"], ["updated_at", "2019-10-13 20:04:16.007259"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7cd4d77ab34b04ed17e15b2f55bd6d466632bb87a13ccdbcbd6d87c91317b0d8"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7cd4d77ab34b04ed17e15b2f55bd6d466632bb87a13ccdbcbd6d87c91317b0d8"], ["reset_password_sent_at", "2019-10-13 20:04:16.010276"], ["updated_at", "2019-10-13 20:04:16.010632"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22aceQiNFDAtbk6Zv_JSsm%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"aceQiNFDAtbk6Zv_JSsm\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7cd4d77ab34b04ed17e15b2f55bd6d466632bb87a13ccdbcbd6d87c91317b0d8"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OrPToiQ8DBTSQrNEXQ9_sA\":{\"token\":\"$2a$10$cliOuMDfE4/mds62XJpiC.oxKOYGY9yir.l93E.isxvYmS.c3A7v2\",\"expiry\":1572206656}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:16.067961"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"OrPToiQ8DBTSQrNEXQ9_sA\":{\"token\":\"$2a$10$cliOuMDfE4/mds62XJpiC.oxKOYGY9yir.l93E.isxvYmS.c3A7v2\",\"expiry\":1572206656},\"GPBx2lB0Wv9OFyT7I5k7fw\":{\"token\":\"$2a$10$hjN3zY3zhV/zDlpjwDqkY.WWxZxGfA7Z/Hw8Ycw7g/adQkPh6pvSG\",\"expiry\":1572206656,\"updated_at\":\"2019-10-13 20:04:16 UTC\"}}"], ["updated_at", "2019-10-13 20:04:16.112124"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 99ms (Views: 0.1ms | ActiveRecord: 0.4ms)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "garfield@coleschoen.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "garfield@coleschoen.io"], ["encrypted_password", "$2a$04$Xu9pxx4eTFxviOuZJBOtU.CHyDHOjITGY1DWLORm.RCd.4tIfJoeO"], ["confirmed_at", "2019-10-13 20:04:16.118471"], ["name", "Claire DeAir"], ["email", "garfield@coleschoen.io"], ["created_at", "2019-10-13 20:04:16.119841"], ["updated_at", "2019-10-13 20:04:16.119841"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1e2347d97f6f321c6209b54d50d2f6f5c7ab7b34cc2803b4db275bf480ef6708"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "1e2347d97f6f321c6209b54d50d2f6f5c7ab7b34cc2803b4db275bf480ef6708"], ["reset_password_sent_at", "2019-10-13 20:04:16.122009"], ["updated_at", "2019-10-13 20:04:16.122306"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22bqfVbpwAmjgDDv1VgRzx%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"bqfVbpwAmjgDDv1VgRzx\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1e2347d97f6f321c6209b54d50d2f6f5c7ab7b34cc2803b4db275bf480ef6708"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"eRSANicwSNoTuBRp5wE1qQ\":{\"token\":\"$2a$10$QG3HS2HREyPhfQAAWigy6ujiD3F/88wlRA.UHP3q8k7GYZRiuCHYS\",\"expiry\":1572206656}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:16.178485"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=ZNhOAguAOMWpmEHxHCa0CQ&client=eRSANicwSNoTuBRp5wE1qQ&client_id=eRSANicwSNoTuBRp5wE1qQ&config=&expiry=1572206656&reset_password=true&token=ZNhOAguAOMWpmEHxHCa0CQ&uid=garfield%40coleschoen.io Completed 302 Found in 54ms (ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jefferson@mullerfranecki.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jefferson@mullerfranecki.name"], ["encrypted_password", "$2a$04$idAfELyUUHOsmVNs6IuwQ.HFGxP8Kkjl9ga2Xj95yYYsm278ANl92"], ["confirmed_at", "2019-10-13 10:04:16"], ["name", "Mandy Lifeboats"], ["email", "jefferson@mullerfranecki.name"], ["created_at", "2019-10-13 10:04:16"], ["updated_at", "2019-10-13 10:04:16"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4fe70c9d088afa35e4c60035343491c00f62f5754ee06ddc47a6b32510b32011"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "4fe70c9d088afa35e4c60035343491c00f62f5754ee06ddc47a6b32510b32011"], ["reset_password_sent_at", "2019-10-13 10:04:16"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22LziFVj5qnhUvLNPDWtfb%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"LziFVj5qnhUvLNPDWtfb\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4fe70c9d088afa35e4c60035343491c00f62f5754ee06ddc47a6b32510b32011"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "irvin.schuppe@parisian.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "irvin.schuppe@parisian.biz"], ["encrypted_password", "$2a$04$i6XZVOdMvAD.O93lmUnYQOmS.jeH8s0NzFaYyZbFYuIWWJaZqedpO"], ["confirmed_at", "2019-10-13 20:04:16.223463"], ["name", "Hugh deMann"], ["email", "irvin.schuppe@parisian.biz"], ["created_at", "2019-10-13 20:04:16.224687"], ["updated_at", "2019-10-13 20:04:16.224687"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b53ff3878c982ad2623cdfa2194c3df3cd43e60305f78b9ba028d20c913994f0"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b53ff3878c982ad2623cdfa2194c3df3cd43e60305f78b9ba028d20c913994f0"], ["reset_password_sent_at", "2019-10-13 20:04:16.227658"], ["updated_at", "2019-10-13 20:04:16.228070"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22Ka3_gcof7miXpxJ-Pn1Uinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"Ka3_gcof7miXpxJ-Pn1Uinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "8f95a9bb5f7778293104c257785ee2af1f7e040fed46e6107516b055109f347f"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "phylis@macgyver.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "phylis@macgyver.co"], ["encrypted_password", "$2a$04$IVN5dHgadhMM5Nj/yiN3O.K2CbYyaXjP.xGxH/Revm/utbwj.QtF."], ["confirmation_token", "LshC-2tuxxGREozYpn2F"], ["confirmation_sent_at", "2019-10-13 20:04:16.239862"], ["name", "Colin Allcars"], ["email", "phylis@macgyver.co"], ["created_at", "2019-10-13 20:04:16.239737"], ["updated_at", "2019-10-13 20:04:16.239737"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (0.5ms) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.5ms Sent mail to phylis@macgyver.co (1.2ms) Date: Sun, 13 Oct 2019 15:04:16 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: phylis@macgyver.co Message-ID: <5da383403b717_d6143ff51b832020476ab@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome phylis@macgyver.co!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22LshC-2tuxxGREozYpn2F%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Frolfson.info%2Fearnestine%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"LshC-2tuxxGREozYpn2F\"\n redirectUrl: \"http://rolfson.info/earnestine\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "LshC-2tuxxGREozYpn2F"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:04:16.249746"], ["updated_at", "2019-10-13 20:04:16.250322"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://rolfson.info/earnestine?account_confirmation_success=true Completed 302 Found in 6ms (ActiveRecord: 0.5ms) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kristyn@lynchklocko.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kristyn@lynchklocko.org"], ["encrypted_password", "$2a$04$YOkOZHSW5fkQtWeN8ys0yePeNjwTD5ITRqTIOFboHVhmJD8VJZBI."], ["confirmation_token", "bZ8rvHt-w7y_7Ca3UEPe"], ["confirmation_sent_at", "2019-10-13 20:04:16.259079"], ["name", "Elmer Sklue"], ["email", "kristyn@lynchklocko.org"], ["created_at", "2019-10-13 20:04:16.258913"], ["updated_at", "2019-10-13 20:04:16.258913"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22bZ8rvHt-w7y_7Ca3UEPe-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fkeelingboyer.biz%2Fstephan%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"bZ8rvHt-w7y_7Ca3UEPe-invalid\"\n redirectUrl: \"http://keelingboyer.biz/stephan\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "bZ8rvHt-w7y_7Ca3UEPe-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "72710a3c05cb6d5c985ab1842745d1df28cc8453da4031f22cced87c49cf779e"], ["LIMIT", 1]] Completed 200 OK in 103ms (Views: 0.1ms | ActiveRecord: 0.3ms) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "abigail@faheyshields.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "abigail@faheyshields.name"], ["encrypted_password", "$2a$04$Iffw9B3sFuBmQC7j062STOe1RmRA.Qmr6bV2fwf0QBdsyBjE73RvG"], ["confirmed_at", "2019-10-13 20:04:16.371672"], ["name", "Harry Beard"], ["email", "abigail@faheyshields.name"], ["created_at", "2019-10-13 20:04:16.372396"], ["updated_at", "2019-10-13 20:04:16.372396"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"h0Rk3_4YY3NfRj59w_YQRA\":{\"token\":\"$2a$10$g8gQbRNzPZ4fz4H7A7GNwuGh2fkzLk082Y3hnMhn6Tmg.MsZm6gq2\",\"expiry\":1572206656,\"updated_at\":\"2019-10-13 20:04:16 UTC\"}}"], ["updated_at", "2019-10-13 20:04:16.428721"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:04:16 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "abigail@faheyshields.name"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "georgianna_kertzmann@prosaccogibson.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "georgianna_kertzmann@prosaccogibson.io"], ["encrypted_password", "$2a$04$H/Cx0VL9Z0ES6qXaP0gUyOfGcfVQlMkJbkZLEJQn/gP.ciLan113e"], ["confirmed_at", "2019-10-13 20:04:16.495537"], ["name", "Jacklyn Hyde"], ["email", "georgianna_kertzmann@prosaccogibson.io"], ["created_at", "2019-10-13 20:04:16.496283"], ["updated_at", "2019-10-13 20:04:16.496283"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:04:16 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)  (0.2ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alex@powlowskifisher.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alex@powlowskifisher.org"], ["encrypted_password", "$2a$04$5fG.6lh6vnUEHg6FTqaYU.oreVvQoIVPRZFsN2gpnP74JxvELbIXi"], ["confirmed_at", "2019-10-13 20:04:19.503513"], ["name", "Milton Yermouth"], ["email", "alex@powlowskifisher.org"], ["created_at", "2019-10-13 20:04:19.504778"], ["updated_at", "2019-10-13 20:04:19.504778"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"alex@powlowskifisher.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alex@powlowskifisher.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"K6aQtGLI1UqgezgZhKJGNg\":{\"token\":\"$2a$10$lx9H5sTO3nDhrY.mxcLyXuaDMjLwoBpXGW0yEOalSTufFHmGA3cL.\",\"expiry\":1572206659,\"updated_at\":\"2019-10-13 20:04:19 UTC\"}}"], ["updated_at", "2019-10-13 20:04:19.581313"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 20:04:19.584634"], ["last_sign_in_at", "2019-10-13 20:04:19.584634"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 20:04:19.584838"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 67ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 22886) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alexander@schimmel.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alexander@schimmel.io"], ["encrypted_password", "$2a$04$LaQpOgm4hj6E72qEDwrvGulWqpcP0aPtUTX/xtdIFnBBtYGjA/9lu"], ["confirmed_at", "2019-10-13 20:04:19.592656"], ["name", "Doug Updegrave"], ["email", "alexander@schimmel.io"], ["created_at", "2019-10-13 20:04:19.593570"], ["updated_at", "2019-10-13 20:04:19.593570"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"alexander@schimmel.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "alexander@schimmel.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2384)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hector@kohler.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hector@kohler.com"], ["encrypted_password", "$2a$04$8R7xPHvDAhWPrcDXQp.47uA9fQSRqUjfHns5CpdazF4Kjw/GF3NJa"], ["confirmation_token", "22mA3z-3tzuoP5HRD9t3"], ["confirmation_sent_at", "2019-10-13 20:04:19.603663"], ["name", "Al Luminum"], ["email", "hector@kohler.com"], ["created_at", "2019-10-13 20:04:19.603581"], ["updated_at", "2019-10-13 20:04:19.603581"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"hector@kohler.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hector@kohler.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1704)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "abraham_upton@robel.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "abraham_upton@robel.net"], ["encrypted_password", "$2a$04$qn2DyLa/NuvpKqHCYvuDwuPoHp0zbijUf989Izk2ZdTHYXXI5qc/i"], ["confirmed_at", "2019-10-13 20:04:19.610891"], ["locked_at", "2019-10-13 20:04:19.610917"], ["name", "Claire DeAir"], ["email", "abraham_upton@robel.net"], ["created_at", "2019-10-13 20:04:19.612700"], ["updated_at", "2019-10-13 20:04:19.612700"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"abraham_upton@robel.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "abraham_upton@robel.net"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1723)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "yulanda@boylecrona.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "yulanda@boylecrona.org"], ["encrypted_password", "$2a$04$GjBGQqp0xs38rt7yMLBZ.eb.9izxevzVpAmgdSmp5zh0h.tL.dK46"], ["confirmed_at", "2019-10-13 20:04:19.623039"], ["name", "Ed Ible"], ["email", "yulanda@boylecrona.org"], ["created_at", "2019-10-13 20:04:19.624282"], ["updated_at", "2019-10-13 20:04:19.624282"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"yulanda@boylecrona.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "yulanda@boylecrona.org"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1701)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "merle_howe@rempel.io"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.5ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "merle_howe@rempel.io"], ["encrypted_password", "$2a$04$3F4pvYUcQB4GYciZlqm1SeRKJRG8icsiqVLMUq4qPAX0y2NVwBWxW"], ["confirmed_at", "2019-10-13 20:04:19.650955"], ["email", "merle_howe@rempel.io"], ["created_at", "2019-10-13 20:04:19.653477"], ["updated_at", "2019-10-13 20:04:19.653477"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"merle_howe@rempel.io\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "merle_howe@rempel.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"WI9FN6MRJgxb8X9YCihigw\":{\"token\":\"$2a$10$NDfbZs47OCbr7cUgIKsTQu3Ucg9o4PPWvTpXWCwv1qgB4WktmCiti\",\"expiry\":1572206659,\"updated_at\":\"2019-10-13 20:04:19 UTC\"}}"], ["updated_at", "2019-10-13 20:04:19.716648"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2750)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shawn@bailey.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shawn@bailey.biz"], ["encrypted_password", "$2a$04$dYuOWDQrkcBCYWTJbM6WOeVXd7xaYT24/1DftvX2iRrO2IHqqK/i2"], ["confirmed_at", "2019-10-13 20:04:19.722016"], ["name", "Ty Malone"], ["email", "shawn@bailey.biz"], ["created_at", "2019-10-13 20:04:19.722884"], ["updated_at", "2019-10-13 20:04:19.722884"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7lHMon82gZp6zR6MhXkX5w\":{\"token\":\"$2a$10$fF1HBJuSOtkSEjrvaNaLUeLvN0p1hiigXn0ufYBef0cfH4g7MfBam\",\"expiry\":1572206659,\"updated_at\":\"2019-10-13 20:04:19 UTC\"}}"], ["updated_at", "2019-10-13 20:04:19.776659"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "shawn@bailey.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:04:19.826906"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2195) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1237)  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "margaret@waelchi.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "margaret@waelchi.co"], ["encrypted_password", "$2a$04$pvjfUHV8oHTyjyWSfMppEu5SABEaKczjQ/7KpNOx5FA6FEd.qECI."], ["confirmed_at", "2019-10-13 20:04:19.836713"], ["name", "Kenny Penny"], ["email", "margaret@waelchi.co"], ["created_at", "2019-10-13 20:04:19.837889"], ["updated_at", "2019-10-13 20:04:19.837889"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "jordon_mcclure@schillerjohns.net"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.7ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jordon_mcclure@schillerjohns.net"], ["encrypted_password", "$2a$04$UxzN5/lwv3r/nnTgH9Rxo.mIWxJHaXk98j2dlRIh70xW5QHDSRIO2"], ["confirmed_at", "2019-10-13 20:04:19.842400"], ["email", "jordon_mcclure@schillerjohns.net"], ["created_at", "2019-10-13 20:04:19.844642"], ["updated_at", "2019-10-13 20:04:19.844642"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"BZCdaKGTWj5TF4L1I9Awdw\":{\"token\":\"$2a$10$cEqs.eUT5uqwZ4AlS3jxz..4PjWVm1JU7a1oOPj49QebPzR6kwa5m\",\"expiry\":1572206659,\"updated_at\":\"2019-10-13 20:04:19 UTC\"}}"], ["updated_at", "2019-10-13 20:04:19.901834"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "jordon_mcclure@schillerjohns.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:04:19.953945"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2126) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tanna_feeney@grady.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tanna_feeney@grady.io"], ["encrypted_password", "$2a$04$oYBYHbJKUq4b4WfihMxx8OnIQURo8w/mrxcF4sYfrHR9pHBUG2G1y"], ["confirmed_at", "2019-10-13 20:04:19.960840"], ["name", "Lisa Ford"], ["email", "tanna_feeney@grady.io"], ["created_at", "2019-10-13 20:04:19.962686"], ["updated_at", "2019-10-13 20:04:19.962686"]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"tanna_feeney@grady.io\",\n redirectUrl: \"http://langworth.org/val\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "tanna_feeney@grady.io"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "25603f62cad1a14009bceed4e3176ab25f39ddd4ecdee3031084f253fb9b13d1"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "25603f62cad1a14009bceed4e3176ab25f39ddd4ecdee3031084f253fb9b13d1"], ["reset_password_sent_at", "2019-10-13 20:04:20.055124"], ["updated_at", "2019-10-13 20:04:20.055288"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.7ms | Allocations: 1295) Devise::Mailer#reset_password_instructions: processed outbound mail in 126.7ms Delivered mail 5da383442d3c5_d62d3fe0f103202047973@Marios-MacBook-Pro.local.mail (4.1ms) Date: Sun, 13 Oct 2019 15:04:20 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: tanna_feeney@grady.io Message-ID: <5da383442d3c5_d62d3fe0f103202047973@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: tanna_feeney@grady.io provider: email redirect-url: http://langworth.org/val client-config: default

Hello tanna_feeney@grady.io!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 221ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 68100) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Flangworth.org%2Fval&variables%5Btoken%5D=fxP1HbXS8eWoc8buSzNs" for 127.0.0.1 at 2019-10-13 15:04:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://langworth.org/val", "token"=>"fxP1HbXS8eWoc8buSzNs"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "25603f62cad1a14009bceed4e3176ab25f39ddd4ecdee3031084f253fb9b13d1"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-axbeGLE0a41AW5Bu4ZvBA\":{\"token\":\"$2a$10$FweU3ynJXCsnFOhP2.TX7eXtc/e2lYaxkvzoEvOo89gdl6Q3m7kpm\",\"expiry\":1572206660}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:20.236284"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://langworth.org/val?access-token=3vPqHwMIUx2AD63dfjdkFw&client=-axbeGLE0a41AW5Bu4ZvBA&client_id=-axbeGLE0a41AW5Bu4ZvBA&config=&expiry=1572206660&reset_password=true&token=3vPqHwMIUx2AD63dfjdkFw&uid=tanna_feeney%40grady.io Completed 302 Found in 48ms (ActiveRecord: 0.2ms | Allocations: 2472) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://franeckibrown.org/donnie\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1519)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"otis@parisian.biz\"\n name: \"Hobert Zieme\"\n password: \"T81gVxFu9T5y9\"\n passwordConfirmation: \"T81gVxFu9T5y9\"\n confirmSuccessUrl: \"http://prohaskadenesik.co/lekisha_wiegand\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "otis@parisian.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "otis@parisian.biz"], ["encrypted_password", "$2a$04$45LkNANnXssLWfUqePHyu.aoLumJFDJo5FKdilFbB75GOPQUsiKTe"], ["confirmation_token", "PHDx94-L5kZA_2hE_FMt"], ["confirmation_sent_at", "2019-10-13 20:04:20.248543"], ["name", "Hobert Zieme"], ["email", "otis@parisian.biz"], ["created_at", "2019-10-13 20:04:20.248478"], ["updated_at", "2019-10-13 20:04:20.248478"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.7ms | Allocations: 587) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.0ms Delivered mail 5da383443d900_d62d3fe0f103202048096@Marios-MacBook-Pro.local.mail (1.2ms) Date: Sun, 13 Oct 2019 15:04:20 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: otis@parisian.biz Message-ID: <5da383443d900_d62d3fe0f103202048096@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://prohaskadenesik.co/lekisha_wiegand

Welcome otis@parisian.biz!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5844)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fprohaskadenesik.co%2Flekisha_wiegand&variables%5Btoken%5D=PHDx94-L5kZA_2hE_FMt" for 127.0.0.1 at 2019-10-13 15:04:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://prohaskadenesik.co/lekisha_wiegand", "token"=>"PHDx94-L5kZA_2hE_FMt"}} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "PHDx94-L5kZA_2hE_FMt"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:04:20.261519"], ["updated_at", "2019-10-13 20:04:20.261842"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://prohaskadenesik.co/lekisha_wiegand?account_confirmation_success=true Completed 302 Found in 9ms (ActiveRecord: 0.7ms | Allocations: 2514) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Millicent Douglas II\"\n password: \"7FgGcQo59Zh\"\n passwordConfirmation: \"7FgGcQo59Zh\"\n confirmSuccessUrl: \"http://dooley.name/peter.bosco\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 3063)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "harris@dibbert.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "harris@dibbert.biz"], ["encrypted_password", "$2a$04$zNMtbubj8NIWA/F.BGxCvecTBa9.O/E9Z.aTZZl8pr2fzdcwWQw9C"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:20.281712"], ["name", "Sandy Banks"], ["email", "harris@dibbert.biz"], ["created_at", "2019-10-13 20:04:20.282701"], ["updated_at", "2019-10-13 20:04:20.282701"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"6F4HQAra1HfiES88y2dOpQ\":{\"token\":\"$2a$10$5VP8O8LSyQmUssONJQL4o.l8Bx9KxK0rfai/hVsogOED3k37XF//i\",\"expiry\":1572206660,\"updated_at\":\"2019-10-13 20:04:20 UTC\"}}"], ["updated_at", "2019-10-13 20:04:20.348187"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "harris@dibbert.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$qp7A8aIu5G69inweTugtL.Z5Hl6k11sZbkHzxcBqZfRWN.aYe8mim"], ["updated_at", "2019-10-13 20:04:20.401158"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:20.402299"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 3223) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "babara.mayer@batzveum.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "babara.mayer@batzveum.org"], ["encrypted_password", "$2a$04$4KnaBQGgiWsxYBAWfFuqPus9/s1d6Zp11SyibjM4287CpcTOJ5DbW"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:20.407890"], ["name", "Emerald Stone"], ["email", "babara.mayer@batzveum.org"], ["created_at", "2019-10-13 20:04:20.408630"], ["updated_at", "2019-10-13 20:04:20.408630"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"O-PbigYxooxyb-Rf-qoAzw\":{\"token\":\"$2a$10$Xb.hEWnG2tRx0X/rIcrdj.aKdrX4MRQz.eajv7p9mzieuEm1KSBvK\",\"expiry\":1572206660,\"updated_at\":\"2019-10-13 20:04:20 UTC\"}}"], ["updated_at", "2019-10-13 20:04:20.459391"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "babara.mayer@batzveum.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$bdakvjHhPCI1RzC7NVVZRe9vKsLXk9YC8Hvh/vl.jwl/ZOg4bVHam"], ["updated_at", "2019-10-13 20:04:20.514736"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:20.515982"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 3218) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "fredrick_harris@pfannerstill.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "fredrick_harris@pfannerstill.biz"], ["encrypted_password", "$2a$04$Ls5Xlu.emE4nA1YGsQk5Fu6SYFrGbpg5joOTV8Qul9HMiGJXn8ZHy"], ["confirmed_at", "2019-10-13 20:04:20.522849"], ["name", "Oscar Ruitt"], ["email", "fredrick_harris@pfannerstill.biz"], ["created_at", "2019-10-13 20:04:20.523929"], ["updated_at", "2019-10-13 20:04:20.523929"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"z_gXwNR3NosPvoD-tOz6fA\":{\"token\":\"$2a$10$jp5DezYk70/ccet8K4JA9.NZXyn4CJNN4C66Qbxc7FFxUl6WqoS9O\",\"expiry\":1572206660,\"updated_at\":\"2019-10-13 20:04:20 UTC\"}}"], ["updated_at", "2019-10-13 20:04:20.578612"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "fredrick_harris@pfannerstill.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2683) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "zenaida@reichel.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "zenaida@reichel.biz"], ["encrypted_password", "$2a$04$Op7ewDlQy.uKoMo8md04YeQTAgmWxARMv3NdiewWRsG0.pofuhKwy"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:20.635062"], ["name", "Ann Chovie"], ["email", "zenaida@reichel.biz"], ["created_at", "2019-10-13 20:04:20.636207"], ["updated_at", "2019-10-13 20:04:20.636207"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"6hfKJtdURi9xWccREzUSVQ\":{\"token\":\"$2a$10$5z7r2DLYPMcRPwKMF7uIhOj8a3K9dZY78m5UN6qx9lt3gRRH4bsdK\",\"expiry\":1572206660,\"updated_at\":\"2019-10-13 20:04:20 UTC\"}}"], ["updated_at", "2019-10-13 20:04:20.685410"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "zenaida@reichel.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$.fVsgc/ZFFmBgqkXQwDXB.G3B.5ksqrWG1sg.VtI5sUa7esLqDzSm"], ["updated_at", "2019-10-13 20:04:20.734676"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:20.735706"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 3215) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "phillip@franecki.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "phillip@franecki.io"], ["encrypted_password", "$2a$04$jL19T6M9rb/5jYh4R5RX9uCQLdPC39xb.EMYKZWSXh5bfi1UHH3wW"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:20.740905"], ["name", "Carrie Dababi"], ["email", "phillip@franecki.io"], ["created_at", "2019-10-13 20:04:20.742179"], ["updated_at", "2019-10-13 20:04:20.742179"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"_n-r0wcfAkBvlEV6zEtMOw\":{\"token\":\"$2a$10$Pm2I.ybKTf3pYTFRYYjjtevtpVDV4QBvPxm1Jdd66vqMPZ0iE7swC\",\"expiry\":1572206660,\"updated_at\":\"2019-10-13 20:04:20 UTC\"}}"], ["updated_at", "2019-10-13 20:04:20.792197"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "phillip@franecki.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$riDENLe9dMNL9hVMMBG.3upAYUUkmc44KfsF0/h/02t/z8C56E4J6"], ["updated_at", "2019-10-13 20:04:20.841430"], ["id", 1]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:20.842672"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 3215) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "pasty@williamsondickinson.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "pasty@williamsondickinson.name"], ["encrypted_password", "$2a$04$VGv1brOLuPSjVRw.DXs59u3BrhPtC2B1P.9wA.8eatq4PT3/UWwhq"], ["confirmed_at", "2019-10-13 20:04:20.849913"], ["name", "Pepe Roni"], ["email", "pasty@williamsondickinson.name"], ["created_at", "2019-10-13 20:04:20.850724"], ["updated_at", "2019-10-13 20:04:20.850724"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"pzXLTeorfNiQJvecWVf20g\":{\"token\":\"$2a$10$adnRSHN2gSMSDQhBEHHbde7CJnZaD1chKAHRkpLhoXF0mhIE0fU5u\",\"expiry\":1572206660,\"updated_at\":\"2019-10-13 20:04:20 UTC\"}}"], ["updated_at", "2019-10-13 20:04:20.896732"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "pasty@williamsondickinson.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$AxMUQlOSDAXne.7dBVPd3eZqQ7Nfnoh5UnpTG5JXvC.BiukZCxWTa"], ["updated_at", "2019-10-13 20:04:20.947147"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2984) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "samatha_hirthe@lind.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "samatha_hirthe@lind.org"], ["encrypted_password", "$2a$04$WD02JDNK5TStclmQtoZIjeF2USKpqbtt/W8EuSac47MuVAGFc21zC"], ["confirmed_at", "2019-10-13 20:04:20.953613"], ["name", "Gladys Eeya"], ["email", "samatha_hirthe@lind.org"], ["created_at", "2019-10-13 20:04:20.954373"], ["updated_at", "2019-10-13 20:04:20.954373"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1487) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jordan@schneider.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jordan@schneider.biz"], ["encrypted_password", "$2a$04$gzSxQYylIe56z1dFYrzPQu5BqbdKKVpHL4ua66nExmkCtr.Y2CdCi"], ["confirmed_at", "2019-10-13 20:04:20.963078"], ["name", "Phil Rupp"], ["email", "jordan@schneider.biz"], ["created_at", "2019-10-13 20:04:20.964794"], ["updated_at", "2019-10-13 20:04:20.964794"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "9b548ed8a1001411a5eb554cb682c99507998b5edc2ee97699243309509a0c62"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "9b548ed8a1001411a5eb554cb682c99507998b5edc2ee97699243309509a0c62"], ["reset_password_sent_at", "2019-10-13 20:04:20.966535"], ["updated_at", "2019-10-13 20:04:20.966658"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22_kFp-Fp_3FxRMUW2Y6Hc%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"_kFp-Fp_3FxRMUW2Y6Hc\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "9b548ed8a1001411a5eb554cb682c99507998b5edc2ee97699243309509a0c62"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"R2gijDPgV9xD-JZQKMHpnA\":{\"token\":\"$2a$10$aHFyVELsyLEQOBDWqWy.CuzYYDOULuriY9FYsMp6b3G1NZz14Y7Je\",\"expiry\":1572206661}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:21.023791"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"R2gijDPgV9xD-JZQKMHpnA\":{\"token\":\"$2a$10$aHFyVELsyLEQOBDWqWy.CuzYYDOULuriY9FYsMp6b3G1NZz14Y7Je\",\"expiry\":1572206661},\"ZElWSTXZvOYThY5RMzQ0xg\":{\"token\":\"$2a$10$izKx6KJk29Z9Q2FoGzB6GOjrsxJT8g0D3nuqo.2g5fsTfV.EpuBCe\",\"expiry\":1572206661,\"updated_at\":\"2019-10-13 20:04:21 UTC\"}}"], ["updated_at", "2019-10-13 20:04:21.068444"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 101ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2969)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "juli@mohrmclaughlin.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "juli@mohrmclaughlin.com"], ["encrypted_password", "$2a$04$33v5MsPfl205VMbbgWIIH.99KaVj0CFg3uR1OwMWdOgcvXc.XHtim"], ["confirmed_at", "2019-10-13 20:04:21.073001"], ["name", "Moe Skeeto"], ["email", "juli@mohrmclaughlin.com"], ["created_at", "2019-10-13 20:04:21.073804"], ["updated_at", "2019-10-13 20:04:21.073804"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "974b0cc72f8435da5b7e2a19f4a286601385e91824b134f501d42621c71c5dbc"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "974b0cc72f8435da5b7e2a19f4a286601385e91824b134f501d42621c71c5dbc"], ["reset_password_sent_at", "2019-10-13 20:04:21.076141"], ["updated_at", "2019-10-13 20:04:21.076438"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22kwBFbvyToksYN-_W-Sbs%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"kwBFbvyToksYN-_W-Sbs\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "974b0cc72f8435da5b7e2a19f4a286601385e91824b134f501d42621c71c5dbc"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"niBrQZ5JjCn5pJklR4eddQ\":{\"token\":\"$2a$10$v.I9/.GY6JUPDl9.wr8FeOO7IXvqAg/EgCOcyNvBpBA3/fe7uo6Na\",\"expiry\":1572206661}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:21.132201"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=wqTxm74Oe34V5r6nTingiA&client=niBrQZ5JjCn5pJklR4eddQ&client_id=niBrQZ5JjCn5pJklR4eddQ&config=&expiry=1572206661&reset_password=true&token=wqTxm74Oe34V5r6nTingiA&uid=juli%40mohrmclaughlin.com Completed 302 Found in 53ms (ActiveRecord: 0.3ms | Allocations: 2231) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sherlyn@hoppe.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sherlyn@hoppe.org"], ["encrypted_password", "$2a$04$rquSkj3lc6FGKXS3nJRVieVNo7/T91riAZfbcM7ZKg2yICHyMkEU."], ["confirmed_at", "2019-10-13 10:04:21"], ["name", "Rick Shaw"], ["email", "sherlyn@hoppe.org"], ["created_at", "2019-10-13 10:04:21"], ["updated_at", "2019-10-13 10:04:21"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d3cb72b8fed79b74e3a11024bfee0de814be9168d49846efe013b31234eb2990"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "d3cb72b8fed79b74e3a11024bfee0de814be9168d49846efe013b31234eb2990"], ["reset_password_sent_at", "2019-10-13 10:04:21"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22oZd8UaHhpJYQ_d_y9Yxg%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"oZd8UaHhpJYQ_d_y9Yxg\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d3cb72b8fed79b74e3a11024bfee0de814be9168d49846efe013b31234eb2990"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 1572)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "matilde_greenfelder@howellmayer.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "matilde_greenfelder@howellmayer.biz"], ["encrypted_password", "$2a$04$AxCzDe9uijl4ff57FxXrGuoCm437N/gjYgSAAYKg/lqOeyMNQTRyW"], ["confirmed_at", "2019-10-13 20:04:21.150879"], ["name", "Hein Noon"], ["email", "matilde_greenfelder@howellmayer.biz"], ["created_at", "2019-10-13 20:04:21.151835"], ["updated_at", "2019-10-13 20:04:21.151835"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0058aac6c88e77fe0d69cf8880b43bb0f2fd92e58de89aa849a4c16ded587ae3"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "0058aac6c88e77fe0d69cf8880b43bb0f2fd92e58de89aa849a4c16ded587ae3"], ["reset_password_sent_at", "2019-10-13 20:04:21.153474"], ["updated_at", "2019-10-13 20:04:21.153634"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%229x-NmfByZXXhNpx5xSJLinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"9x-NmfByZXXhNpx5xSJLinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "95c2ea1b91611aa34c86c7046bc3e83edbf5233b7dffc80fd634f07341a2d059"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1530)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lise@parker.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lise@parker.co"], ["encrypted_password", "$2a$04$IOziI8lwlZdNTX2kOCR4WuWpweATbGt9Rqj/LPnyxVPsivu6CJDaa"], ["confirmation_token", "fz--_XeW7DGbsWkxEVLC"], ["confirmation_sent_at", "2019-10-13 20:04:21.163264"], ["name", "Ben Thair"], ["email", "lise@parker.co"], ["created_at", "2019-10-13 20:04:21.163172"], ["updated_at", "2019-10-13 20:04:21.163172"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.5ms | Allocations: 413) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.4ms Delivered mail 5da3834528ab6_d62d3fe0f103202048170@Marios-MacBook-Pro.local.mail (1.7ms) Date: Sun, 13 Oct 2019 15:04:21 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: lise@parker.co Message-ID: <5da3834528ab6_d62d3fe0f103202048170@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome lise@parker.co!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22fz--_XeW7DGbsWkxEVLC%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fkiehn.io%2Fcarolynn%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"fz--_XeW7DGbsWkxEVLC\"\n redirectUrl: \"http://kiehn.io/carolynn\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "fz--_XeW7DGbsWkxEVLC"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:04:21.173091"], ["updated_at", "2019-10-13 20:04:21.173382"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://kiehn.io/carolynn?account_confirmation_success=true Completed 302 Found in 5ms (ActiveRecord: 0.4ms | Allocations: 2115) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hector@rath.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hector@rath.biz"], ["encrypted_password", "$2a$04$2o5XCNwIMFkQOnd80wpCI.L5q/Da1zM/sDChSn7ZvRhD5MF78wb/m"], ["confirmation_token", "xQu_g2Q7uVQgYk5Gy1K9"], ["confirmation_sent_at", "2019-10-13 20:04:21.180962"], ["name", "Zoltan Pepper"], ["email", "hector@rath.biz"], ["created_at", "2019-10-13 20:04:21.180852"], ["updated_at", "2019-10-13 20:04:21.180852"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22xQu_g2Q7uVQgYk5Gy1K9-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fking.co%2Fshaquita%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"xQu_g2Q7uVQgYk5Gy1K9-invalid\"\n redirectUrl: \"http://king.co/shaquita\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "xQu_g2Q7uVQgYk5Gy1K9-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "c7752c6a62e9d9f5fe47f4e1a4712bd1fb549af23c43d15d68d41a86856559f0"], ["LIMIT", 1]] Completed 200 OK in 94ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2326) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "traci_bosco@conn.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "traci_bosco@conn.com"], ["encrypted_password", "$2a$04$f2CJiDPNjpFHDRXMV4tiaOPfunPmHBqTqMB4nUUQzVqv/Kb0oZdl2"], ["confirmed_at", "2019-10-13 20:04:21.283515"], ["name", "Hugo First"], ["email", "traci_bosco@conn.com"], ["created_at", "2019-10-13 20:04:21.284267"], ["updated_at", "2019-10-13 20:04:21.284267"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"SbD5szy6QAiPWWteoE1Jjw\":{\"token\":\"$2a$10$kvr3tU/8O2C/fSa1aoqhgudhTexevRv5tvtXZJiWkcssu6D.o0osW\",\"expiry\":1572206661,\"updated_at\":\"2019-10-13 20:04:21 UTC\"}}"], ["updated_at", "2019-10-13 20:04:21.331343"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:04:21 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "traci_bosco@conn.com"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 66ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 11830)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kena@dickens.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kena@dickens.io"], ["encrypted_password", "$2a$04$KyezNphah9u3sqrT.3Z0TOdUgs8.n8VU0GG33zsk1xdDm9vF7JSFO"], ["confirmed_at", "2019-10-13 20:04:21.405982"], ["name", "May O'Nays"], ["email", "kena@dickens.io"], ["created_at", "2019-10-13 20:04:21.406868"], ["updated_at", "2019-10-13 20:04:21.406868"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:04:21 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.5ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "pam@zemlak.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "pam@zemlak.io"], ["encrypted_password", "$2a$04$ZQaI75fuJTI12yJqdPQR/uCfur.3WaF.1ReG7ri3sxkKOdJHOkwu."], ["confirmed_at", "2019-10-13 20:04:24.263974"], ["name", "P. Brain"], ["email", "pam@zemlak.io"], ["created_at", "2019-10-13 20:04:24.265215"], ["updated_at", "2019-10-13 20:04:24.265215"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"pam@zemlak.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "pam@zemlak.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"WmVfb5f3bOeu78XP7g2Vcw\":{\"token\":\"$2a$10$IwrcGD3cpcd/mWeh8FZVGO0gA3oPxPPWmjiX0PK0TSUsmjPnqpn/W\",\"expiry\":1572206664,\"updated_at\":\"2019-10-13 20:04:24 UTC\"}}"], ["updated_at", "2019-10-13 20:04:24.339031"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 20:04:24.342904"], ["last_sign_in_at", "2019-10-13 20:04:24.342904"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 20:04:24.343246"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 67ms (Views: 0.2ms | ActiveRecord: 0.7ms | Allocations: 18368) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hermine.corkery@ziemannbauch.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hermine.corkery@ziemannbauch.co"], ["encrypted_password", "$2a$04$vZEWsJyNXLCYmuMcWwlBAe49ebsO8qSyyAa4aaZAbY2gU1.MRPIRm"], ["confirmed_at", "2019-10-13 20:04:24.352174"], ["name", "Wanda Rinn"], ["email", "hermine.corkery@ziemannbauch.co"], ["created_at", "2019-10-13 20:04:24.353033"], ["updated_at", "2019-10-13 20:04:24.353033"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"hermine.corkery@ziemannbauch.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hermine.corkery@ziemannbauch.co"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2044)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sonja@torphy.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sonja@torphy.io"], ["encrypted_password", "$2a$04$1OZb7YfpSJGz2iLtB.k4BOLS44rTbpvNBKF38oUd6v2xtltb8Xh7a"], ["confirmation_token", "jz4fu8hNxDxwE3twbfqN"], ["confirmation_sent_at", "2019-10-13 20:04:24.363321"], ["name", "Zoltan Pepper"], ["email", "sonja@torphy.io"], ["created_at", "2019-10-13 20:04:24.363241"], ["updated_at", "2019-10-13 20:04:24.363241"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sonja@torphy.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sonja@torphy.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1362)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sherell.vonrueden@bosco.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sherell.vonrueden@bosco.com"], ["encrypted_password", "$2a$04$4xXX3Pz3G3zb9/WF7qIaseml48DXAViGPb6EblCmiJPDhWOVME37e"], ["confirmed_at", "2019-10-13 20:04:24.370755"], ["locked_at", "2019-10-13 20:04:24.370789"], ["name", "Tommy Gunn"], ["email", "sherell.vonrueden@bosco.com"], ["created_at", "2019-10-13 20:04:24.372410"], ["updated_at", "2019-10-13 20:04:24.372410"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sherell.vonrueden@bosco.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sherell.vonrueden@bosco.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clifford_hahn@ritchie.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "clifford_hahn@ritchie.com"], ["encrypted_password", "$2a$04$cfNDQ5IB8DdT7L6ED4R6Ae1bCUVUWYe7NxcE5jbDjL8OIp7wc3MFm"], ["confirmed_at", "2019-10-13 20:04:24.383243"], ["name", "Cole Kutz"], ["email", "clifford_hahn@ritchie.com"], ["created_at", "2019-10-13 20:04:24.384844"], ["updated_at", "2019-10-13 20:04:24.384844"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"clifford_hahn@ritchie.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "clifford_hahn@ritchie.com"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 1359)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "sofia@hilll.io"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "sofia@hilll.io"], ["encrypted_password", "$2a$04$yC9u1M1QY4sCHPd8c/7uHOW.vx3HvZ9ZH3Ylf/iPZkla9P.iwoGt2"], ["confirmed_at", "2019-10-13 20:04:24.411804"], ["email", "sofia@hilll.io"], ["created_at", "2019-10-13 20:04:24.413596"], ["updated_at", "2019-10-13 20:04:24.413596"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"sofia@hilll.io\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "sofia@hilll.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"08TkfV4f8l3DqPog-LlHtg\":{\"token\":\"$2a$10$gA1onGRdib4O3Gc2iUTcy.67S1DsHsb9HmBBi76uZ9lfwp83WAAP6\",\"expiry\":1572206664,\"updated_at\":\"2019-10-13 20:04:24 UTC\"}}"], ["updated_at", "2019-10-13 20:04:24.474977"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2401)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alfreda@welchfriesen.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alfreda@welchfriesen.name"], ["encrypted_password", "$2a$04$pI/8SceLipcdjCgukXJ1pejeU..eNiIkTfqw7Jj2e/MNsXLwPtQFS"], ["confirmed_at", "2019-10-13 20:04:24.480031"], ["name", "Tanya Hyde"], ["email", "alfreda@welchfriesen.name"], ["created_at", "2019-10-13 20:04:24.480889"], ["updated_at", "2019-10-13 20:04:24.480889"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gBadrKig5crWWYXGa5mA-g\":{\"token\":\"$2a$10$yQuYTEZb1zAkfmJIycZkpeoy8pjyVJpOb1zErvDPXuWpowWykG6Z6\",\"expiry\":1572206664,\"updated_at\":\"2019-10-13 20:04:24 UTC\"}}"], ["updated_at", "2019-10-13 20:04:24.533156"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "alfreda@welchfriesen.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:04:24.581024"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1898) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "margarete_toy@considineemard.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "margarete_toy@considineemard.com"], ["encrypted_password", "$2a$04$4RTFl3Uv/q5pEfNrGHtsIeE2pX4sly3rPOKVH8mvSoAjWuzP8wTdu"], ["confirmed_at", "2019-10-13 20:04:24.591070"], ["name", "Anna Conda"], ["email", "margarete_toy@considineemard.com"], ["created_at", "2019-10-13 20:04:24.592661"], ["updated_at", "2019-10-13 20:04:24.592661"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "toby_simonis@kirlin.com"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "toby_simonis@kirlin.com"], ["encrypted_password", "$2a$04$bum/JP.J4zT.Aqc30gCozeMLPCqTJ5HrLmrLIUXzqjRIoFWMC/7KW"], ["confirmed_at", "2019-10-13 20:04:24.597094"], ["email", "toby_simonis@kirlin.com"], ["created_at", "2019-10-13 20:04:24.598429"], ["updated_at", "2019-10-13 20:04:24.598429"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"SvfR_rK8SCE5PBJ1dUyipQ\":{\"token\":\"$2a$10$2bGBMrLhCCl07UX//ojPXu90VR3aZomx/T3ofsEce7VY4anioWc2.\",\"expiry\":1572206664,\"updated_at\":\"2019-10-13 20:04:24 UTC\"}}"], ["updated_at", "2019-10-13 20:04:24.655292"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "toby_simonis@kirlin.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:04:24.702103"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 46ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 1825) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "giovanni.klein@cainkris.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "giovanni.klein@cainkris.com"], ["encrypted_password", "$2a$04$oYiuwND/H4cypEjREDuw2OnPYvFB16ooBMxtxy8pEQK2TQm8jg54O"], ["confirmed_at", "2019-10-13 20:04:24.711487"], ["name", "Chi Spurger"], ["email", "giovanni.klein@cainkris.com"], ["created_at", "2019-10-13 20:04:24.713374"], ["updated_at", "2019-10-13 20:04:24.713374"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"giovanni.klein@cainkris.com\",\n redirectUrl: \"http://ondricka.io/arcelia\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "giovanni.klein@cainkris.com"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a5a5a1847c57846a26ff1692ffa1c7930b8e2485ea5885e94dcf098944d31306"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "a5a5a1847c57846a26ff1692ffa1c7930b8e2485ea5885e94dcf098944d31306"], ["reset_password_sent_at", "2019-10-13 20:04:24.797870"], ["updated_at", "2019-10-13 20:04:24.798036"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 2.0ms | Allocations: 1295) Devise::Mailer#reset_password_instructions: processed outbound mail in 131.9ms Delivered mail 5da38348e3d28_d6473feabd42ffd03295a@Marios-MacBook-Pro.local.mail (4.2ms) Date: Sun, 13 Oct 2019 15:04:24 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: giovanni.klein@cainkris.com Message-ID: <5da38348e3d28_d6473feabd42ffd03295a@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: giovanni.klein@cainkris.com provider: email redirect-url: http://ondricka.io/arcelia client-config: default

Hello giovanni.klein@cainkris.com!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 220ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 67772) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fondricka.io%2Farcelia&variables%5Btoken%5D=Jj-2Eh9a9qFjAkweyYm2" for 127.0.0.1 at 2019-10-13 15:04:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://ondricka.io/arcelia", "token"=>"Jj-2Eh9a9qFjAkweyYm2"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a5a5a1847c57846a26ff1692ffa1c7930b8e2485ea5885e94dcf098944d31306"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZfWcE3pHj7W8g_UEureWbg\":{\"token\":\"$2a$10$e5PQHrjE6A3hFIcdfEpc/udBpFEjkluVS6w5bOCggtrfnqghUMVkW\",\"expiry\":1572206664}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:24.982575"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://ondricka.io/arcelia?access-token=OCMROj-_Yi7V62OJHZ6wcA&client=ZfWcE3pHj7W8g_UEureWbg&client_id=ZfWcE3pHj7W8g_UEureWbg&config=&expiry=1572206664&reset_password=true&token=OCMROj-_Yi7V62OJHZ6wcA&uid=giovanni.klein%40cainkris.com Completed 302 Found in 46ms (ActiveRecord: 0.2ms | Allocations: 2147) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://vonrueden.name/carly_simonis\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:24 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"ilana@mosciski.name\"\n name: \"Ocie Hills\"\n password: \"ZfQiKuWhDb\"\n passwordConfirmation: \"ZfQiKuWhDb\"\n confirmSuccessUrl: \"http://cummings.co/many_king\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ilana@mosciski.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ilana@mosciski.name"], ["encrypted_password", "$2a$04$7Xu2wDsU0nngQfnFwb8P/OLWukDIeMn/S0g9slb9Ty2iVt7F9.82e"], ["confirmation_token", "7XuUU5g1zjZ9KQB34mQy"], ["confirmation_sent_at", "2019-10-13 20:04:24.998446"], ["name", "Ocie Hills"], ["email", "ilana@mosciski.name"], ["created_at", "2019-10-13 20:04:24.998376"], ["updated_at", "2019-10-13 20:04:24.998376"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.7ms | Allocations: 587) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.8ms Delivered mail 5da3834970f_d6473feabd42ffd033011@Marios-MacBook-Pro.local.mail (1.1ms) Date: Sun, 13 Oct 2019 15:04:25 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: ilana@mosciski.name Message-ID: <5da3834970f_d6473feabd42ffd033011@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://cummings.co/many_king

Welcome ilana@mosciski.name!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5464)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fcummings.co%2Fmany_king&variables%5Btoken%5D=7XuUU5g1zjZ9KQB34mQy" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://cummings.co/many_king", "token"=>"7XuUU5g1zjZ9KQB34mQy"}} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "7XuUU5g1zjZ9KQB34mQy"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:04:25.010460"], ["updated_at", "2019-10-13 20:04:25.010747"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://cummings.co/many_king?account_confirmation_success=true Completed 302 Found in 7ms (ActiveRecord: 0.6ms | Allocations: 2178) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Daine Murray Jr.\"\n password: \"R2iSkXaWhPcGo\"\n passwordConfirmation: \"R2iSkXaWhPcGo\"\n confirmSuccessUrl: \"http://wittingschoen.biz/mariko\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.4ms | Allocations: 2710)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "claudette.kaulke@hauck.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "claudette.kaulke@hauck.net"], ["encrypted_password", "$2a$04$STkNDpTrmAp.gy3kqwQ5f.KPPf4PDTylDvQeohUgo3N7mphdf5M9K"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:25.034457"], ["name", "Corey Ander"], ["email", "claudette.kaulke@hauck.net"], ["created_at", "2019-10-13 20:04:25.035566"], ["updated_at", "2019-10-13 20:04:25.035566"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jcYT10ywdOfP2GclHkASmw\":{\"token\":\"$2a$10$MTlvtC4a/qxpoottjg92M.xdP4ftLSokbqiY3v6.q12nlfRDvjQUC\",\"expiry\":1572206665,\"updated_at\":\"2019-10-13 20:04:25 UTC\"}}"], ["updated_at", "2019-10-13 20:04:25.094148"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "claudette.kaulke@hauck.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Zprar5Z7IEluRg/jU0ORJ.9A2NtVfRRm4fjxYcjpc8jQvJ1N8UGQW"], ["updated_at", "2019-10-13 20:04:25.144785"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:25.145867"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2885) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "annalee.jast@daugherty.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "annalee.jast@daugherty.co"], ["encrypted_password", "$2a$04$SI.F2.1BWU3MWmdpeM9dJ.lPrSzR8mJA5kPUwJjciumoobqmzMFzu"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:25.151784"], ["name", "Marj Oram"], ["email", "annalee.jast@daugherty.co"], ["created_at", "2019-10-13 20:04:25.152648"], ["updated_at", "2019-10-13 20:04:25.152648"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EbwgMMghc-s2EilLKQdE6w\":{\"token\":\"$2a$10$sfh73XHx0u5KSOw0.UoxGedMdX0PLOTA6Bswl/2WJQM.yBlEPvkJm\",\"expiry\":1572206665,\"updated_at\":\"2019-10-13 20:04:25 UTC\"}}"], ["updated_at", "2019-10-13 20:04:25.202806"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "annalee.jast@daugherty.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$fdeO/smfcPENhj0QNYANNODiytkf3hDrprYZOgZlUZgwYl1uMNUUu"], ["updated_at", "2019-10-13 20:04:25.251930"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:25.252982"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "janett.veum@hansenrunolfsdottir.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "janett.veum@hansenrunolfsdottir.biz"], ["encrypted_password", "$2a$04$b9SPgh4E5g0H/e9XLYfokOJDJrNesl/JANX4OAO603uW0H2.7J5pa"], ["confirmed_at", "2019-10-13 20:04:25.260019"], ["name", "Sandy Beech"], ["email", "janett.veum@hansenrunolfsdottir.biz"], ["created_at", "2019-10-13 20:04:25.261015"], ["updated_at", "2019-10-13 20:04:25.261015"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9pYskN6JWC0-kmYlZljl_w\":{\"token\":\"$2a$10$Bix1o5IWhKcCD/cYtZlg2ehRwug.IKOOwmb6RmWbbDaGZhtgwaabu\",\"expiry\":1572206665,\"updated_at\":\"2019-10-13 20:04:25 UTC\"}}"], ["updated_at", "2019-10-13 20:04:25.308395"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "janett.veum@hansenrunolfsdottir.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2360) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "millard.nader@quigleydickens.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "millard.nader@quigleydickens.info"], ["encrypted_password", "$2a$04$EYtReS8o/4oT06q3LUt/v.mOK/AAQMUeRgznjaou669pdGGTZyDAi"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:25.370257"], ["name", "Ben Lyon"], ["email", "millard.nader@quigleydickens.info"], ["created_at", "2019-10-13 20:04:25.371434"], ["updated_at", "2019-10-13 20:04:25.371434"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Q1Ur5NMrU1W0FMxgW-MY-Q\":{\"token\":\"$2a$10$KI./WPBMdLoeoqDma.hCjOZvkFxGlbARt5Ia7TNNeBBNtU9cGQmb2\",\"expiry\":1572206665,\"updated_at\":\"2019-10-13 20:04:25 UTC\"}}"], ["updated_at", "2019-10-13 20:04:25.425928"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "millard.nader@quigleydickens.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$5LFB9w6saWShwtanbcAo6ecG6TK.LwQAz5uN9IyE4GyNV7XB0Rmya"], ["updated_at", "2019-10-13 20:04:25.475321"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:25.476863"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.3ms | ActiveRecord: 0.4ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "long@schummokon.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "long@schummokon.info"], ["encrypted_password", "$2a$04$udY8YADKyrHfRunrs6fUYuXhFYEizKPENH0MCE.o6sGvYQxfNX9uu"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:25.483536"], ["name", "Cody Pendant"], ["email", "long@schummokon.info"], ["created_at", "2019-10-13 20:04:25.484716"], ["updated_at", "2019-10-13 20:04:25.484716"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"uluELUgumh8QPpBswIEpMQ\":{\"token\":\"$2a$10$4JTTisbRrRyh2S2208FOwON.ha.IzFxFjNQUGbOgrabn/YjfC.H0G\",\"expiry\":1572206665,\"updated_at\":\"2019-10-13 20:04:25 UTC\"}}"], ["updated_at", "2019-10-13 20:04:25.537497"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "long@schummokon.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.5ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$6.hkixVtVZt7e/7Gg3lyle1uwl35JRq3nLrJskqylDX/74nlhelyK"], ["updated_at", "2019-10-13 20:04:25.593042"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:25.594916"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 1.0ms | Allocations: 2874) User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bernardina_satterfield@kreigerwalter.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bernardina_satterfield@kreigerwalter.io"], ["encrypted_password", "$2a$04$CYV0v2v485uOk15OZvou/eE1JBluLjuaWyLAJ/9rOdgt7L7C6CLCS"], ["confirmed_at", "2019-10-13 20:04:25.602989"], ["name", "Ford Parker"], ["email", "bernardina_satterfield@kreigerwalter.io"], ["created_at", "2019-10-13 20:04:25.604342"], ["updated_at", "2019-10-13 20:04:25.604342"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-ngqp-OoZg0JqZucmv2vWw\":{\"token\":\"$2a$10$Pp24FT346EHRm7LcysbQkuI9zzeRvF6S/9m6wqb.lxxv2ugLCZgm6\",\"expiry\":1572206665,\"updated_at\":\"2019-10-13 20:04:25 UTC\"}}"], ["updated_at", "2019-10-13 20:04:25.661208"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "bernardina_satterfield@kreigerwalter.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$bV64e2Iu7pdWlg0MF3xkQuaIY99wkBEvuxMXIyNpLyxEGqFl1yFHG"], ["updated_at", "2019-10-13 20:04:25.717279"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2643) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "garrett_nicolas@mohr.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "garrett_nicolas@mohr.info"], ["encrypted_password", "$2a$04$9OonYHCRSi59ETF2rTQc5OsjHI2NFv6pPVlwH2LpxMmEzGmeBG0ma"], ["confirmed_at", "2019-10-13 20:04:25.726507"], ["name", "Marshall Law"], ["email", "garrett_nicolas@mohr.info"], ["created_at", "2019-10-13 20:04:25.727892"], ["updated_at", "2019-10-13 20:04:25.727892"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.2ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hal.gulgowski@emardschimmel.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hal.gulgowski@emardschimmel.co"], ["encrypted_password", "$2a$04$HIvBAGJ8EaWDlDMJ.2pSBuwga01r8ox07u8exr3MVoKMnotPoyE0e"], ["confirmed_at", "2019-10-13 20:04:25.736455"], ["name", "Sheri Cola"], ["email", "hal.gulgowski@emardschimmel.co"], ["created_at", "2019-10-13 20:04:25.737390"], ["updated_at", "2019-10-13 20:04:25.737390"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "71b69f4e60124247febadd842b3912a15bca597b287d4b4906729fda87cef5f9"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "71b69f4e60124247febadd842b3912a15bca597b287d4b4906729fda87cef5f9"], ["reset_password_sent_at", "2019-10-13 20:04:25.740062"], ["updated_at", "2019-10-13 20:04:25.740314"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22KADpKzKDPCUdMy7gV2dT%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"KADpKzKDPCUdMy7gV2dT\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "71b69f4e60124247febadd842b3912a15bca597b287d4b4906729fda87cef5f9"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0bVSNUL5RN1LS1YzmmjJyg\":{\"token\":\"$2a$10$QHwTs8LDr.Sg/is/YbVwyugm2gEuWfb9JbwNz6HcS7REB0ESclw6q\",\"expiry\":1572206665}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:25.802616"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0bVSNUL5RN1LS1YzmmjJyg\":{\"token\":\"$2a$10$QHwTs8LDr.Sg/is/YbVwyugm2gEuWfb9JbwNz6HcS7REB0ESclw6q\",\"expiry\":1572206665},\"Bzi_WFxfnnc2eRFwEOJ1iA\":{\"token\":\"$2a$10$IwVPCB4N5hS2zW/LUG2Ye.ffaL61C2l3gvs87p/0znw0vP2HPyyRG\",\"expiry\":1572206665,\"updated_at\":\"2019-10-13 20:04:25 UTC\"}}"], ["updated_at", "2019-10-13 20:04:25.849310"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 106ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 2656)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "darrin_steuber@bosco.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "darrin_steuber@bosco.net"], ["encrypted_password", "$2a$04$M8shimwFm13fUDVdKtgAsuDmhj1vBOWkT4DyW6cj8MTYeQ0w30y/G"], ["confirmed_at", "2019-10-13 20:04:25.854121"], ["name", "Val Veeta"], ["email", "darrin_steuber@bosco.net"], ["created_at", "2019-10-13 20:04:25.856352"], ["updated_at", "2019-10-13 20:04:25.856352"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "644a3e9e4765b8100246a9e62a15f96699c1e24b42f47d8dea9bfe188b436bba"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "644a3e9e4765b8100246a9e62a15f96699c1e24b42f47d8dea9bfe188b436bba"], ["reset_password_sent_at", "2019-10-13 20:04:25.860062"], ["updated_at", "2019-10-13 20:04:25.860341"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%228xsQ16rReRjA24TK6YWR%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"8xsQ16rReRjA24TK6YWR\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "644a3e9e4765b8100246a9e62a15f96699c1e24b42f47d8dea9bfe188b436bba"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"idLJbXhNgBRVhmmdQeUBvg\":{\"token\":\"$2a$10$sLBtwN4/ni4VkPp9/baMzO8pauHoAnQEYA4w2sp85K5mHSGJmWzPC\",\"expiry\":1572206665}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:25.918683"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=TYhmlhkyyK51d8USmvEPIg&client=idLJbXhNgBRVhmmdQeUBvg&client_id=idLJbXhNgBRVhmmdQeUBvg&config=&expiry=1572206665&reset_password=true&token=TYhmlhkyyK51d8USmvEPIg&uid=darrin_steuber%40bosco.net Completed 302 Found in 57ms (ActiveRecord: 0.3ms | Allocations: 1918) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wesley.tillman@abbottwiza.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "wesley.tillman@abbottwiza.info"], ["encrypted_password", "$2a$04$PWXTQYHeeO40bjRas5Md/.SUUMPagIBaTLl3.4Cx9XHhu0bpuvpCS"], ["confirmed_at", "2019-10-13 10:04:25"], ["name", "Minnie Skurt"], ["email", "wesley.tillman@abbottwiza.info"], ["created_at", "2019-10-13 10:04:25"], ["updated_at", "2019-10-13 10:04:25"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4088c4cb61c7a4e4eddf5d5d6be9af1bc79e80b5194c3e6514c11cde36feffd3"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "4088c4cb61c7a4e4eddf5d5d6be9af1bc79e80b5194c3e6514c11cde36feffd3"], ["reset_password_sent_at", "2019-10-13 10:04:25"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%221EomyvviBSfv8mP6vPQX%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"1EomyvviBSfv8mP6vPQX\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4088c4cb61c7a4e4eddf5d5d6be9af1bc79e80b5194c3e6514c11cde36feffd3"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1266)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hal_emard@christiansen.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hal_emard@christiansen.net"], ["encrypted_password", "$2a$04$vYP34SaS6gVod3z8LeUp2.IFgbBegEOLozEVCCkA6OvEot0bCvS3e"], ["confirmed_at", "2019-10-13 20:04:25.938828"], ["name", "Rita Booke"], ["email", "hal_emard@christiansen.net"], ["created_at", "2019-10-13 20:04:25.940274"], ["updated_at", "2019-10-13 20:04:25.940274"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "251fea044ecfa26f3c0a4c669cba966fcbaa71926b3bb50036f7bff6e241e88d"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "251fea044ecfa26f3c0a4c669cba966fcbaa71926b3bb50036f7bff6e241e88d"], ["reset_password_sent_at", "2019-10-13 20:04:25.942989"], ["updated_at", "2019-10-13 20:04:25.943199"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%225yayvA3pVZyJcbs-Cuzwinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"5yayvA3pVZyJcbs-Cuzwinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2f9a8b324297ed00def2dc64fdc75467dba8d3b4a99ce62557e062a715e014aa"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lesli_connelly@kihn.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lesli_connelly@kihn.org"], ["encrypted_password", "$2a$04$cZi.SO.AenDmEfWXroJkde7Wrx1550hyN60OH54xVANppbJosyPly"], ["confirmation_token", "RmTaDeBT7PJhsyjgUX4R"], ["confirmation_sent_at", "2019-10-13 20:04:25.954878"], ["name", "Tina See"], ["email", "lesli_connelly@kihn.org"], ["created_at", "2019-10-13 20:04:25.954760"], ["updated_at", "2019-10-13 20:04:25.954760"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.9ms | Allocations: 414) Devise::Mailer#confirmation_instructions: processed outbound mail in 3.1ms Delivered mail 5da38349ea885_d6473feabd42ffd0331d0@Marios-MacBook-Pro.local.mail (2.2ms) Date: Sun, 13 Oct 2019 15:04:25 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: lesli_connelly@kihn.org Message-ID: <5da38349ea885_d6473feabd42ffd0331d0@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome lesli_connelly@kihn.org!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22RmTaDeBT7PJhsyjgUX4R%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Flindschmitt.com%2Ffermina_skiles%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"RmTaDeBT7PJhsyjgUX4R\"\n redirectUrl: \"http://lindschmitt.com/fermina_skiles\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "RmTaDeBT7PJhsyjgUX4R"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:04:25.967691"], ["updated_at", "2019-10-13 20:04:25.967906"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://lindschmitt.com/fermina_skiles?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms | Allocations: 1789) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "roselee.senger@schaefer.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "roselee.senger@schaefer.biz"], ["encrypted_password", "$2a$04$sbT4l6pV/wB3VMJHNZv1R.1Ume1X7N7H8UO3g02PN1CCS9gUGki3K"], ["confirmation_token", "TzBqHT1J4TMPye-6zJxF"], ["confirmation_sent_at", "2019-10-13 20:04:25.976325"], ["name", "Tim Burr"], ["email", "roselee.senger@schaefer.biz"], ["created_at", "2019-10-13 20:04:25.976210"], ["updated_at", "2019-10-13 20:04:25.976210"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22TzBqHT1J4TMPye-6zJxF-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fwunsch.biz%2Fisrael%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"TzBqHT1J4TMPye-6zJxF-invalid\"\n redirectUrl: \"http://wunsch.biz/israel\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "TzBqHT1J4TMPye-6zJxF-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "37b5f20b8eb014b52da09f52d615a83fe169fd20eb327e2641711d6eca8cd57a"], ["LIMIT", 1]] Completed 200 OK in 95ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2009) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rosella@kreiger.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rosella@kreiger.io"], ["encrypted_password", "$2a$04$hksjjg/0.REXjCaH7qw7DOoJlzb2.3o221yQnakz34C6L0ELbJ/3u"], ["confirmed_at", "2019-10-13 20:04:26.078602"], ["name", "Annie Moore"], ["email", "rosella@kreiger.io"], ["created_at", "2019-10-13 20:04:26.079467"], ["updated_at", "2019-10-13 20:04:26.079467"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"4r8hIyRjeIEbmd08zcV4DQ\":{\"token\":\"$2a$10$hROsQaKfYrjsNC3B43fe1u8k9pemJZEDPK4o8u.jq2xkKHmSubyO6\",\"expiry\":1572206666,\"updated_at\":\"2019-10-13 20:04:26 UTC\"}}"], ["updated_at", "2019-10-13 20:04:26.133793"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:04:26 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "rosella@kreiger.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 9732)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "holley.bednar@lehner.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "holley.bednar@lehner.net"], ["encrypted_password", "$2a$04$jgbmAMRVPbF9z7emevDdROfYgFXrXeEqvHan9NAsJtMTwzRVmXD/O"], ["confirmed_at", "2019-10-13 20:04:26.195974"], ["name", "Hein Noon"], ["email", "holley.bednar@lehner.net"], ["created_at", "2019-10-13 20:04:26.196723"], ["updated_at", "2019-10-13 20:04:26.196723"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:04:26 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.3ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC TRANSACTION (0.1ms) begin transaction TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "claudio.renner@hane.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "claudio.renner@hane.io"], ["encrypted_password", "$2a$04$ZY8xAgVGcWGbz2XV7GgBBuHm.Y/7Ow8j3g26Wa87N0O.EXrcOQqNm"], ["confirmed_at", "2019-10-13 20:04:29.145391"], ["name", "I. Ball"], ["email", "claudio.renner@hane.io"], ["created_at", "2019-10-13 20:04:29.146664"], ["updated_at", "2019-10-13 20:04:29.146664"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"claudio.renner@hane.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "claudio.renner@hane.io"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CF4Vh3ckcxg1DVz_tXlS2w\":{\"token\":\"$2a$10$A1Y6Qyk0jgAZHBVHfNViLe0ObfNymWVg9gMyEHjgn1qYhiWIwvjO.\",\"expiry\":1572206669,\"updated_at\":\"2019-10-13 20:04:29 UTC\"}}"], ["updated_at", "2019-10-13 20:04:29.214371"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 20:04:29.217999"], ["last_sign_in_at", "2019-10-13 20:04:29.217999"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 20:04:29.218264"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.7ms | Allocations: 18411) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mercedez.rempel@walsh.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mercedez.rempel@walsh.info"], ["encrypted_password", "$2a$04$8.cz.kGkvJ8UPuVdQjBMcOunI2Dz5xcVznqcmFXVZBD4RYvFNdRW."], ["confirmed_at", "2019-10-13 20:04:29.229030"], ["name", "Eli Ondefloor"], ["email", "mercedez.rempel@walsh.info"], ["created_at", "2019-10-13 20:04:29.229954"], ["updated_at", "2019-10-13 20:04:29.229954"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"mercedez.rempel@walsh.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mercedez.rempel@walsh.info"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2063) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "columbus@yost.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "columbus@yost.name"], ["encrypted_password", "$2a$04$wtBBljDkuWxzK8K5W4gdxu3wdZADuApTzXcpnw0FXoPt15rZOMhyO"], ["confirmation_token", "BSiwULycF4mCQHqHymaK"], ["confirmation_sent_at", "2019-10-13 20:04:29.240528"], ["name", "Colleen Cardd"], ["email", "columbus@yost.name"], ["created_at", "2019-10-13 20:04:29.240443"], ["updated_at", "2019-10-13 20:04:29.240443"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"columbus@yost.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "columbus@yost.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1350) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "abraham.kub@moore.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "abraham.kub@moore.biz"], ["encrypted_password", "$2a$04$lBelYRweKuTuMEt6br32PeKA0uV1REr8eR7TPEgFPcXWUj.yUYqp6"], ["confirmed_at", "2019-10-13 20:04:29.249049"], ["locked_at", "2019-10-13 20:04:29.249071"], ["name", "Myra Maines"], ["email", "abraham.kub@moore.biz"], ["created_at", "2019-10-13 20:04:29.250703"], ["updated_at", "2019-10-13 20:04:29.250703"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"abraham.kub@moore.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "abraham.kub@moore.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1369) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lavern.goodwin@spencerspencer.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lavern.goodwin@spencerspencer.name"], ["encrypted_password", "$2a$04$WMO3n9/bAaX2s.BniOvVpuftS1OIsIiraO5sC89U.BK/DWi9RKgVW"], ["confirmed_at", "2019-10-13 20:04:29.260443"], ["name", "Chris Ko"], ["email", "lavern.goodwin@spencerspencer.name"], ["created_at", "2019-10-13 20:04:29.261795"], ["updated_at", "2019-10-13 20:04:29.261795"], ["auth_available", 0]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lavern.goodwin@spencerspencer.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lavern.goodwin@spencerspencer.name"], ["LIMIT", 1]] Completed 200 OK in 21ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1348) TRANSACTION (0.4ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "carson@marquardtrenner.com"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.6ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "carson@marquardtrenner.com"], ["encrypted_password", "$2a$04$8JzHZ3.5OS3mFRfECOQF5.bzPKcVlnBCUAtFQc4/b4doX4XX5Njyy"], ["confirmed_at", "2019-10-13 20:04:29.301493"], ["email", "carson@marquardtrenner.com"], ["created_at", "2019-10-13 20:04:29.303407"], ["updated_at", "2019-10-13 20:04:29.303407"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"carson@marquardtrenner.com\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "carson@marquardtrenner.com"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"NWCFqzUrHMefoPjMWQrgYw\":{\"token\":\"$2a$10$TESwQC5QJOtkHTzf6Cg.eOWvQb4H/NzU1Hu/p8EfWGEiBeuah7UEW\",\"expiry\":1572206669,\"updated_at\":\"2019-10-13 20:04:29 UTC\"}}"], ["updated_at", "2019-10-13 20:04:29.365569"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2376) TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "delfina.funk@huel.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "delfina.funk@huel.biz"], ["encrypted_password", "$2a$04$go5JNqi7dvpaMi8cNT/yyulkOQhNGRxh2/PnulMq5Lzp9hjLjzTo2"], ["confirmed_at", "2019-10-13 20:04:29.370926"], ["name", "Lisa Neucar"], ["email", "delfina.funk@huel.biz"], ["created_at", "2019-10-13 20:04:29.371857"], ["updated_at", "2019-10-13 20:04:29.371857"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"JtkRP_pbBa6Fm4RauQ0BAg\":{\"token\":\"$2a$10$2XPk5v7j4lH58QId0bDGreG5l0Rx1sdcHDWUNqvm0/wcroW.Vt3Sm\",\"expiry\":1572206669,\"updated_at\":\"2019-10-13 20:04:29 UTC\"}}"], ["updated_at", "2019-10-13 20:04:29.422634"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "delfina.funk@huel.biz"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:04:29.470009"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1885) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 943) TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alva@bode.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alva@bode.name"], ["encrypted_password", "$2a$04$uq1O8T7qfNgHY/6.U8fByumCzzHyhz3G5O.zwAZpEYSBN/LIi4sQW"], ["confirmed_at", "2019-10-13 20:04:29.479686"], ["name", "Anna Sasin"], ["email", "alva@bode.name"], ["created_at", "2019-10-13 20:04:29.480615"], ["updated_at", "2019-10-13 20:04:29.480615"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "shiela@schuppehaley.io"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "shiela@schuppehaley.io"], ["encrypted_password", "$2a$04$sHqL4ZG.CeDU2RO5wegIEO67BuBlRDjs43dw4fhpS8pkmubbEPCZu"], ["confirmed_at", "2019-10-13 20:04:29.487362"], ["email", "shiela@schuppehaley.io"], ["created_at", "2019-10-13 20:04:29.488849"], ["updated_at", "2019-10-13 20:04:29.488849"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"wOrwm6gxEtRI3Sehclni5A\":{\"token\":\"$2a$10$SVvYfFIwyG/KsLgoFZThNuMB0JNQqTc5UCm5KXbj0pZ7e0vKHyEse\",\"expiry\":1572206669,\"updated_at\":\"2019-10-13 20:04:29 UTC\"}}"], ["updated_at", "2019-10-13 20:04:29.544936"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "shiela@schuppehaley.io"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:04:29.593263"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 1814) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.8ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "winfred_walsh@jacobs.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "winfred_walsh@jacobs.org"], ["encrypted_password", "$2a$04$MmQuBWHtibvOCBzVQfTeBOq0uEaYvMsXrDC0vXVa71afJ89E/qqWG"], ["confirmed_at", "2019-10-13 20:04:29.600234"], ["name", "Anna Conda"], ["email", "winfred_walsh@jacobs.org"], ["created_at", "2019-10-13 20:04:29.601086"], ["updated_at", "2019-10-13 20:04:29.601086"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"winfred_walsh@jacobs.org\",\n redirectUrl: \"http://zemlak.info/edward\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "winfred_walsh@jacobs.org"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d380c231a572a0d56eae9cfc66d6c2280b5a2b81c86cd95a8dd7608088d07e75"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "d380c231a572a0d56eae9cfc66d6c2280b5a2b81c86cd95a8dd7608088d07e75"], ["reset_password_sent_at", "2019-10-13 20:04:29.687719"], ["updated_at", "2019-10-13 20:04:29.687881"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.6ms | Allocations: 1280) Devise::Mailer#reset_password_instructions: processed outbound mail in 113.4ms Delivered mail 5da3834dc468e_d6603fc6fb42ffd4577f@Marios-MacBook-Pro.local.mail (4.1ms) Date: Sun, 13 Oct 2019 15:04:29 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: winfred_walsh@jacobs.org Message-ID: <5da3834dc468e_d6603fc6fb42ffd4577f@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: winfred_walsh@jacobs.org provider: email redirect-url: http://zemlak.info/edward client-config: default

Hello winfred_walsh@jacobs.org!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 204ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 67639) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fzemlak.info%2Fedward&variables%5Btoken%5D=zRNmNeNm7rZFFcD8-Cbb" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://zemlak.info/edward", "token"=>"zRNmNeNm7rZFFcD8-Cbb"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d380c231a572a0d56eae9cfc66d6c2280b5a2b81c86cd95a8dd7608088d07e75"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BpYvx8rkPkwgQf0dFRn7uw\":{\"token\":\"$2a$10$eWAC/NHMD1.FMn6jjaWMY.KVpzwGXOm/Yr3JDN/EjkwVbgVTvdhzK\",\"expiry\":1572206669}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:29.853265"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://zemlak.info/edward?access-token=HST5yJTxE9MB7VO8dh8w6A&client=BpYvx8rkPkwgQf0dFRn7uw&client_id=BpYvx8rkPkwgQf0dFRn7uw&config=&expiry=1572206669&reset_password=true&token=HST5yJTxE9MB7VO8dh8w6A&uid=winfred_walsh%40jacobs.org Completed 302 Found in 46ms (ActiveRecord: 0.3ms | Allocations: 2128) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://wizaberge.info/gene.gulgowski\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1192) TRANSACTION (0.0ms) rollback transaction TRANSACTION (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"santos_leannon@mcclure.co\"\n name: \"Tonda Terry\"\n password: \"1TmGsUt5Q1mMf\"\n passwordConfirmation: \"1TmGsUt5Q1mMf\"\n confirmSuccessUrl: \"http://colewiza.name/justin.ullrich\"\n ) {\n user {\n email\n name\n }\n }\n }\n"} TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "santos_leannon@mcclure.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "santos_leannon@mcclure.co"], ["encrypted_password", "$2a$04$x5Ia7PJfssOIvtsSCmEJKeMwWeR56LinDOnrgNuMmX.hsfXBV4MG."], ["confirmation_token", "v2wbwwYcxs-bapsf5DCb"], ["confirmation_sent_at", "2019-10-13 20:04:29.865286"], ["name", "Tonda Terry"], ["email", "santos_leannon@mcclure.co"], ["created_at", "2019-10-13 20:04:29.865214"], ["updated_at", "2019-10-13 20:04:29.865214"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.7ms | Allocations: 578) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.9ms Delivered mail 5da3834dd4169_d6603fc6fb42ffd45832@Marios-MacBook-Pro.local.mail (1.1ms) Date: Sun, 13 Oct 2019 15:04:29 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: santos_leannon@mcclure.co Message-ID: <5da3834dd4169_d6603fc6fb42ffd45832@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://colewiza.name/justin.ullrich

Welcome santos_leannon@mcclure.co!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5421)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fcolewiza.name%2Fjustin.ullrich&variables%5Btoken%5D=v2wbwwYcxs-bapsf5DCb" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://colewiza.name/justin.ullrich", "token"=>"v2wbwwYcxs-bapsf5DCb"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "v2wbwwYcxs-bapsf5DCb"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:04:29.874760"], ["updated_at", "2019-10-13 20:04:29.874941"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://colewiza.name/justin.ullrich?account_confirmation_success=true Completed 302 Found in 6ms (ActiveRecord: 0.4ms | Allocations: 2176) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.1ms) begin transaction  (0.2ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Dierdre Okuneva\"\n password: \"HgR7pTeSi41KiHl9\"\n passwordConfirmation: \"HgR7pTeSi41KiHl9\"\n confirmSuccessUrl: \"http://hayeawayn.org/eric_quigley\"\n ) {\n user {\n email\n name\n }\n }\n }\n"} TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]] TRANSACTION (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2707)  (0.1ms) SELECT COUNT(*) FROM "users" TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "adolfo.glover@lockman.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "adolfo.glover@lockman.name"], ["encrypted_password", "$2a$04$yT5.ck3jVUgDElhmPAMHXOmvz7OOTyeoerykcz7OGQV4L0FYWQ9JK"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:29.900041"], ["name", "Myra Maines"], ["email", "adolfo.glover@lockman.name"], ["created_at", "2019-10-13 20:04:29.902450"], ["updated_at", "2019-10-13 20:04:29.902450"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"AJmbyqLwqJHO7axdD7Vj4A\":{\"token\":\"$2a$10$aqikyOXI/9dW8j3k8pzJu.pLUrvwv.3ls1hLD6r6GbsayQOdpBq92\",\"expiry\":1572206669,\"updated_at\":\"2019-10-13 20:04:29 UTC\"}}"], ["updated_at", "2019-10-13 20:04:29.964680"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "adolfo.glover@lockman.name"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$wPInUiv7Qe6nthL/M8Jthuub4Bce.KbzVTOfCphTOY9xpwUuin3cu"], ["updated_at", "2019-10-13 20:04:30.020737"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:30.022761"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2869) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dominique.fahey@wolf.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dominique.fahey@wolf.name"], ["encrypted_password", "$2a$04$HJgjTF1rH2gBaGHd1e3xROTHNzu9zqwTbWx8SiuMb5ppoYokt2EIu"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:30.030126"], ["name", "Rhea Curran"], ["email", "dominique.fahey@wolf.name"], ["created_at", "2019-10-13 20:04:30.031372"], ["updated_at", "2019-10-13 20:04:30.031372"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"D3_cRXguppWwP_SHoh1Odw\":{\"token\":\"$2a$10$xVMeeio1SN7xMvcFiSSOdenhKlNWuhRKcocdlAq830KcTKv.EIn2S\",\"expiry\":1572206670,\"updated_at\":\"2019-10-13 20:04:30 UTC\"}}"], ["updated_at", "2019-10-13 20:04:30.084437"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dominique.fahey@wolf.name"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$MIoAuykeOOfHSC9i2A8rtu9JylF7ReiNdb2biN2suTPCc9lMsz6lK"], ["updated_at", "2019-10-13 20:04:30.138049"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:30.139904"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2861) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arvilla.crist@carterrohan.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "arvilla.crist@carterrohan.io"], ["encrypted_password", "$2a$04$7eWpCvKbQnXVi1NVK96ScOMkaw.Ll80NUzGuRuqvwxRsZfGBLzIBS"], ["confirmed_at", "2019-10-13 20:04:30.147855"], ["name", "Liz Onnia"], ["email", "arvilla.crist@carterrohan.io"], ["created_at", "2019-10-13 20:04:30.149044"], ["updated_at", "2019-10-13 20:04:30.149044"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ldROT5hUJIsKTewa4TUovQ\":{\"token\":\"$2a$10$tuxLwR72t0jge8AEVRcSNu7sWVRv.eQnVLfcxkmmAZspAJ7MNstOi\",\"expiry\":1572206670,\"updated_at\":\"2019-10-13 20:04:30 UTC\"}}"], ["updated_at", "2019-10-13 20:04:30.200169"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "arvilla.crist@carterrohan.io"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 2331) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "herb_grady@leuschkehills.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "herb_grady@leuschkehills.name"], ["encrypted_password", "$2a$04$AdcFslanriD2vD7Of0VLmOMJ.R3r9374Rk9HEw/F9uCH5b4ENPSmW"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:30.258828"], ["name", "Kenya Dewit"], ["email", "herb_grady@leuschkehills.name"], ["created_at", "2019-10-13 20:04:30.260763"], ["updated_at", "2019-10-13 20:04:30.260763"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"YCWb1q4-pUPuSaWAMa6vlQ\":{\"token\":\"$2a$10$PUtdfySrUyoWyWbnUeFE8ujFL.w4XYTwLNYBALfaDjDJpHvNN.OzS\",\"expiry\":1572206670,\"updated_at\":\"2019-10-13 20:04:30 UTC\"}}"], ["updated_at", "2019-10-13 20:04:30.313651"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "herb_grady@leuschkehills.name"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$1/yS8LekXLi6Cq8Y6/ZpiOg7xtJB.TcLMZzlusTr.H44Yn2mljLkm"], ["updated_at", "2019-10-13 20:04:30.365804"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:30.367083"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2861) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "waldo@wisozkbergstrom.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "waldo@wisozkbergstrom.biz"], ["encrypted_password", "$2a$04$DeFVVwmV/INKRa1VGv/0d.wma2FcvJDwmMHkMbz6gQw4ahKQZLya2"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:04:30.373386"], ["name", "Pete Zaria"], ["email", "waldo@wisozkbergstrom.biz"], ["created_at", "2019-10-13 20:04:30.374229"], ["updated_at", "2019-10-13 20:04:30.374229"]] TRANSACTION (0.4ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jev2oHm_Y8VgSUFtteTfjQ\":{\"token\":\"$2a$10$PWTlqs3zn4Vt.Kyou5Wri.Wx4Tq3WRP/bLkFyokLmO8UgtU4wPfPG\",\"expiry\":1572206670,\"updated_at\":\"2019-10-13 20:04:30 UTC\"}}"], ["updated_at", "2019-10-13 20:04:30.425955"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "waldo@wisozkbergstrom.biz"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$KJyGKvXMiSZYSVPG9ajCOe1yquuTe1W8u.rVNhyMGVnDjj0WhjoBa"], ["updated_at", "2019-10-13 20:04:30.477546"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:04:30.479329"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2861) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shantay@reichel.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shantay@reichel.net"], ["encrypted_password", "$2a$04$wmSsu8QWudvCRFUhxyshdetDRtnLcFS1VtxaUzBvbFAcb6QUBFPnq"], ["confirmed_at", "2019-10-13 20:04:30.486391"], ["name", "Lake Speed"], ["email", "shantay@reichel.net"], ["created_at", "2019-10-13 20:04:30.487269"], ["updated_at", "2019-10-13 20:04:30.487269"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3w7I6dOap48b2AmKz7KQWQ\":{\"token\":\"$2a$10$S8E/IR70hdMbB7cb3jnSaeNsHUedymeuL1QVjy2cqOOimQoEKwvge\",\"expiry\":1572206670,\"updated_at\":\"2019-10-13 20:04:30 UTC\"}}"], ["updated_at", "2019-10-13 20:04:30.540335"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "shantay@reichel.net"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$b7zPoF04CXnzf4RjgGCPhesLzQiCTbmWI/44bz/tgFHHCXikgtJNS"], ["updated_at", "2019-10-13 20:04:30.589081"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2628) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jarrett_jones@romaguera.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jarrett_jones@romaguera.io"], ["encrypted_password", "$2a$04$6C77KZWnuQl/QAddIP/FgOklLg.Y6v2y2831E.24qZfnjCnyTke5O"], ["confirmed_at", "2019-10-13 20:04:30.597181"], ["name", "Jade Stone"], ["email", "jarrett_jones@romaguera.io"], ["created_at", "2019-10-13 20:04:30.598088"], ["updated_at", "2019-10-13 20:04:30.598088"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:04:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1150) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.2ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vance@doylepouros.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "vance@doylepouros.info"], ["encrypted_password", "$2a$04$LslK3HvU7OjHCFM7nglKQu/UEloqMmD0gpxluZ.ujJ/BNNUSSNNFO"], ["confirmed_at", "2019-10-13 20:04:30.605441"], ["name", "Neve Adda"], ["email", "vance@doylepouros.info"], ["created_at", "2019-10-13 20:04:30.606166"], ["updated_at", "2019-10-13 20:04:30.606166"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0ce5d7747a2cc847dfd7438fa3748cc30d62967d85416075539687f950c4da9b"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "0ce5d7747a2cc847dfd7438fa3748cc30d62967d85416075539687f950c4da9b"], ["reset_password_sent_at", "2019-10-13 20:04:30.607604"], ["updated_at", "2019-10-13 20:04:30.607701"], ["id", 1]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22VSAuL1xUdqJ26nK__-Ky%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"VSAuL1xUdqJ26nK__-Ky\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0ce5d7747a2cc847dfd7438fa3748cc30d62967d85416075539687f950c4da9b"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"VRO3fmxYL5uWYz8a5_cZ8A\":{\"token\":\"$2a$10$E6IMzimcqialbIIhloxxHefJTA8RDT2fw1KrvmUM47PgIcANG9CiG\",\"expiry\":1572206670}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:30.665536"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"VRO3fmxYL5uWYz8a5_cZ8A\":{\"token\":\"$2a$10$E6IMzimcqialbIIhloxxHefJTA8RDT2fw1KrvmUM47PgIcANG9CiG\",\"expiry\":1572206670},\"C7mzEnO6hzi5eR3HSv7VFA\":{\"token\":\"$2a$10$yiDrIEJlDOlLVx9RDQ6r3O/6LyyDmKDnIgSciYB2goB7ITLojlBVe\",\"expiry\":1572206670,\"updated_at\":\"2019-10-13 20:04:30 UTC\"}}"], ["updated_at", "2019-10-13 20:04:30.709860"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 101ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 2648) TRANSACTION (0.6ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hyacinth@roob.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hyacinth@roob.org"], ["encrypted_password", "$2a$04$fuOh.fqhK4gjO/ZKJrtivefuQjV9he/fq6PlvSjS7PTfa6hf2Fl7G"], ["confirmed_at", "2019-10-13 20:04:30.714402"], ["name", "Kurt Remarque"], ["email", "hyacinth@roob.org"], ["created_at", "2019-10-13 20:04:30.715176"], ["updated_at", "2019-10-13 20:04:30.715176"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b97aba33ed7653e7fa845100d070799f462f7089f85f1ba3de2606d375775074"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b97aba33ed7653e7fa845100d070799f462f7089f85f1ba3de2606d375775074"], ["reset_password_sent_at", "2019-10-13 20:04:30.716846"], ["updated_at", "2019-10-13 20:04:30.716937"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22qFgmszEFYHUSpGtG4fuv%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"qFgmszEFYHUSpGtG4fuv\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b97aba33ed7653e7fa845100d070799f462f7089f85f1ba3de2606d375775074"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2HhB4EwA9MR5DO4l1hrd5w\":{\"token\":\"$2a$10$f7Orz1XNLnTUTQaDvDd5uuLbOwjcN2A9n8qMoqNZbr9Ii7pSM8y/e\",\"expiry\":1572206670}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:04:30.771555"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=2Ge1uXPBmvS1swiF4EHrvg&client=2HhB4EwA9MR5DO4l1hrd5w&client_id=2HhB4EwA9MR5DO4l1hrd5w&config=&expiry=1572206670&reset_password=true&token=2Ge1uXPBmvS1swiF4EHrvg&uid=hyacinth%40roob.org Completed 302 Found in 54ms (ActiveRecord: 0.2ms | Allocations: 1904) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "quinton.kovacek@lowe.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "quinton.kovacek@lowe.com"], ["encrypted_password", "$2a$04$PMxzxmrU7LGQlr9ROItmrek9CyhgLREOtDskM.s4PwcK4MEzUZWDa"], ["confirmed_at", "2019-10-13 10:04:30"], ["name", "Bruce Easley"], ["email", "quinton.kovacek@lowe.com"], ["created_at", "2019-10-13 10:04:30"], ["updated_at", "2019-10-13 10:04:30"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b42340d339b5b65ff38093c4e949657e58a4f59411b39ac26d06a5506a7ed853"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b42340d339b5b65ff38093c4e949657e58a4f59411b39ac26d06a5506a7ed853"], ["reset_password_sent_at", "2019-10-13 10:04:30"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%227xpxs4Cb_hjimQEGZo3C%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"7xpxs4Cb_hjimQEGZo3C\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b42340d339b5b65ff38093c4e949657e58a4f59411b39ac26d06a5506a7ed853"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1259) TRANSACTION (0.3ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brant_carroll@parisian.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "brant_carroll@parisian.info"], ["encrypted_password", "$2a$04$sIkiMPmcp3eAyP1r/9brMOxZgDPA1XUAJrL9XBibdMBDH9ZTwsL0q"], ["confirmed_at", "2019-10-13 20:04:30.787961"], ["name", "Rita Story"], ["email", "brant_carroll@parisian.info"], ["created_at", "2019-10-13 20:04:30.788790"], ["updated_at", "2019-10-13 20:04:30.788790"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "567c366a576ef90d912c6d5b2d87e84ee8fae1d268261f7588c97a90cc823409"], ["LIMIT", 1]] TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "567c366a576ef90d912c6d5b2d87e84ee8fae1d268261f7588c97a90cc823409"], ["reset_password_sent_at", "2019-10-13 20:04:30.790345"], ["updated_at", "2019-10-13 20:04:30.790449"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22zcgZwK-7ZTqxStzKNhz5invalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"zcgZwK-7ZTqxStzKNhz5invalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "01f6d01d23eaf83b426774375af214fa7e0e5838ad0ad6219f91d6ed2869660a"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.2ms | Allocations: 1217) TRANSACTION (0.5ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "matilde@boyle.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "matilde@boyle.biz"], ["encrypted_password", "$2a$04$Po8cnzBgFxGaoweKIIiyXu1gP.SjfvbsVBOKE1Sm2FuKNDMmf06ga"], ["confirmation_token", "Lv657WL_sTr7iz88q86i"], ["confirmation_sent_at", "2019-10-13 20:04:30.802799"], ["name", "Hal Jalikakick"], ["email", "matilde@boyle.biz"], ["created_at", "2019-10-13 20:04:30.802706"], ["updated_at", "2019-10-13 20:04:30.802706"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.9ms | Allocations: 405) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.4ms Delivered mail 5da3834ec5226_d6603fc6fb42ffd45966@Marios-MacBook-Pro.local.mail (2.5ms) Date: Sun, 13 Oct 2019 15:04:30 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: matilde@boyle.biz Message-ID: <5da3834ec5226_d6603fc6fb42ffd45966@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome matilde@boyle.biz!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22Lv657WL_sTr7iz88q86i%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fquigleyernser.org%2Fmorton.swift%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"Lv657WL_sTr7iz88q86i\"\n redirectUrl: \"http://quigleyernser.org/morton.swift\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "Lv657WL_sTr7iz88q86i"], ["LIMIT", 1]] TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:04:30.844822"], ["updated_at", "2019-10-13 20:04:30.845046"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://quigleyernser.org/morton.swift?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms | Allocations: 1794) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (2.5ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bradly@torp.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bradly@torp.net"], ["encrypted_password", "$2a$04$IezgIlZTTGodo52e0WQcOOhCb6thfewGT27k8QrJODtAuzAbfm2gC"], ["confirmation_token", "-uvXTPKmSDSV1zngczXL"], ["confirmation_sent_at", "2019-10-13 20:04:30.854170"], ["name", "Liv Good"], ["email", "bradly@torp.net"], ["created_at", "2019-10-13 20:04:30.854067"], ["updated_at", "2019-10-13 20:04:30.854067"]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22-uvXTPKmSDSV1zngczXL-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Foconner.org%2Fjaimie%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:04:30 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"-uvXTPKmSDSV1zngczXL-invalid\"\n redirectUrl: \"http://oconner.org/jaimie\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "-uvXTPKmSDSV1zngczXL-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "0b293cca39d4088a0e34b158bd3385ff413649d47fcee052e224dc33d73ae940"], ["LIMIT", 1]] Completed 200 OK in 93ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1626) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] TRANSACTION (0.7ms) rollback transaction TRANSACTION (0.1ms) begin transaction TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lang@sporer.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lang@sporer.name"], ["encrypted_password", "$2a$04$6HZGUzzXX3BexwxsURjdseRPoxns2om45W7WyziyK00oBsDi/lGhG"], ["confirmed_at", "2019-10-13 20:04:30.954669"], ["name", "Joy Rider"], ["email", "lang@sporer.name"], ["created_at", "2019-10-13 20:04:30.955808"], ["updated_at", "2019-10-13 20:04:30.955808"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 TRANSACTION (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NLyjd4isbzQS_zYI_yBwDw\":{\"token\":\"$2a$10$4GlUba1A4nrojlpWKcOoNeRsEFMLMG7hkUUMg93V4IBhHyJrsNZvO\",\"expiry\":1572206671,\"updated_at\":\"2019-10-13 20:04:30 UTC\"}}"], ["updated_at", "2019-10-13 20:04:31.007392"], ["id", 1]] TRANSACTION (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:04:31 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lang@sporer.name"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 9685) TRANSACTION (0.8ms) rollback transaction TRANSACTION (0.0ms) begin transaction TRANSACTION (0.0ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "melody_auer@wisozkweimann.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "melody_auer@wisozkweimann.co"], ["encrypted_password", "$2a$04$imSmZDDiWcsXFSR9RoXsv.iJqCZ7mjuvyv7wPvCc6s7pDo7VbeZP2"], ["confirmed_at", "2019-10-13 20:04:31.067475"], ["name", "Frank Furter"], ["email", "melody_auer@wisozkweimann.co"], ["created_at", "2019-10-13 20:04:31.068413"], ["updated_at", "2019-10-13 20:04:31.068413"]] TRANSACTION (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:04:31 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 158) TRANSACTION (0.3ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "grant.stroman@gottlieb.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "grant.stroman@gottlieb.name"], ["encrypted_password", "$2a$04$5uRbsYdn35xruSkAbfV9XO/YVUQEISULF6vlx5PIwtSRSxZNzNuPG"], ["confirmed_at", "2019-10-13 20:15:16.377207"], ["name", "Oren Jellow"], ["email", "grant.stroman@gottlieb.name"], ["created_at", "2019-10-13 20:15:16.378434"], ["updated_at", "2019-10-13 20:15:16.378434"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"grant.stroman@gottlieb.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "grant.stroman@gottlieb.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"oNCf8hdeBUqzsZvMyTyLKg\":{\"token\":\"$2a$10$fmUxhRovfq5l30p9tt.uGOUjt/rHzA4rGsIT3dvh.RoEaukTiA22q\",\"expiry\":1572207316,\"updated_at\":\"2019-10-13 20:15:16 UTC\"}}"], ["updated_at", "2019-10-13 20:15:16.458232"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 20:15:16.460856"], ["last_sign_in_at", "2019-10-13 20:15:16.460856"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 20:15:16.461038"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 69ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 18373) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tommye@dietrich.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tommye@dietrich.co"], ["encrypted_password", "$2a$04$5vIgTmOxIV5xGZVDQ6L3DeGTwR4CpETY1jslY.FQJjtaTllRNhCea"], ["confirmed_at", "2019-10-13 20:15:16.468110"], ["name", "Bess Eaton"], ["email", "tommye@dietrich.co"], ["created_at", "2019-10-13 20:15:16.468858"], ["updated_at", "2019-10-13 20:15:16.468858"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"tommye@dietrich.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tommye@dietrich.co"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2042)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deja@rath.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "deja@rath.biz"], ["encrypted_password", "$2a$04$UOPQWQHd5CzzzStE7AzMRu6yAXReN3KmuxZD43c0auNwmbd/9Ace6"], ["confirmation_token", "Zzpv1yFgKEcrc6msrFGX"], ["confirmation_sent_at", "2019-10-13 20:15:16.477649"], ["name", "Frank Enstein"], ["email", "deja@rath.biz"], ["created_at", "2019-10-13 20:15:16.477572"], ["updated_at", "2019-10-13 20:15:16.477572"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"deja@rath.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "deja@rath.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1362)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "johnathon_feeney@bednar.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "johnathon_feeney@bednar.biz"], ["encrypted_password", "$2a$04$SKR/kt9hnmFnLl6POIGxY.zQVEcyfg092HNWwmXSU8o4Z1p1Vz/lG"], ["confirmed_at", "2019-10-13 20:15:16.485001"], ["locked_at", "2019-10-13 20:15:16.485030"], ["name", "May Furst"], ["email", "johnathon_feeney@bednar.biz"], ["created_at", "2019-10-13 20:15:16.486282"], ["updated_at", "2019-10-13 20:15:16.486282"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"johnathon_feeney@bednar.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "johnathon_feeney@bednar.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lien@herzog.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lien@herzog.name"], ["encrypted_password", "$2a$04$WpTspC/0QLi5sLzCALsB9OqakDffUL6NyP6UGYZ/LTTVYxFzPgrRa"], ["confirmed_at", "2019-10-13 20:15:16.495964"], ["name", "Justin Sane"], ["email", "lien@herzog.name"], ["created_at", "2019-10-13 20:15:16.497076"], ["updated_at", "2019-10-13 20:15:16.497076"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"lien@herzog.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lien@herzog.name"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1359)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "ruell_bode@dooley.co"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "ruell_bode@dooley.co"], ["encrypted_password", "$2a$04$zEOAU4zjG3qV3Ows6NZlAOCA77RwCf5JNS8b8pH8ylgGjYWuio4ky"], ["confirmed_at", "2019-10-13 20:15:16.516446"], ["email", "ruell_bode@dooley.co"], ["created_at", "2019-10-13 20:15:16.517684"], ["updated_at", "2019-10-13 20:15:16.517684"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"ruell_bode@dooley.co\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "ruell_bode@dooley.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"ECUYdn8qy-dppUn3O65h9g\":{\"token\":\"$2a$10$a.Ay464itf4AckXDo3uthuR53YW.7DN899nluNeAwIFPGN0wKvXDK\",\"expiry\":1572207316,\"updated_at\":\"2019-10-13 20:15:16 UTC\"}}"], ["updated_at", "2019-10-13 20:15:16.574051"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2402)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dee.runte@langworthoconner.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dee.runte@langworthoconner.net"], ["encrypted_password", "$2a$04$H2kaQeYZLHb1VwMFJUDkeevjVJNyNFBWvZvf6OlomM1TWNd4jVEw."], ["confirmed_at", "2019-10-13 20:15:16.578837"], ["name", "Colin Allcars"], ["email", "dee.runte@langworthoconner.net"], ["created_at", "2019-10-13 20:15:16.579678"], ["updated_at", "2019-10-13 20:15:16.579678"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CLYw3jAYFt35mxyK1riH9w\":{\"token\":\"$2a$10$.kOq/3aeVDgtO2Adxf2MSucLfjhYUMKqYp0IKMUDnfnFsVKJINtgy\",\"expiry\":1572207316,\"updated_at\":\"2019-10-13 20:15:16 UTC\"}}"], ["updated_at", "2019-10-13 20:15:16.630118"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dee.runte@langworthoconner.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:15:16.676979"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 46ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 1898) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marty.hudson@wymandenesik.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marty.hudson@wymandenesik.biz"], ["encrypted_password", "$2a$04$p2F.M0x5ld2fSet4KNoq7uhRebz8IiHocz8f1yZchlO9N4biXKHIK"], ["confirmed_at", "2019-10-13 20:15:16.683859"], ["name", "Lisa Ford"], ["email", "marty.hudson@wymandenesik.biz"], ["created_at", "2019-10-13 20:15:16.684797"], ["updated_at", "2019-10-13 20:15:16.684797"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "joshua.goyette@hirthe.com"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "joshua.goyette@hirthe.com"], ["encrypted_password", "$2a$04$T1tFr93/iyq0YcXtyBPOZOEb96CFvabqK6ifXR6wWzwMCVpcamgCm"], ["confirmed_at", "2019-10-13 20:15:16.688961"], ["email", "joshua.goyette@hirthe.com"], ["created_at", "2019-10-13 20:15:16.690543"], ["updated_at", "2019-10-13 20:15:16.690543"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"7rzCgX0Hft6GqpmK5qskzw\":{\"token\":\"$2a$10$./q.uAOYssYs5djakNUlcOysU76cuK0Kgjq2kTcrVW8CIKphsriEi\",\"expiry\":1572207316,\"updated_at\":\"2019-10-13 20:15:16 UTC\"}}"], ["updated_at", "2019-10-13 20:15:16.743310"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "joshua.goyette@hirthe.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:15:16.790705"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1827) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rutha_satterfield@champlinwyman.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rutha_satterfield@champlinwyman.org"], ["encrypted_password", "$2a$04$sjCjnLa0m9gLWD0TC8ftduPJDBukVKs73igPkQ8GIibNsWJ1v7Mr6"], ["confirmed_at", "2019-10-13 20:15:16.798733"], ["name", "Max Little"], ["email", "rutha_satterfield@champlinwyman.org"], ["created_at", "2019-10-13 20:15:16.799597"], ["updated_at", "2019-10-13 20:15:16.799597"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:16 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"rutha_satterfield@champlinwyman.org\",\n redirectUrl: \"http://strackelehner.co/zola.kiehn\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "rutha_satterfield@champlinwyman.org"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a437aa007129ba522dfd08ff60bf729da91565785712f970b439873e75457b03"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "a437aa007129ba522dfd08ff60bf729da91565785712f970b439873e75457b03"], ["reset_password_sent_at", "2019-10-13 20:15:16.881029"], ["updated_at", "2019-10-13 20:15:16.881179"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.5ms | Allocations: 1281) Devise::Mailer#reset_password_instructions: processed outbound mail in 113.8ms Delivered mail 5da385d4f3aa1_d99c3fe81402ffd090374@Marios-MacBook-Pro.local.mail (4.1ms) Date: Sun, 13 Oct 2019 15:15:16 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: rutha_satterfield@champlinwyman.org Message-ID: <5da385d4f3aa1_d99c3fe81402ffd090374@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: rutha_satterfield@champlinwyman.org provider: email redirect-url: http://strackelehner.co/zola.kiehn client-config: default

Hello rutha_satterfield@champlinwyman.org!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 198ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 67740) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fstrackelehner.co%2Fzola.kiehn&variables%5Btoken%5D=9M8Z47xVeTHy-PJ22i2W" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://strackelehner.co/zola.kiehn", "token"=>"9M8Z47xVeTHy-PJ22i2W"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a437aa007129ba522dfd08ff60bf729da91565785712f970b439873e75457b03"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fGTZgfBIHaAYFDNW2njL0w\":{\"token\":\"$2a$10$bvPRvR8MFebZ55ngyEivLeedV8pmCGGiLPyFD45TU/afxYtWmY99i\",\"expiry\":1572207317}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:15:17.047576"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://strackelehner.co/zola.kiehn?access-token=YIdfW6yqx-cigZJvVV04Sw&client=fGTZgfBIHaAYFDNW2njL0w&client_id=fGTZgfBIHaAYFDNW2njL0w&config=&expiry=1572207317&reset_password=true&token=YIdfW6yqx-cigZJvVV04Sw&uid=rutha_satterfield%40champlinwyman.org Completed 302 Found in 46ms (ActiveRecord: 0.2ms | Allocations: 2147) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://lubowitz.org/theodore.von\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"elden@zieme.com\"\n name: \"Lauren Cronin\"\n password: \"YoC8hO4lMzJ4\"\n passwordConfirmation: \"YoC8hO4lMzJ4\"\n confirmSuccessUrl: \"http://muller.io/alva\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elden@zieme.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elden@zieme.com"], ["encrypted_password", "$2a$04$11K5TclXX2Ac5WI2F4woPeoUcMq5DtwT7SubgNCGS4KaPQZnY6uhW"], ["confirmation_token", "SEHEsuHF118GN1zc54V-"], ["confirmation_sent_at", "2019-10-13 20:15:17.059269"], ["name", "Lauren Cronin"], ["email", "elden@zieme.com"], ["created_at", "2019-10-13 20:15:17.059208"], ["updated_at", "2019-10-13 20:15:17.059208"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.7ms | Allocations: 582) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.8ms Delivered mail 5da385d5f43e_d99c3fe81402ffd0904c4@Marios-MacBook-Pro.local.mail (1.0ms) Date: Sun, 13 Oct 2019 15:15:17 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: elden@zieme.com Message-ID: <5da385d5f43e_d99c3fe81402ffd0904c4@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://muller.io/alva

Welcome elden@zieme.com!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5458)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fmuller.io%2Falva&variables%5Btoken%5D=SEHEsuHF118GN1zc54V-" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://muller.io/alva", "token"=>"SEHEsuHF118GN1zc54V-"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "SEHEsuHF118GN1zc54V-"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:15:17.070109"], ["updated_at", "2019-10-13 20:15:17.070679"], ["id", 1]]  (0.8ms) RELEASE SAVEPOINT active_record_1 Redirected to http://muller.io/alva?account_confirmation_success=true Completed 302 Found in 8ms (ActiveRecord: 1.1ms | Allocations: 2178) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Berniece Lehner\"\n password: \"Xv3LoJqEl0BrI6\"\n passwordConfirmation: \"Xv3LoJqEl0BrI6\"\n confirmSuccessUrl: \"http://lowe.name/mariana\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 2710)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "else.kuhic@pfeffer.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "else.kuhic@pfeffer.io"], ["encrypted_password", "$2a$04$PX6Reuhv8NQMEHfVvfpWyOucnAkpGvyxxHDSb/Pw6Ur.9b8U6nJjm"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:15:17.094875"], ["name", "Val Lay"], ["email", "else.kuhic@pfeffer.io"], ["created_at", "2019-10-13 20:15:17.096484"], ["updated_at", "2019-10-13 20:15:17.096484"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.5ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ttHSrjoJCxEsWBe2jPL20g\":{\"token\":\"$2a$10$JaVyvD7ciWuxbpTfC.OInudG1yteR1SXnvOhvpxTSq1JwPkWzDMH6\",\"expiry\":1572207317,\"updated_at\":\"2019-10-13 20:15:17 UTC\"}}"], ["updated_at", "2019-10-13 20:15:17.155123"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "else.kuhic@pfeffer.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$GuWDoi4bSEB8GUSn4CNnvOfcpmQD8Fo9m50ueamEQFYvUjNNIEBPK"], ["updated_at", "2019-10-13 20:15:17.208543"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:15:17.210059"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2882) User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kizzie@feilvandervort.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kizzie@feilvandervort.info"], ["encrypted_password", "$2a$04$EW9M8ht0Mbru849Gz/gf0epA2NuRJiTrKODoG01/NFDMm/a5OvUSW"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:15:17.216589"], ["name", "Oliver Sutton"], ["email", "kizzie@feilvandervort.info"], ["created_at", "2019-10-13 20:15:17.217741"], ["updated_at", "2019-10-13 20:15:17.217741"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5SrLLkNXMUnRoXG5c8FUeQ\":{\"token\":\"$2a$10$9mN1QU8NTZo6hopBJ3/iE.MKI7fiWxqlXWAeiu.S7NhMfIq2vciha\",\"expiry\":1572207317,\"updated_at\":\"2019-10-13 20:15:17 UTC\"}}"], ["updated_at", "2019-10-13 20:15:17.266685"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kizzie@feilvandervort.info"], ["LIMIT", 1]]  (0.5ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$oMvj063yTdid0eaOLOUz/uk9K1fy7W7ufCbZGUzw.ikioCsAjuxJO"], ["updated_at", "2019-10-13 20:15:17.317363"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:15:17.319224"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 1.2ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "loreen.hilll@roberts.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "loreen.hilll@roberts.info"], ["encrypted_password", "$2a$04$JDgjN6VXavglPLHQEyIbqOGtj1HPds3xAuv5PEZrDjw84JIdnGQy6"], ["confirmed_at", "2019-10-13 20:15:17.327407"], ["name", "Alf Abet"], ["email", "loreen.hilll@roberts.info"], ["created_at", "2019-10-13 20:15:17.328500"], ["updated_at", "2019-10-13 20:15:17.328500"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"MNoYEhczuUqxWKoCRj1Q6w\":{\"token\":\"$2a$10$yKL/7JeKQ0j.eMpZv2pnr.tGIjVCj5qDm7rHwN/ja.mnhxoDSZfCm\",\"expiry\":1572207317,\"updated_at\":\"2019-10-13 20:15:17 UTC\"}}"], ["updated_at", "2019-10-13 20:15:17.376473"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "loreen.hilll@roberts.info"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 2360) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deon@goyette.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "deon@goyette.net"], ["encrypted_password", "$2a$04$Orl6C9cDrDJhEdSjozIxueXs1nEV7az0H72wiyDj6UODiditGiyuK"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:15:17.437250"], ["name", "Pete Zaria"], ["email", "deon@goyette.net"], ["created_at", "2019-10-13 20:15:17.438145"], ["updated_at", "2019-10-13 20:15:17.438145"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DyEjOYTcyty6EllyP0ytVQ\":{\"token\":\"$2a$10$6fBwrSZfpyjM/fZJAO3hPuEtZkl7Zo.Vsb1WKkPlvEButIooMvbUq\",\"expiry\":1572207317,\"updated_at\":\"2019-10-13 20:15:17 UTC\"}}"], ["updated_at", "2019-10-13 20:15:17.488126"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "deon@goyette.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$fQVLY5tkJA5a2abDwvr3Ne4swWioxDVftfimXoSTkx7v7MgG0ULJe"], ["updated_at", "2019-10-13 20:15:17.540017"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:15:17.541120"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "donnell.schaden@reynolds.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "donnell.schaden@reynolds.net"], ["encrypted_password", "$2a$04$n1DLhY0sZx.r1iHC2TAl.u6sv4LlD5fT5hcjXVbK7GBQhrferYDm2"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:15:17.546567"], ["name", "Aaron Thetires"], ["email", "donnell.schaden@reynolds.net"], ["created_at", "2019-10-13 20:15:17.547370"], ["updated_at", "2019-10-13 20:15:17.547370"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"0DsP6b4xK9Rqvflw_tThbA\":{\"token\":\"$2a$10$wonuP.vFd0N5O/Jj1sYUu.575Q1.E4g6.rWF4.G/Xfqk5pOnLnf9q\",\"expiry\":1572207317,\"updated_at\":\"2019-10-13 20:15:17 UTC\"}}"], ["updated_at", "2019-10-13 20:15:17.595374"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "donnell.schaden@reynolds.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$OKpRl1/wW53k7RlNdR9w5en689a73T8avJIcUkHW7PgenPOCCNa4G"], ["updated_at", "2019-10-13 20:15:17.646019"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:15:17.647134"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mica@sawayncollier.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mica@sawayncollier.name"], ["encrypted_password", "$2a$04$ySFVBjFrjSQBRIltTfoveuksuqvj5EgEtjFyQw5JjJfZVKX1T0pze"], ["confirmed_at", "2019-10-13 20:15:17.653866"], ["name", "Kristie Hannity"], ["email", "mica@sawayncollier.name"], ["created_at", "2019-10-13 20:15:17.654735"], ["updated_at", "2019-10-13 20:15:17.654735"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"JG9RTsuR9TyKteuMTGbQPg\":{\"token\":\"$2a$10$.9.DANjoqbDq6pIT7/zJUOWZYcwVjlOcPTYS/1yv.PHprLYdrX9.G\",\"expiry\":1572207317,\"updated_at\":\"2019-10-13 20:15:17 UTC\"}}"], ["updated_at", "2019-10-13 20:15:17.701298"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "mica@sawayncollier.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$rb16pNgcT0TuC.TvpVPrF.wsTCmanfH3wL6qaT.7cxnG3Sbd6E3qO"], ["updated_at", "2019-10-13 20:15:17.754131"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2640) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lucas.kautzer@runolfsdottir.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lucas.kautzer@runolfsdottir.info"], ["encrypted_password", "$2a$04$WQ0ISjuK2Mc68fpktwQEc.SWxDXws0hap9YgvzEX.pFKTpr7cuAN."], ["confirmed_at", "2019-10-13 20:15:17.761983"], ["name", "Claire Annette"], ["email", "lucas.kautzer@runolfsdottir.info"], ["created_at", "2019-10-13 20:15:17.762851"], ["updated_at", "2019-10-13 20:15:17.762851"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marquis.goldner@brekke.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marquis.goldner@brekke.name"], ["encrypted_password", "$2a$04$kcH4SlrXFvOYSTAboGXbseaJGgV7JfMv6Eh9kmnZbVSffU58/Ro7i"], ["confirmed_at", "2019-10-13 20:15:17.770719"], ["name", "Ben Down"], ["email", "marquis.goldner@brekke.name"], ["created_at", "2019-10-13 20:15:17.772247"], ["updated_at", "2019-10-13 20:15:17.772247"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "fd70095fc467e29a5366a743cc3a94081c987d46a75adee5e0adb12125c38d07"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "fd70095fc467e29a5366a743cc3a94081c987d46a75adee5e0adb12125c38d07"], ["reset_password_sent_at", "2019-10-13 20:15:17.774322"], ["updated_at", "2019-10-13 20:15:17.774531"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22VFFASsYma9CExpzawFqf%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"VFFASsYma9CExpzawFqf\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "fd70095fc467e29a5366a743cc3a94081c987d46a75adee5e0adb12125c38d07"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5s36balJ5uI1QY4zFgK3CA\":{\"token\":\"$2a$10$rooBDKD.EywKHIiJDBreIe4pLI1bkGITq5Ej1cUJEWMERY.5Cweam\",\"expiry\":1572207317}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:15:17.830990"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5s36balJ5uI1QY4zFgK3CA\":{\"token\":\"$2a$10$rooBDKD.EywKHIiJDBreIe4pLI1bkGITq5Ej1cUJEWMERY.5Cweam\",\"expiry\":1572207317},\"jA5HHuUSEypUN7GZics4fw\":{\"token\":\"$2a$10$dT0u1tuMYnMDW9t7bBJfkuOSNEa.REUZ5hiLI1qCixiHOFU5WrnNe\",\"expiry\":1572207317,\"updated_at\":\"2019-10-13 20:15:17 UTC\"}}"], ["updated_at", "2019-10-13 20:15:17.877440"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 102ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2656)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nilsa@hansen.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nilsa@hansen.biz"], ["encrypted_password", "$2a$04$3rROkLQZaeUK83mFYrLPuO2ixB2qqmVKB2sJuirgofjeO1pe0MwXO"], ["confirmed_at", "2019-10-13 20:15:17.882360"], ["name", "Marlon Fisher"], ["email", "nilsa@hansen.biz"], ["created_at", "2019-10-13 20:15:17.883192"], ["updated_at", "2019-10-13 20:15:17.883192"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2ed56e664381bee7bca2b84acf49b1a0cd1235ffb5c7b1fce7e8815f4825ed60"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "2ed56e664381bee7bca2b84acf49b1a0cd1235ffb5c7b1fce7e8815f4825ed60"], ["reset_password_sent_at", "2019-10-13 20:15:17.884454"], ["updated_at", "2019-10-13 20:15:17.884533"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%222Eq3iaDURB3ZwiL7kVic%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"2Eq3iaDURB3ZwiL7kVic\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2ed56e664381bee7bca2b84acf49b1a0cd1235ffb5c7b1fce7e8815f4825ed60"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mNeYFARgKRTLPD7KVXOLLg\":{\"token\":\"$2a$10$MaPrIL6tSyvjHuzMj0tTvOrrOrV9B5.QsVmiayMRYTsp7ppLQazJy\",\"expiry\":1572207317}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:15:17.938186"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=XPo85OaobUzsxhHXDjNhcg&client=mNeYFARgKRTLPD7KVXOLLg&client_id=mNeYFARgKRTLPD7KVXOLLg&config=&expiry=1572207317&reset_password=true&token=XPo85OaobUzsxhHXDjNhcg&uid=nilsa%40hansen.biz Completed 302 Found in 54ms (ActiveRecord: 0.3ms | Allocations: 1916) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dewitt_gleason@zulauf.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dewitt_gleason@zulauf.biz"], ["encrypted_password", "$2a$04$pvoPza8Nr0kBqW0a8SXQwOTQoQdHEYUWhbt2qwAlPxTM56YNB/AbC"], ["confirmed_at", "2019-10-13 10:15:17"], ["name", "Anita Bath"], ["email", "dewitt_gleason@zulauf.biz"], ["created_at", "2019-10-13 10:15:17"], ["updated_at", "2019-10-13 10:15:17"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "eedc03120aa517e7ce7d9e9a5bf175b38db01325bdd8cb8562174dfc07f4a68c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "eedc03120aa517e7ce7d9e9a5bf175b38db01325bdd8cb8562174dfc07f4a68c"], ["reset_password_sent_at", "2019-10-13 10:15:17"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22boXaF27db9sQhkvyXxGZ%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"boXaF27db9sQhkvyXxGZ\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "eedc03120aa517e7ce7d9e9a5bf175b38db01325bdd8cb8562174dfc07f4a68c"], ["LIMIT", 1]] Completed 200 OK in 31ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1269)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cyndy_moore@mcculloughcarter.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cyndy_moore@mcculloughcarter.biz"], ["encrypted_password", "$2a$04$2/kchCp/E1CH0zCDDpp5J.TsEDtcxwLuGHMq95kmix5LZLulGVXk."], ["confirmed_at", "2019-10-13 20:15:17.987122"], ["name", "Sandy Beech"], ["email", "cyndy_moore@mcculloughcarter.biz"], ["created_at", "2019-10-13 20:15:17.988112"], ["updated_at", "2019-10-13 20:15:17.988112"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "939fd06acc7d015e56f22cfc82d4e6398bd0cc647133b4f5d9f74e67bb72ca44"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "939fd06acc7d015e56f22cfc82d4e6398bd0cc647133b4f5d9f74e67bb72ca44"], ["reset_password_sent_at", "2019-10-13 20:15:17.989720"], ["updated_at", "2019-10-13 20:15:17.989855"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22-5BnbUGmWXy5wiE7xu2Rinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:15:17 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"-5BnbUGmWXy5wiE7xu2Rinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1e565aea8ebeb7cab0bbce4a0adb4a02cc338fbe760d323465606a53bfa946f3"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bruno@funk.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bruno@funk.info"], ["encrypted_password", "$2a$04$wQKwqgXk537nwRXOtPf3D.S/.Q1/luCCxS4ZsE9hi1hmPRl/e2Lc."], ["confirmation_token", "Rox6sLL9Gy6ThikzJrqM"], ["confirmation_sent_at", "2019-10-13 20:15:17.998981"], ["name", "Ilene South"], ["email", "bruno@funk.info"], ["created_at", "2019-10-13 20:15:17.998887"], ["updated_at", "2019-10-13 20:15:17.998887"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.4ms | Allocations: 407) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.3ms Delivered mail 5da385d6816_d99c3fe81402ffd0905ca@Marios-MacBook-Pro.local.mail (1.3ms) Date: Sun, 13 Oct 2019 15:15:18 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: bruno@funk.info Message-ID: <5da385d6816_d99c3fe81402ffd0905ca@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome bruno@funk.info!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22Rox6sLL9Gy6ThikzJrqM%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fokon.co%2Fkatherina.friesen%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:15:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"Rox6sLL9Gy6ThikzJrqM\"\n redirectUrl: \"http://okon.co/katherina.friesen\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "Rox6sLL9Gy6ThikzJrqM"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:15:18.007685"], ["updated_at", "2019-10-13 20:15:18.008001"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://okon.co/katherina.friesen?account_confirmation_success=true Completed 302 Found in 5ms (ActiveRecord: 0.4ms | Allocations: 1789) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clair.mertz@schroeder.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "clair.mertz@schroeder.co"], ["encrypted_password", "$2a$04$hKnK47KgEnVK04P18yoY2uxEg.aDsMNv/JOra7vhD/h6ZKhch6tHG"], ["confirmation_token", "uaMMms-kTLrJr1nYwA7A"], ["confirmation_sent_at", "2019-10-13 20:15:18.015513"], ["name", "Skip Stone"], ["email", "clair.mertz@schroeder.co"], ["created_at", "2019-10-13 20:15:18.015398"], ["updated_at", "2019-10-13 20:15:18.015398"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22uaMMms-kTLrJr1nYwA7A-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fmosciski.biz%2Fjacinto%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:15:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"uaMMms-kTLrJr1nYwA7A-invalid\"\n redirectUrl: \"http://mosciski.biz/jacinto\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "uaMMms-kTLrJr1nYwA7A-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "b0bc0f0643af2db69df7749308a06fdde2aca243552110045c13c63a35f566d7"], ["LIMIT", 1]] Completed 200 OK in 90ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2009) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "robbie@deckow.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "robbie@deckow.net"], ["encrypted_password", "$2a$04$RpgPSymlXuWz96k.q6AlAOHi77rVJhLFN./aRvXp1f5fXTtkbAhau"], ["confirmed_at", "2019-10-13 20:15:18.111872"], ["name", "M. Balmer"], ["email", "robbie@deckow.net"], ["created_at", "2019-10-13 20:15:18.112613"], ["updated_at", "2019-10-13 20:15:18.112613"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"wL-BUY2R4Pga5RJx2x7QOQ\":{\"token\":\"$2a$10$lE/vJwvOITnzmywcEPAvi.mJ1hTN9wujNoF/JhgNdTyv2KEJs2qGC\",\"expiry\":1572207318,\"updated_at\":\"2019-10-13 20:15:18 UTC\"}}"], ["updated_at", "2019-10-13 20:15:18.161184"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:15:18 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "robbie@deckow.net"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 9751)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "melania@klinglynch.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "melania@klinglynch.name"], ["encrypted_password", "$2a$04$3xPLVq6yI1xgPInEHe8RwuUEm3nWEqZJ69xNGCBpxctd4P85ATRmC"], ["confirmed_at", "2019-10-13 20:15:18.217744"], ["name", "Manuel Labor"], ["email", "melania@klinglynch.name"], ["created_at", "2019-10-13 20:15:18.218495"], ["updated_at", "2019-10-13 20:15:18.218495"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:15:18 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.3ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stasia@kihnherman.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "stasia@kihnherman.name"], ["encrypted_password", "$2a$04$kNDfIsQdxOBiqA5cjVPYs.d58xXLi4kt5y.PlFrh42NpdBJkaqBnW"], ["confirmed_at", "2019-10-13 20:18:04.578321"], ["name", "Justin Sane"], ["email", "stasia@kihnherman.name"], ["created_at", "2019-10-13 20:18:04.579625"], ["updated_at", "2019-10-13 20:18:04.579625"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"stasia@kihnherman.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stasia@kihnherman.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Mqy5902oqOrMgBsrlACnmw\":{\"token\":\"$2a$10$EACm5ullkLMpL/YPe3iwtOUVt5Rg1kRDBio/mTRLVqyACpkZWwagS\",\"expiry\":1572207484,\"updated_at\":\"2019-10-13 20:18:04 UTC\"}}"], ["updated_at", "2019-10-13 20:18:04.645340"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 20:18:04.649231"], ["last_sign_in_at", "2019-10-13 20:18:04.649231"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 20:18:04.649606"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.3ms | ActiveRecord: 0.6ms | Allocations: 18368) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kellie@reilly.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kellie@reilly.name"], ["encrypted_password", "$2a$04$csLqToaRTHvQsk.HXFMi8.gmBa1FXvnbBEfdXAyOeZrFc4vs5KDwW"], ["confirmed_at", "2019-10-13 20:18:04.657633"], ["name", "Cammie Sole"], ["email", "kellie@reilly.name"], ["created_at", "2019-10-13 20:18:04.659032"], ["updated_at", "2019-10-13 20:18:04.659032"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kellie@reilly.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kellie@reilly.name"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2042)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sally@rennerschimmel.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sally@rennerschimmel.org"], ["encrypted_password", "$2a$04$Qhkqwe6ltXtKpirYBumeVO0s3uSCkd5758WUO1Sav37DAQioAwH9i"], ["confirmation_token", "HgPbdmvxTnRAU4saH2cL"], ["confirmation_sent_at", "2019-10-13 20:18:04.669807"], ["name", "Holly Wood"], ["email", "sally@rennerschimmel.org"], ["created_at", "2019-10-13 20:18:04.669714"], ["updated_at", "2019-10-13 20:18:04.669714"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"sally@rennerschimmel.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sally@rennerschimmel.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1363)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jarrod_watsica@keeling.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jarrod_watsica@keeling.com"], ["encrypted_password", "$2a$04$2VTc77qBO7UlU0N4MyIMZuFBw/HAUp882JtN.eW9NIS1ACthFh75e"], ["confirmed_at", "2019-10-13 20:18:04.677390"], ["locked_at", "2019-10-13 20:18:04.677410"], ["name", "Les Plack"], ["email", "jarrod_watsica@keeling.com"], ["created_at", "2019-10-13 20:18:04.678793"], ["updated_at", "2019-10-13 20:18:04.678793"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jarrod_watsica@keeling.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jarrod_watsica@keeling.com"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gayle.dietrich@jaskolski.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "gayle.dietrich@jaskolski.info"], ["encrypted_password", "$2a$04$jLWv6OX7Gf4fTxb96O8TzOdYtLzVUX0glXo.VvpTdyS.W.KIlF4ya"], ["confirmed_at", "2019-10-13 20:18:04.704391"], ["name", "Rusty Blades"], ["email", "gayle.dietrich@jaskolski.info"], ["created_at", "2019-10-13 20:18:04.705713"], ["updated_at", "2019-10-13 20:18:04.705713"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"gayle.dietrich@jaskolski.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gayle.dietrich@jaskolski.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1362)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "haydee@ward.co"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "haydee@ward.co"], ["encrypted_password", "$2a$04$EXJ51G5WsBIw8CpsRMfxfODSBsTx3ycm6B2OLsiFUvLU010ud1kB6"], ["confirmed_at", "2019-10-13 20:18:04.726153"], ["email", "haydee@ward.co"], ["created_at", "2019-10-13 20:18:04.727733"], ["updated_at", "2019-10-13 20:18:04.727733"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"haydee@ward.co\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "haydee@ward.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"XuCxVn6pAWrdldu80jUV5A\":{\"token\":\"$2a$10$sgk0OepfqZ6l.wkOSpSadOLz1R5sPgYfMQS2XYz/MP5Hk4xnPR9te\",\"expiry\":1572207484,\"updated_at\":\"2019-10-13 20:18:04 UTC\"}}"], ["updated_at", "2019-10-13 20:18:04.788718"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2401)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "leisa_littel@heel.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "leisa_littel@heel.co"], ["encrypted_password", "$2a$04$P.78k.RrXxexw9TxUsDxr.LRxVZEKt6wvMLG1BcoL.Iu5/JKYR6NG"], ["confirmed_at", "2019-10-13 20:18:04.793790"], ["name", "Anita Bathe"], ["email", "leisa_littel@heel.co"], ["created_at", "2019-10-13 20:18:04.794709"], ["updated_at", "2019-10-13 20:18:04.794709"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"P5X-UBCQrdiTebuevNQH8A\":{\"token\":\"$2a$10$DR3W2V3ud.B.Jp216yiVyemCigsZrY8O5mcyEBV/lzFW6dDz2RybK\",\"expiry\":1572207484,\"updated_at\":\"2019-10-13 20:18:04 UTC\"}}"], ["updated_at", "2019-10-13 20:18:04.842896"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "leisa_littel@heel.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:18:04.891071"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1896) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nadene@krajcik.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nadene@krajcik.co"], ["encrypted_password", "$2a$04$zxnoZ3v4VdMWLUWFLBnhgOczKlsfyu7AKIJNlAGvo9Ypp2Fa/jGdm"], ["confirmed_at", "2019-10-13 20:18:04.901109"], ["name", "Gladys Eeya"], ["email", "nadene@krajcik.co"], ["created_at", "2019-10-13 20:18:04.902046"], ["updated_at", "2019-10-13 20:18:04.902046"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "branden.rolfson@ankunding.net"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "branden.rolfson@ankunding.net"], ["encrypted_password", "$2a$04$TK4FdAacAY1QTLV.IRy0T.S1wZdUZAQVgNopeRO.AGX30ouw3vUF2"], ["confirmed_at", "2019-10-13 20:18:04.906499"], ["email", "branden.rolfson@ankunding.net"], ["created_at", "2019-10-13 20:18:04.907618"], ["updated_at", "2019-10-13 20:18:04.907618"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"bekfHkIHOWopMOv46D870w\":{\"token\":\"$2a$10$c6LvTM4cra2pbJv9G.ix5OeHjjwiWh6CUPTAfBYquYIYSDyjXc0JC\",\"expiry\":1572207484,\"updated_at\":\"2019-10-13 20:18:04 UTC\"}}"], ["updated_at", "2019-10-13 20:18:04.959547"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:04 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "branden.rolfson@ankunding.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:18:05.009907"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1827) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ernesto_king@mullerwillms.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ernesto_king@mullerwillms.org"], ["encrypted_password", "$2a$04$OisYLD8i/J.zX60unRJKa.XFGF0tyjgnWOe4BESj.FoaxA8kQRSpS"], ["confirmed_at", "2019-10-13 20:18:05.018144"], ["name", "Reed Toomey"], ["email", "ernesto_king@mullerwillms.org"], ["created_at", "2019-10-13 20:18:05.019021"], ["updated_at", "2019-10-13 20:18:05.019021"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"ernesto_king@mullerwillms.org\",\n redirectUrl: \"http://ziemann.biz/lillia_boyle\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "ernesto_king@mullerwillms.org"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7b6692c4b72cd72235bdf7dcaf8e0787a2d60359dc7efd324fa37df4ce925aa2"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "7b6692c4b72cd72235bdf7dcaf8e0787a2d60359dc7efd324fa37df4ce925aa2"], ["reset_password_sent_at", "2019-10-13 20:18:05.101115"], ["updated_at", "2019-10-13 20:18:05.101275"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.5ms | Allocations: 1281) Devise::Mailer#reset_password_instructions: processed outbound mail in 109.1ms Delivered mail 5da3867d341be_db013fd685432010773bd@Marios-MacBook-Pro.local.mail (4.0ms) Date: Sun, 13 Oct 2019 15:18:05 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: ernesto_king@mullerwillms.org Message-ID: <5da3867d341be_db013fd685432010773bd@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: ernesto_king@mullerwillms.org provider: email redirect-url: http://ziemann.biz/lillia_boyle client-config: default

Hello ernesto_king@mullerwillms.org!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 195ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 67734) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fziemann.biz%2Flillia_boyle&variables%5Btoken%5D=b4j3Vc9DjTpx4ETYvsBP" for 127.0.0.1 at 2019-10-13 15:18:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://ziemann.biz/lillia_boyle", "token"=>"b4j3Vc9DjTpx4ETYvsBP"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7b6692c4b72cd72235bdf7dcaf8e0787a2d60359dc7efd324fa37df4ce925aa2"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"1xWgeKVORU8nwrSQMiHmPQ\":{\"token\":\"$2a$10$e1HdeNVvQo4ffpysQHPMsuXT/SmhfYuBzibA5Wg6DVup4R3Is7SrW\",\"expiry\":1572207485}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:18:05.261169"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://ziemann.biz/lillia_boyle?access-token=l4xnIILRRhX4xrg7pyiZOw&client=1xWgeKVORU8nwrSQMiHmPQ&client_id=1xWgeKVORU8nwrSQMiHmPQ&config=&expiry=1572207485&reset_password=true&token=l4xnIILRRhX4xrg7pyiZOw&uid=ernesto_king%40mullerwillms.org Completed 302 Found in 45ms (ActiveRecord: 0.2ms | Allocations: 2147) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://bode.io/timmy.abbott\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"frida.parker@kuvalis.org\"\n name: \"Elza Fahey\"\n password: \"UzZ11jFx\"\n passwordConfirmation: \"UzZ11jFx\"\n confirmSuccessUrl: \"http://beerlueilwitz.com/neva\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "frida.parker@kuvalis.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "frida.parker@kuvalis.org"], ["encrypted_password", "$2a$04$C52xdbJ2rWwxZyAW5J3s8OkcRXSAj2P8hSz6qt.2DERLXSL42jtiu"], ["confirmation_token", "zzbyyh-85YvVsWVqUhb1"], ["confirmation_sent_at", "2019-10-13 20:18:05.276738"], ["name", "Elza Fahey"], ["email", "frida.parker@kuvalis.org"], ["created_at", "2019-10-13 20:18:05.276666"], ["updated_at", "2019-10-13 20:18:05.276666"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.7ms | Allocations: 581) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.8ms Delivered mail 5da3867d4461f_db013fd685432010774fc@Marios-MacBook-Pro.local.mail (1.1ms) Date: Sun, 13 Oct 2019 15:18:05 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: frida.parker@kuvalis.org Message-ID: <5da3867d4461f_db013fd685432010774fc@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://beerlueilwitz.com/neva

Welcome frida.parker@kuvalis.org!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5462)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fbeerlueilwitz.com%2Fneva&variables%5Btoken%5D=zzbyyh-85YvVsWVqUhb1" for 127.0.0.1 at 2019-10-13 15:18:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://beerlueilwitz.com/neva", "token"=>"zzbyyh-85YvVsWVqUhb1"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "zzbyyh-85YvVsWVqUhb1"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:18:05.286455"], ["updated_at", "2019-10-13 20:18:05.286685"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://beerlueilwitz.com/neva?account_confirmation_success=true Completed 302 Found in 5ms (ActiveRecord: 0.3ms | Allocations: 2180) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Mrs. Drew Bruen\"\n password: \"GpTuKzX94n7Ff8\"\n passwordConfirmation: \"GpTuKzX94n7Ff8\"\n confirmSuccessUrl: \"http://kelerhahn.name/carlyn.kertzmann\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2710)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "verline_howe@bauch.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "verline_howe@bauch.info"], ["encrypted_password", "$2a$04$0vNqIgFlQGlZkO2kd6MPIOs6jAqbTrHNnfuE7K9.WVw9KZd1oF4bu"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:18:05.303044"], ["name", "Ima Klotz"], ["email", "verline_howe@bauch.info"], ["created_at", "2019-10-13 20:18:05.304130"], ["updated_at", "2019-10-13 20:18:05.304130"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"cgWzzY79IYLA_Xro2wrIrg\":{\"token\":\"$2a$10$hn78bMrWuaYF9NcZbKeMcO7Aq7gjoUlYPN8PJfj4uTCoqBpuM82Pu\",\"expiry\":1572207485,\"updated_at\":\"2019-10-13 20:18:05 UTC\"}}"], ["updated_at", "2019-10-13 20:18:05.360316"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "verline_howe@bauch.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$qSasNOthmdf7cXSlpfSca.Uq7q95MNGTVdo6qhIJ4PWB8YPwf3XpC"], ["updated_at", "2019-10-13 20:18:05.413373"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:18:05.415143"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.4ms | ActiveRecord: 0.4ms | Allocations: 2882) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (1.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tory_yost@smitham.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "tory_yost@smitham.org"], ["encrypted_password", "$2a$04$iSfxxSYRwCgT26pmxmWYtuP37KHnbgbKAd0yeMySlUqRr6GzlteWq"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:18:05.422231"], ["name", "Lou Briccant"], ["email", "tory_yost@smitham.org"], ["created_at", "2019-10-13 20:18:05.423477"], ["updated_at", "2019-10-13 20:18:05.423477"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bg2FniputdNexbiO-M9dBw\":{\"token\":\"$2a$10$yjJnkkA56SV8lVy5ly83p.8KXrz26RSl.UqvK5byZvu9fDtRAYJRa\",\"expiry\":1572207485,\"updated_at\":\"2019-10-13 20:18:05 UTC\"}}"], ["updated_at", "2019-10-13 20:18:05.473371"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tory_yost@smitham.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$9h4PvmDdo7raYr1m2/Kem.px5kOICfQo6S0tHlo6JGmS7cfm1WUn2"], ["updated_at", "2019-10-13 20:18:05.524871"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:18:05.527074"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 1.0ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sung.ankunding@sengerrath.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sung.ankunding@sengerrath.com"], ["encrypted_password", "$2a$04$B.6dCCbOgPBV6xZ6OZM2SeuSHTy.cUnrmQ4UcsMyEDBYQ4s3QIUjW"], ["confirmed_at", "2019-10-13 20:18:05.535456"], ["name", "Adam Baum"], ["email", "sung.ankunding@sengerrath.com"], ["created_at", "2019-10-13 20:18:05.536264"], ["updated_at", "2019-10-13 20:18:05.536264"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"VWAbjNWeJeMRXfmpDKnmOQ\":{\"token\":\"$2a$10$PTVJOUgBkQCAA9RwCFXY4eZ0iuH4MWhvlMEA.zuVhNizyz7RPHADe\",\"expiry\":1572207485,\"updated_at\":\"2019-10-13 20:18:05 UTC\"}}"], ["updated_at", "2019-10-13 20:18:05.583153"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sung.ankunding@sengerrath.com"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2360) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lynn.bailey@lowe.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lynn.bailey@lowe.com"], ["encrypted_password", "$2a$04$mwpyJj.HUQrn1bgzU0PbYeZ9.f2ZfzaAEGak/zRyJsGg1CLITkrlG"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:18:05.641248"], ["name", "Tate Urtots"], ["email", "lynn.bailey@lowe.com"], ["created_at", "2019-10-13 20:18:05.642292"], ["updated_at", "2019-10-13 20:18:05.642292"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"FwrWdw_FJpwMliEXrSvefw\":{\"token\":\"$2a$10$7yma/bOw8uh/6hIzVbZR/OSQaW.8tBKzaZZCqxTDAFwt8MJBqRkTm\",\"expiry\":1572207485,\"updated_at\":\"2019-10-13 20:18:05 UTC\"}}"], ["updated_at", "2019-10-13 20:18:05.688326"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lynn.bailey@lowe.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$XxnnugBYKYKIfejbA29rOe/YO/5NUiWgcbzu85J1n3PdTEYVhWl4O"], ["updated_at", "2019-10-13 20:18:05.738441"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:18:05.739791"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "imelda@bernier.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "imelda@bernier.biz"], ["encrypted_password", "$2a$04$8l35PP22VPd3u0RXX5zMq.q6y9IRw6ledSst9d9ima1pdpvPX22RO"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:18:05.746491"], ["name", "Aaron Thetires"], ["email", "imelda@bernier.biz"], ["created_at", "2019-10-13 20:18:05.747729"], ["updated_at", "2019-10-13 20:18:05.747729"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"4OhjN0qLufVF3g4rRh1G7A\":{\"token\":\"$2a$10$CHXVBUE8cFaRC1iu5hAc2OjeCibgbfmUKH3O0s3qEU8SvP8yVwGdC\",\"expiry\":1572207485,\"updated_at\":\"2019-10-13 20:18:05 UTC\"}}"], ["updated_at", "2019-10-13 20:18:05.797408"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "imelda@bernier.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$4JWKcROVrsshPxCiKEc/.OlM/cOXp7298s3I7mLtYvuiLV.a4dlfe"], ["updated_at", "2019-10-13 20:18:05.848879"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:18:05.850050"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.4ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "humberto.terry@kuhlman.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "humberto.terry@kuhlman.org"], ["encrypted_password", "$2a$04$OcQjXk1Xt8dCwG6/bEbTOeAC94yKgEJB8M2qGUqUx8PrAvtFX/edS"], ["confirmed_at", "2019-10-13 20:18:05.857311"], ["name", "Jack Pott"], ["email", "humberto.terry@kuhlman.org"], ["created_at", "2019-10-13 20:18:05.858412"], ["updated_at", "2019-10-13 20:18:05.858412"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CFZIO6g_Wn0Nje5DmPQ4vQ\":{\"token\":\"$2a$10$72ELOwyifSnAL.Deaeic0eaqFTVYKIadjeYeuIyhNO6T4Z9MAWtVq\",\"expiry\":1572207485,\"updated_at\":\"2019-10-13 20:18:05 UTC\"}}"], ["updated_at", "2019-10-13 20:18:05.906145"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "humberto.terry@kuhlman.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$hCMx5ON9SE/BjtAHPcoLkORQcwEocKOvnJf5eJKsUC1U8yf5iQjD."], ["updated_at", "2019-10-13 20:18:05.956839"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 2643) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "johnny_funk@cormierschroeder.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "johnny_funk@cormierschroeder.info"], ["encrypted_password", "$2a$04$PnUscPVZIbKngtHvnXbaD.DLNhbjORWplbvexlJyZsazUbc2NA5dm"], ["confirmed_at", "2019-10-13 20:18:05.966069"], ["name", "Will Wynn"], ["email", "johnny_funk@cormierschroeder.info"], ["created_at", "2019-10-13 20:18:05.967354"], ["updated_at", "2019-10-13 20:18:05.967354"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:18:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "charley.farrell@leannon.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "charley.farrell@leannon.com"], ["encrypted_password", "$2a$04$QOfxMolViVS47uLCAGHl9eWgwcXvkYnxa1zMj.WiO4qOhnVvOGBmK"], ["confirmed_at", "2019-10-13 20:18:05.977549"], ["name", "Ken Oppenner"], ["email", "charley.farrell@leannon.com"], ["created_at", "2019-10-13 20:18:05.978877"], ["updated_at", "2019-10-13 20:18:05.978877"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "15a17e66e7ce9c998269f58de01fd483e4b506734d23161964859cd5bd833655"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "15a17e66e7ce9c998269f58de01fd483e4b506734d23161964859cd5bd833655"], ["reset_password_sent_at", "2019-10-13 20:18:05.980733"], ["updated_at", "2019-10-13 20:18:05.980916"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%227A-hurQzPHfwnJs5L5hb%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:18:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"7A-hurQzPHfwnJs5L5hb\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "15a17e66e7ce9c998269f58de01fd483e4b506734d23161964859cd5bd833655"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"FB1BT7bRv7Gla3F4fko3Xg\":{\"token\":\"$2a$10$8WOagREcp4P5E1.ZnmkqHuS/RTWxUWGD9ArOzm3P8J2HnL8Zob8UW\",\"expiry\":1572207486}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:18:06.038715"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"FB1BT7bRv7Gla3F4fko3Xg\":{\"token\":\"$2a$10$8WOagREcp4P5E1.ZnmkqHuS/RTWxUWGD9ArOzm3P8J2HnL8Zob8UW\",\"expiry\":1572207486},\"Hyv7CGotOmn3Mb8rFC4u_g\":{\"token\":\"$2a$10$CPIg5ZSTFpcIDkyjh50DiuSWMQPw9pj8lnSARCV/NcZS95fWoE/Q2\",\"expiry\":1572207486,\"updated_at\":\"2019-10-13 20:18:06 UTC\"}}"], ["updated_at", "2019-10-13 20:18:06.086087"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 103ms (Views: 0.3ms | ActiveRecord: 0.5ms | Allocations: 2656)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tiesha_klocko@skiles.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tiesha_klocko@skiles.name"], ["encrypted_password", "$2a$04$546wD2AZpzJ2RC7qGC4yge3Xt1irWeZGQxtbAJjzIPIuCHLvEvw4O"], ["confirmed_at", "2019-10-13 20:18:06.091169"], ["name", "Rich Kidd"], ["email", "tiesha_klocko@skiles.name"], ["created_at", "2019-10-13 20:18:06.091925"], ["updated_at", "2019-10-13 20:18:06.091925"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "bd1d2c0b75ba4f02a16c4e407cfe4fad64f14c55b8b8da86d2410ee0fe9103ab"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "bd1d2c0b75ba4f02a16c4e407cfe4fad64f14c55b8b8da86d2410ee0fe9103ab"], ["reset_password_sent_at", "2019-10-13 20:18:06.093256"], ["updated_at", "2019-10-13 20:18:06.093340"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22j4sJG8j29HRxAt6oscTQ%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:18:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"j4sJG8j29HRxAt6oscTQ\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "bd1d2c0b75ba4f02a16c4e407cfe4fad64f14c55b8b8da86d2410ee0fe9103ab"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ro6vnD9zVbxlXnBunxWxWg\":{\"token\":\"$2a$10$m8JmD19x9w4aj/FpNEjuN.5NCTbJZYg359UAyypN.6UY2ql29ZB/2\",\"expiry\":1572207486}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:18:06.142195"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=JCvYxy07z3Wa1pqpXJVmhA&client=ro6vnD9zVbxlXnBunxWxWg&client_id=ro6vnD9zVbxlXnBunxWxWg&config=&expiry=1572207486&reset_password=true&token=JCvYxy07z3Wa1pqpXJVmhA&uid=tiesha_klocko%40skiles.name Completed 302 Found in 48ms (ActiveRecord: 0.2ms | Allocations: 1918) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "harvey_homenick@boyerhoeger.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "harvey_homenick@boyerhoeger.co"], ["encrypted_password", "$2a$04$CcSPBcgRI50M1toe5vLNOOK7s.n8HAuhCqxBboh8v7KyPb7FNJfgC"], ["confirmed_at", "2019-10-13 10:18:06"], ["name", "Hayden Seek"], ["email", "harvey_homenick@boyerhoeger.co"], ["created_at", "2019-10-13 10:18:06"], ["updated_at", "2019-10-13 10:18:06"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "28198987b8a8511357f466a82add020afbf8aad1df0b332c0c2b6d078dcd77f6"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "28198987b8a8511357f466a82add020afbf8aad1df0b332c0c2b6d078dcd77f6"], ["reset_password_sent_at", "2019-10-13 10:18:06"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22dxJoKkyPB7Kg-e681hzG%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:18:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"dxJoKkyPB7Kg-e681hzG\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "28198987b8a8511357f466a82add020afbf8aad1df0b332c0c2b6d078dcd77f6"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1266)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nenita.moore@altenwerthcartwright.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nenita.moore@altenwerthcartwright.net"], ["encrypted_password", "$2a$04$dXXhaqHpm/Y/FtZ3HKynkONMybDNtTnvOoIzrFzra8Sgrqz0dcoii"], ["confirmed_at", "2019-10-13 20:18:06.162351"], ["name", "Leigh King"], ["email", "nenita.moore@altenwerthcartwright.net"], ["created_at", "2019-10-13 20:18:06.163706"], ["updated_at", "2019-10-13 20:18:06.163706"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f89d7c890c6096fba9bf76317b064429ab7fff8c5015695d089d1823c9891516"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f89d7c890c6096fba9bf76317b064429ab7fff8c5015695d089d1823c9891516"], ["reset_password_sent_at", "2019-10-13 20:18:06.165730"], ["updated_at", "2019-10-13 20:18:06.165872"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22WZsUYvt5YAA4eAKxuczQinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:18:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"WZsUYvt5YAA4eAKxuczQinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "be2c32a769ba93e350d2b3d60fe2296514f15ad1c500988ee2e6a4dd33f61dfa"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rene@hartmann.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rene@hartmann.org"], ["encrypted_password", "$2a$04$phakCLDj/8o4U2b.UzuG2e1waTO85Udrc8YZfZ0Rmk6JoPYGkryu2"], ["confirmation_token", "hk4yxGpw43Kf9ZzA2vup"], ["confirmation_sent_at", "2019-10-13 20:18:06.179056"], ["name", "Hare Brain"], ["email", "rene@hartmann.org"], ["created_at", "2019-10-13 20:18:06.178954"], ["updated_at", "2019-10-13 20:18:06.178954"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.7ms | Allocations: 408) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.6ms Delivered mail 5da3867e2ca60_db013fd68543201077593@Marios-MacBook-Pro.local.mail (1.9ms) Date: Sun, 13 Oct 2019 15:18:06 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: rene@hartmann.org Message-ID: <5da3867e2ca60_db013fd68543201077593@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome rene@hartmann.org!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22hk4yxGpw43Kf9ZzA2vup%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fcorkery.com%2Fmaximo%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:18:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"hk4yxGpw43Kf9ZzA2vup\"\n redirectUrl: \"http://corkery.com/maximo\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "hk4yxGpw43Kf9ZzA2vup"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:18:06.191723"], ["updated_at", "2019-10-13 20:18:06.192283"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://corkery.com/maximo?account_confirmation_success=true Completed 302 Found in 37ms (ActiveRecord: 0.4ms | Allocations: 1791) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jacques.stanton@littel.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jacques.stanton@littel.net"], ["encrypted_password", "$2a$04$dUQXmFGN52AB7McaS10twe5SZapXJkFixQVTMazA/u.46IDQ.xD3m"], ["confirmation_token", "FKehLz8wR2cyBujiYVzi"], ["confirmation_sent_at", "2019-10-13 20:18:06.232754"], ["name", "Rusty Keyes"], ["email", "jacques.stanton@littel.net"], ["created_at", "2019-10-13 20:18:06.232651"], ["updated_at", "2019-10-13 20:18:06.232651"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22FKehLz8wR2cyBujiYVzi-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fwitting.biz%2Fcarmelia_barton%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:18:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"FKehLz8wR2cyBujiYVzi-invalid\"\n redirectUrl: \"http://witting.biz/carmelia_barton\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "FKehLz8wR2cyBujiYVzi-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "dc33bc5f24bcbbff0a43149da0e08809db3f4fae5c8abb5fa3b12e34ed556e51"], ["LIMIT", 1]] Completed 200 OK in 91ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2009) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "randell_bins@kovacekhuels.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "randell_bins@kovacekhuels.net"], ["encrypted_password", "$2a$04$iAsj29GNJRceDr5e5sKLnOxXgZ7Cc06siDI6LHAV9UJfKOn5FmYka"], ["confirmed_at", "2019-10-13 20:18:06.332182"], ["name", "Rocky Shore"], ["email", "randell_bins@kovacekhuels.net"], ["created_at", "2019-10-13 20:18:06.333718"], ["updated_at", "2019-10-13 20:18:06.333718"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fR63b5oH95Gqv5tjhY4JMQ\":{\"token\":\"$2a$10$NP2p0BfMmB4iGp61n.bbFuW7.klxtHW29wnbdRQknYhdSOyXnfsC6\",\"expiry\":1572207486,\"updated_at\":\"2019-10-13 20:18:06 UTC\"}}"], ["updated_at", "2019-10-13 20:18:06.386075"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:18:06 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "randell_bins@kovacekhuels.net"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 9753)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ermelinda@abbott.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ermelinda@abbott.io"], ["encrypted_password", "$2a$04$5gL4.DI0rm642FxJcfkZb..KVPnCpJz2oQ2Hu0Lqz1MSdbmBKSbAC"], ["confirmed_at", "2019-10-13 20:18:06.444943"], ["name", "Rex Karrs"], ["email", "ermelinda@abbott.io"], ["created_at", "2019-10-13 20:18:06.445898"], ["updated_at", "2019-10-13 20:18:06.445898"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:18:06 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.2ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arnulfo.marks@trantow.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "arnulfo.marks@trantow.info"], ["encrypted_password", "$2a$04$NmCy50BZiOdnzsouLjiWYuFppoHc31lMwoQWqqY5ixNK6QGjla6WO"], ["confirmed_at", "2019-10-13 20:27:59.737368"], ["name", "Milly Graham"], ["email", "arnulfo.marks@trantow.info"], ["created_at", "2019-10-13 20:27:59.738626"], ["updated_at", "2019-10-13 20:27:59.738626"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:27:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"arnulfo.marks@trantow.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "arnulfo.marks@trantow.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bA_BvV1oGG33YAD8VyquTA\":{\"token\":\"$2a$10$DzLCwWqasYdfcIn/cbJDs.a2WQhl/TuQS4TUX.45vQHZKjen3aDkG\",\"expiry\":1572208079,\"updated_at\":\"2019-10-13 20:27:59 UTC\"}}"], ["updated_at", "2019-10-13 20:27:59.809490"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 20:27:59.812722"], ["last_sign_in_at", "2019-10-13 20:27:59.812722"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 20:27:59.813013"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 63ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 18371) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "willie@turner.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "willie@turner.io"], ["encrypted_password", "$2a$04$zdJyOcx0u7wj2SWzwprDX.VOUjEMrBUzJFpFzV6cDYRdS.dF5Klxe"], ["confirmed_at", "2019-10-13 20:27:59.821169"], ["name", "Penny Bunn"], ["email", "willie@turner.io"], ["created_at", "2019-10-13 20:27:59.821975"], ["updated_at", "2019-10-13 20:27:59.821975"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:27:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"willie@turner.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "willie@turner.io"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2042)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "brittanie_olson@leuschke.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "brittanie_olson@leuschke.net"], ["encrypted_password", "$2a$04$tiNSpgxmP4NVTne76EEPVOBqDEHIiyloypBdl7rBmfnydAU5wOWGS"], ["confirmation_token", "M662AxPusAmeydPTt9bf"], ["confirmation_sent_at", "2019-10-13 20:27:59.832011"], ["name", "M. Balmer"], ["email", "brittanie_olson@leuschke.net"], ["created_at", "2019-10-13 20:27:59.831931"], ["updated_at", "2019-10-13 20:27:59.831931"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:27:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"brittanie_olson@leuschke.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "brittanie_olson@leuschke.net"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1363)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rolande_goodwin@beer.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rolande_goodwin@beer.biz"], ["encrypted_password", "$2a$04$l1lRrTTiVzjetRNEKd5YmuzyE/GNTDESB1eZtH1OvbhI.5g7zPKnW"], ["confirmed_at", "2019-10-13 20:27:59.838785"], ["locked_at", "2019-10-13 20:27:59.838795"], ["name", "Rusty Dorr"], ["email", "rolande_goodwin@beer.biz"], ["created_at", "2019-10-13 20:27:59.839553"], ["updated_at", "2019-10-13 20:27:59.839553"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:27:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"rolande_goodwin@beer.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "rolande_goodwin@beer.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1381)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nolan.cummerata@deckowbreitenberg.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nolan.cummerata@deckowbreitenberg.info"], ["encrypted_password", "$2a$04$tMcaj/M5gXTlroVaSVt6hOHbVKTqeMvjQtgHGHZP6rocBVV/3xK/O"], ["confirmed_at", "2019-10-13 20:27:59.846227"], ["name", "Don Thatt"], ["email", "nolan.cummerata@deckowbreitenberg.info"], ["created_at", "2019-10-13 20:27:59.847001"], ["updated_at", "2019-10-13 20:27:59.847001"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:27:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"nolan.cummerata@deckowbreitenberg.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nolan.cummerata@deckowbreitenberg.info"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1359)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "erlene@crona.net"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "erlene@crona.net"], ["encrypted_password", "$2a$04$6GgCeulNKRXcgbL4TVG4geBDDl19Y8CDC..RxzmvMl89RoyrhtbFm"], ["confirmed_at", "2019-10-13 20:27:59.882657"], ["email", "erlene@crona.net"], ["created_at", "2019-10-13 20:27:59.883916"], ["updated_at", "2019-10-13 20:27:59.883916"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 15:27:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"erlene@crona.net\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "erlene@crona.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"EnVCKYbGNopObBNcUOB_Ag\":{\"token\":\"$2a$10$SPxoIq5szeETOFYabVvOtOpPufmv/jPViJauXVgB2tYRqkUxaBuBK\",\"expiry\":1572208079,\"updated_at\":\"2019-10-13 20:27:59 UTC\"}}"], ["updated_at", "2019-10-13 20:27:59.943039"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2402)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "forest_bode@purdy.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "forest_bode@purdy.org"], ["encrypted_password", "$2a$04$fyx8ZMGCPyuO6pmtxpBvjOfhUytpUqzDITnfoi9EO1YICdMxPJz2m"], ["confirmed_at", "2019-10-13 20:27:59.947785"], ["name", "Dwayne Pipe"], ["email", "forest_bode@purdy.org"], ["created_at", "2019-10-13 20:27:59.948627"], ["updated_at", "2019-10-13 20:27:59.948627"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"tBQosnMP5ZlvgWUDHylZsQ\":{\"token\":\"$2a$10$tP2ymtYU/X14VWKLRBG/aeDAE5Tfr1h9AX1RFXanwUiyUjFfZaNT2\",\"expiry\":1572208079,\"updated_at\":\"2019-10-13 20:27:59 UTC\"}}"], ["updated_at", "2019-10-13 20:27:59.996409"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:27:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "forest_bode@purdy.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:28:00.046645"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 1896) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:28:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "orlando@koepp.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "orlando@koepp.net"], ["encrypted_password", "$2a$04$lm9FmJtU9QdVVfNnrMPSFOPYvUASQHYSsZ7mIomOL28F9MC6YRCH2"], ["confirmed_at", "2019-10-13 20:28:00.053832"], ["name", "Minnie Skurt"], ["email", "orlando@koepp.net"], ["created_at", "2019-10-13 20:28:00.054568"], ["updated_at", "2019-10-13 20:28:00.054568"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "elijah_beier@bosco.org"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "elijah_beier@bosco.org"], ["encrypted_password", "$2a$04$cI1IQBFZnTWeFKl1FJc7p.TQ5Vbwrb1mWWG992IAhiD0JJ8zTc0LC"], ["confirmed_at", "2019-10-13 20:28:00.058032"], ["email", "elijah_beier@bosco.org"], ["created_at", "2019-10-13 20:28:00.058748"], ["updated_at", "2019-10-13 20:28:00.058748"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"5MyRjWhPIq5yRyQ7fBEVxg\":{\"token\":\"$2a$10$MmaxaaXwVciK6WS3qqxfqe4aXEB8L9zF7j/alCa48l0TtByR1zh8O\",\"expiry\":1572208080,\"updated_at\":\"2019-10-13 20:28:00 UTC\"}}"], ["updated_at", "2019-10-13 20:28:00.108524"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:28:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "elijah_beier@bosco.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 20:28:00.159478"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1825) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "janine_flatley@boganheller.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "janine_flatley@boganheller.info"], ["encrypted_password", "$2a$04$v1yLiamiOXdQX0Bcevgszuv.gNuVEGPEY2MVUZ.WPhIxiiimN9ilC"], ["confirmed_at", "2019-10-13 20:28:00.167466"], ["name", "Ima Klotz"], ["email", "janine_flatley@boganheller.info"], ["created_at", "2019-10-13 20:28:00.168250"], ["updated_at", "2019-10-13 20:28:00.168250"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:28:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"janine_flatley@boganheller.info\",\n redirectUrl: \"http://hodkiewicz.org/rico\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "janine_flatley@boganheller.info"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3558e837176befdb67968ac829979f386d4c4033819105adced3655a6d14b319"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "3558e837176befdb67968ac829979f386d4c4033819105adced3655a6d14b319"], ["reset_password_sent_at", "2019-10-13 20:28:00.249857"], ["updated_at", "2019-10-13 20:28:00.250015"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.5ms | Allocations: 1281) Devise::Mailer#reset_password_instructions: processed outbound mail in 104.5ms Delivered mail 5da388d057522_dc943fe2d843201015948@Marios-MacBook-Pro.local.mail (4.0ms) Date: Sun, 13 Oct 2019 15:28:00 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: janine_flatley@boganheller.info Message-ID: <5da388d057522_dc943fe2d843201015948@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: janine_flatley@boganheller.info provider: email redirect-url: http://hodkiewicz.org/rico client-config: default

Hello janine_flatley@boganheller.info!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 190ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 67738) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fhodkiewicz.org%2Frico&variables%5Btoken%5D=3u-cAaKa-z6_fxiwGzyY" for 127.0.0.1 at 2019-10-13 15:28:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://hodkiewicz.org/rico", "token"=>"3u-cAaKa-z6_fxiwGzyY"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3558e837176befdb67968ac829979f386d4c4033819105adced3655a6d14b319"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"2RMbjq7CXIKVf_ZqBEFGKg\":{\"token\":\"$2a$10$AkiwsrQSyY1dbIp.pZ4dT.QpXLkhns6TgnZ7YM5lr6i6L.lJSHIaW\",\"expiry\":1572208080}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:28:00.405783"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://hodkiewicz.org/rico?access-token=4M8cqO0lUdIT1iLAnpUJOg&client=2RMbjq7CXIKVf_ZqBEFGKg&client_id=2RMbjq7CXIKVf_ZqBEFGKg&config=&expiry=1572208080&reset_password=true&token=4M8cqO0lUdIT1iLAnpUJOg&uid=janine_flatley%40boganheller.info Completed 302 Found in 45ms (ActiveRecord: 0.2ms | Allocations: 2147) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:28:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://bins.name/brenton.gleichner\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:28:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"robert.sanford@harberharvey.info\"\n name: \"Norene Schneider\"\n password: \"M5hJ6qYjWc8\"\n passwordConfirmation: \"M5hJ6qYjWc8\"\n confirmSuccessUrl: \"http://jacobstrantow.io/kaitlyn_dibbert\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "robert.sanford@harberharvey.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "robert.sanford@harberharvey.info"], ["encrypted_password", "$2a$04$GuWXJFu8D1QD3ENDIW.gPOIGFqMv66jkoI/29gmFWEboVRvYobcvW"], ["confirmation_token", "djpZZWsH6Rhs4Ya9xTue"], ["confirmation_sent_at", "2019-10-13 20:28:00.417299"], ["name", "Norene Schneider"], ["email", "robert.sanford@harberharvey.info"], ["created_at", "2019-10-13 20:28:00.417241"], ["updated_at", "2019-10-13 20:28:00.417241"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.6ms | Allocations: 581) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.8ms Delivered mail 5da388d066a46_dc943fe2d843201016032@Marios-MacBook-Pro.local.mail (1.0ms) Date: Sun, 13 Oct 2019 15:28:00 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: robert.sanford@harberharvey.info Message-ID: <5da388d066a46_dc943fe2d843201016032@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://jacobstrantow.io/kaitlyn_dibbert

Welcome robert.sanford@harberharvey.info!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 5468)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fjacobstrantow.io%2Fkaitlyn_dibbert&variables%5Btoken%5D=djpZZWsH6Rhs4Ya9xTue" for 127.0.0.1 at 2019-10-13 15:28:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://jacobstrantow.io/kaitlyn_dibbert", "token"=>"djpZZWsH6Rhs4Ya9xTue"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "djpZZWsH6Rhs4Ya9xTue"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:28:00.426045"], ["updated_at", "2019-10-13 20:28:00.426203"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://jacobstrantow.io/kaitlyn_dibbert?account_confirmation_success=true Completed 302 Found in 5ms (ActiveRecord: 0.3ms | Allocations: 2180) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:28:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Stephania Sauer\"\n password: \"JvIo723N2mF4q4K\"\n passwordConfirmation: \"JvIo723N2mF4q4K\"\n confirmSuccessUrl: \"http://grimes.com/myrtle\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2710)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hong@kertzmann.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hong@kertzmann.biz"], ["encrypted_password", "$2a$04$L/XHRnSMhcVpWxYmspxgG.YQwj5Ow8QKKsmjlhDmaMTQOSgzNRyvG"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:28:00.443648"], ["name", "Annie Buddyhome"], ["email", "hong@kertzmann.biz"], ["created_at", "2019-10-13 20:28:00.444529"], ["updated_at", "2019-10-13 20:28:00.444529"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3h-t66uX3Rhqon8QEjeTfg\":{\"token\":\"$2a$10$iO9kaxKDvSJIe09IMrRH2uuWmEG31Th5uzz/6pyg48kxo2kT35e/K\",\"expiry\":1572208080,\"updated_at\":\"2019-10-13 20:28:00 UTC\"}}"], ["updated_at", "2019-10-13 20:28:00.499591"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:28:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "hong@kertzmann.biz"], ["LIMIT", 1]]  (0.4ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Lvbg7A99zrvFiy3YtV8B1.zRyq8wKNoLrfE3c/xqDHjMWB7XI8Bsi"], ["updated_at", "2019-10-13 20:28:00.548974"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:28:00.550625"], ["id", 1]]  (0.4ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 1.0ms | Allocations: 2882) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "van@klein.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "van@klein.biz"], ["encrypted_password", "$2a$04$92hZc1fzo.ac3vZASernN.weDaw5S.4r.1uwY7/.VCCdLq2u9K.wq"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:28:00.557910"], ["name", "Tom Katt"], ["email", "van@klein.biz"], ["created_at", "2019-10-13 20:28:00.559444"], ["updated_at", "2019-10-13 20:28:00.559444"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3tWIdO1dKduKvIN8YO7SKA\":{\"token\":\"$2a$10$CBZbMqYRAeHe6jTEIYI.3e.jnNwObvbTE.fP7YcQlHzpcjPfsL3b6\",\"expiry\":1572208080,\"updated_at\":\"2019-10-13 20:28:00 UTC\"}}"], ["updated_at", "2019-10-13 20:28:00.610808"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:28:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "van@klein.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$sOzhpuxeyiy/cGR.okk2geC.hgXuxw3zfaRNXzW9IZ8XKKaFlK.DG"], ["updated_at", "2019-10-13 20:28:00.662309"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:28:00.664946"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "amos@wehner.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "amos@wehner.co"], ["encrypted_password", "$2a$04$qh/6A7LCmKMlH8dha1J1Q.dAaSNwN1w2v4G1rnbmTkkTAu3B/xK6a"], ["confirmed_at", "2019-10-13 20:28:00.672907"], ["name", "Willie Waite"], ["email", "amos@wehner.co"], ["created_at", "2019-10-13 20:28:00.674062"], ["updated_at", "2019-10-13 20:28:00.674062"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"MU-PLUYCUaL0cVBiBreSQw\":{\"token\":\"$2a$10$j4CzQ7T1JHEoYMEsKY6tMOsjsZVymIktzI3RjhKI0/k2/hmMeEMwO\",\"expiry\":1572208080,\"updated_at\":\"2019-10-13 20:28:00 UTC\"}}"], ["updated_at", "2019-10-13 20:28:00.722137"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:28:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "amos@wehner.co"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 2358) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "patricia.will@corkery.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "patricia.will@corkery.name"], ["encrypted_password", "$2a$04$ZvL0C6uhQOFfgk1iyS7N3eaRwO1MwUhb3NofC/5HCtqaxXFhNzWDi"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:28:00.780785"], ["name", "Parker Carr"], ["email", "patricia.will@corkery.name"], ["created_at", "2019-10-13 20:28:00.781523"], ["updated_at", "2019-10-13 20:28:00.781523"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bO__h_wKAkEty45oAb6TRQ\":{\"token\":\"$2a$10$7Amj.nzQI7eaYrSmEFBddOu8AuotUikl4EuyGDZJx33btfTKR/cy6\",\"expiry\":1572208080,\"updated_at\":\"2019-10-13 20:28:00 UTC\"}}"], ["updated_at", "2019-10-13 20:28:00.828293"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:28:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "patricia.will@corkery.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$zAVA5xKI2gvFIPpuU1uZfugYin2uXqH/41MaDlTnX7bJIcE8nU7Wu"], ["updated_at", "2019-10-13 20:28:00.879521"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:28:00.881449"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "londa@olson.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "londa@olson.io"], ["encrypted_password", "$2a$04$YuOpj7DMzasPLmqBuhPzB.Dbq/18A4NubZnzPsXatU.JBYG0fcvKK"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:28:00.888302"], ["name", "Doug Witherspoon"], ["email", "londa@olson.io"], ["created_at", "2019-10-13 20:28:00.889502"], ["updated_at", "2019-10-13 20:28:00.889502"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"L76EhNA1lNEGeZ5OKOtA8A\":{\"token\":\"$2a$10$NFyU8.Ajj6R3FCD4G.iveOB4Ag4WR1xAbjjTJ22eu7hkW3oLEC4jK\",\"expiry\":1572208080,\"updated_at\":\"2019-10-13 20:28:00 UTC\"}}"], ["updated_at", "2019-10-13 20:28:00.943936"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:28:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "londa@olson.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$YXOoE5rB0klr5/LJpaOb2eCdPCBDRYmFfFXR9te.un4sUe.xYF7MS"], ["updated_at", "2019-10-13 20:28:00.996106"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:28:00.997430"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "keturah_hilll@skiles.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "keturah_hilll@skiles.io"], ["encrypted_password", "$2a$04$aRROYMAeGn9KhmX5/XbTk.fnnTQABDHXSIWItbghAWJsZKHLtcK9u"], ["confirmed_at", "2019-10-13 20:28:01.007033"], ["name", "Bob Ng"], ["email", "keturah_hilll@skiles.io"], ["created_at", "2019-10-13 20:28:01.008557"], ["updated_at", "2019-10-13 20:28:01.008557"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KT9STye3IcfzNRKl-kjKHA\":{\"token\":\"$2a$10$oaCyfgNBhnFRxIpp0iCC7OXLJyF6hgR1rL9HT.RO5VlwFmVpa2lFu\",\"expiry\":1572208081,\"updated_at\":\"2019-10-13 20:28:01 UTC\"}}"], ["updated_at", "2019-10-13 20:28:01.058113"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:28:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "keturah_hilll@skiles.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$cOEm36QNpiVmgLXOiThbZu6Fo9lrxA/1FB2ehT5rhJQGvCz7EkacW"], ["updated_at", "2019-10-13 20:28:01.108756"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 2640) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "charlie.bayer@jones.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "charlie.bayer@jones.net"], ["encrypted_password", "$2a$04$66UMmG0J0GcDbwAFUglyReHaWCdFHtygC8AEx7P.JFmwt1s7pGcOa"], ["confirmed_at", "2019-10-13 20:28:01.116125"], ["name", "Kristie Hannity"], ["email", "charlie.bayer@jones.net"], ["created_at", "2019-10-13 20:28:01.116978"], ["updated_at", "2019-10-13 20:28:01.116978"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:28:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "devon.langosh@rolfson.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "devon.langosh@rolfson.co"], ["encrypted_password", "$2a$04$AZ.qPZaqmh8K6wJskcQtZucLehCT/cbAhZySIb/.gByOM6m9IKg8G"], ["confirmed_at", "2019-10-13 20:28:01.124393"], ["name", "Annie Matter"], ["email", "devon.langosh@rolfson.co"], ["created_at", "2019-10-13 20:28:01.125214"], ["updated_at", "2019-10-13 20:28:01.125214"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c03a123281d9eff1684d5d4d2cc1a79ec2a42bcb6c4faef0fd52b33494329fcb"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "c03a123281d9eff1684d5d4d2cc1a79ec2a42bcb6c4faef0fd52b33494329fcb"], ["reset_password_sent_at", "2019-10-13 20:28:01.126629"], ["updated_at", "2019-10-13 20:28:01.126730"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22Bye9ZsAGRSZfEFVDUvMR%22%2C%0A++++++++++redirectUrl%3A+%22%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:28:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"Bye9ZsAGRSZfEFVDUvMR\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c03a123281d9eff1684d5d4d2cc1a79ec2a42bcb6c4faef0fd52b33494329fcb"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"SdaDMoJbFpYEQVs32bLLZQ\":{\"token\":\"$2a$10$99PD.TFKpKFPh6G6OWz4.u3M7HUo8n.lMpZx/YLepizjJOuuK4usC\",\"expiry\":1572208081}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:28:01.181567"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"SdaDMoJbFpYEQVs32bLLZQ\":{\"token\":\"$2a$10$99PD.TFKpKFPh6G6OWz4.u3M7HUo8n.lMpZx/YLepizjJOuuK4usC\",\"expiry\":1572208081},\"YNQBx9fNXz4XQnVxn_snKw\":{\"token\":\"$2a$10$eLjrW2icc9c0WFZLbWprfu.MBAtDAcsH21senzzXCTWVfRbDl/iCu\",\"expiry\":1572208081,\"updated_at\":\"2019-10-13 20:28:01 UTC\"}}"], ["updated_at", "2019-10-13 20:28:01.226983"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 99ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2656)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nakisha@fritschsmith.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "nakisha@fritschsmith.info"], ["encrypted_password", "$2a$04$GTshyvq05VspSs.5yitYlutvO00hBRHr9Qznsb60QKRRVAg7r8KgK"], ["confirmed_at", "2019-10-13 20:28:01.232316"], ["name", "Ben Lyon"], ["email", "nakisha@fritschsmith.info"], ["created_at", "2019-10-13 20:28:01.233069"], ["updated_at", "2019-10-13 20:28:01.233069"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "000b38429e64b54e360ea0770273e7967b4d1c3510fc44555758aecb137d5d5a"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "000b38429e64b54e360ea0770273e7967b4d1c3510fc44555758aecb137d5d5a"], ["reset_password_sent_at", "2019-10-13 20:28:01.234379"], ["updated_at", "2019-10-13 20:28:01.234459"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22N6aHyESsp6is_g-8MCSk%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:28:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"N6aHyESsp6is_g-8MCSk\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "000b38429e64b54e360ea0770273e7967b4d1c3510fc44555758aecb137d5d5a"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ONsBcdeWDbx_IXLh4MmssA\":{\"token\":\"$2a$10$iU7u6pIuuHu9FOXUzUHfK.Y8F2sRqqXf3t3Cqz77E5/Yj5C69grC6\",\"expiry\":1572208081}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:28:01.283849"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=eSKMSeJT4mmgSB2VMjDfXA&client=ONsBcdeWDbx_IXLh4MmssA&client_id=ONsBcdeWDbx_IXLh4MmssA&config=&expiry=1572208081&reset_password=true&token=eSKMSeJT4mmgSB2VMjDfXA&uid=nakisha%40fritschsmith.info Completed 302 Found in 49ms (ActiveRecord: 0.2ms | Allocations: 1918) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ronda@predovicokeefe.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ronda@predovicokeefe.io"], ["encrypted_password", "$2a$04$tEkSPQMP6JO9cXYnUJvnuuvRzhunYmMJPBPSHEafG54j9xeZ29v1."], ["confirmed_at", "2019-10-13 10:28:01"], ["name", "Ilene Wright"], ["email", "ronda@predovicokeefe.io"], ["created_at", "2019-10-13 10:28:01"], ["updated_at", "2019-10-13 10:28:01"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "9bd04a6665c3ce99aee8a5e5a2beeb6063892f6dc51d31720b59f880a6de6eb3"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "9bd04a6665c3ce99aee8a5e5a2beeb6063892f6dc51d31720b59f880a6de6eb3"], ["reset_password_sent_at", "2019-10-13 10:28:01"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22Hb6LQS4KkqqiBxEtSJSt%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:28:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"Hb6LQS4KkqqiBxEtSJSt\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "9bd04a6665c3ce99aee8a5e5a2beeb6063892f6dc51d31720b59f880a6de6eb3"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1266)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "anthony@creminsimonis.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "anthony@creminsimonis.net"], ["encrypted_password", "$2a$04$fmvulO/o9fCTYy/q2qne2utzi5YhwNH4bzscbtWSjsayjgHQIds3S"], ["confirmed_at", "2019-10-13 20:28:01.304137"], ["name", "Hy Price"], ["email", "anthony@creminsimonis.net"], ["created_at", "2019-10-13 20:28:01.305515"], ["updated_at", "2019-10-13 20:28:01.305515"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b403803c31a66b724b3b14222513f9098b037bbb60f515a357466fefd6c97e5c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b403803c31a66b724b3b14222513f9098b037bbb60f515a357466fefd6c97e5c"], ["reset_password_sent_at", "2019-10-13 20:28:01.307324"], ["updated_at", "2019-10-13 20:28:01.307451"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++query+%7B%0A++++++++userCheckPasswordToken%28%0A++++++++++resetPasswordToken%3A+%22mTFCp2QJiwBvgdP6xWrJinvalid%22%2C%0A++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:28:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"mTFCp2QJiwBvgdP6xWrJinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "39d8d93c15a365cddaec40086759f192be7edf5f6f6b4ff59e7b8eaf763f5f0f"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 1224)  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "beie@hartmann.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "beie@hartmann.co"], ["encrypted_password", "$2a$04$ZFZSeduyE20jhiMi0pLQDeMsXg3dUMGmaKvjmTCh91ulKf90/qFTS"], ["confirmation_token", "p-46UCPychzqQBmxWCw9"], ["confirmation_sent_at", "2019-10-13 20:28:01.321166"], ["name", "Holly Wood"], ["email", "beie@hartmann.co"], ["created_at", "2019-10-13 20:28:01.321065"], ["updated_at", "2019-10-13 20:28:01.321065"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.7ms | Allocations: 408) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.9ms Delivered mail 5da388d14f732_dc943fe2d843201016149@Marios-MacBook-Pro.local.mail (1.9ms) Date: Sun, 13 Oct 2019 15:28:01 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: beie@hartmann.co Message-ID: <5da388d14f732_dc943fe2d843201016149@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome beie@hartmann.co!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22p-46UCPychzqQBmxWCw9%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fweimann.com%2Fobdulia%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:28:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"p-46UCPychzqQBmxWCw9\"\n redirectUrl: \"http://weimann.com/obdulia\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "p-46UCPychzqQBmxWCw9"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 20:28:01.331961"], ["updated_at", "2019-10-13 20:28:01.332169"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://weimann.com/obdulia?account_confirmation_success=true Completed 302 Found in 5ms (ActiveRecord: 0.3ms | Allocations: 1789) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elfrieda.robel@wilderman.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elfrieda.robel@wilderman.com"], ["encrypted_password", "$2a$04$CAZFj1Kukz8p3m3qUi1YYOnmCM9Rx4noXfveH2pnZKn6lvd3eknQS"], ["confirmation_token", "6N-R896sP4-qdP_tD1D7"], ["confirmation_sent_at", "2019-10-13 20:28:01.344863"], ["name", "Ellie Noise"], ["email", "elfrieda.robel@wilderman.com"], ["created_at", "2019-10-13 20:28:01.344733"], ["updated_at", "2019-10-13 20:28:01.344733"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%226N-R896sP4-qdP_tD1D7-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fbergnaum.name%2Fmacie_metz%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:28:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"6N-R896sP4-qdP_tD1D7-invalid\"\n redirectUrl: \"http://bergnaum.name/macie_metz\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "6N-R896sP4-qdP_tD1D7-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "972d0b04cf2675b3a55ac27b85ee875fda7a560eb468c3207381c982c73f2910"], ["LIMIT", 1]] Completed 200 OK in 88ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2014) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jay@dooley.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jay@dooley.name"], ["encrypted_password", "$2a$04$J8kbbCRBGt0/4e5bRFGGKebJz3yG0tLk2026eujUhUy6mvIDUDUNe"], ["confirmed_at", "2019-10-13 20:28:01.472499"], ["name", "Ben Lyon"], ["email", "jay@dooley.name"], ["created_at", "2019-10-13 20:28:01.473434"], ["updated_at", "2019-10-13 20:28:01.473434"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dh-X_Qs7eZysF4z0WWsxbQ\":{\"token\":\"$2a$10$Yh7Zu5yxmO8l/u6/WYc5EeOLZOQfxlL.YLoGJV5tB1H1L8NVq4f.i\",\"expiry\":1572208081,\"updated_at\":\"2019-10-13 20:28:01 UTC\"}}"], ["updated_at", "2019-10-13 20:28:01.521529"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:28:01 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jay@dooley.name"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 9751)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "donald.sanford@casperpowlowski.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "donald.sanford@casperpowlowski.net"], ["encrypted_password", "$2a$04$Vo.cRNnYlbXbyCLWCiXnke2c.LrV.mjaQ9ez.TjAif8H6kH1j3VFi"], ["confirmed_at", "2019-10-13 20:28:01.580883"], ["name", "Freida Convict"], ["email", "donald.sanford@casperpowlowski.net"], ["created_at", "2019-10-13 20:28:01.581690"], ["updated_at", "2019-10-13 20:28:01.581690"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 15:28:01 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.2ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (11.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alvina.leffler@ritchie.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "alvina.leffler@ritchie.net"], ["encrypted_password", "$2a$04$cGAB8mxlSv5DUl1ls.pePuyQv6dJVVl1OeqPrPSBFva7ZXloHJeP."], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:35:38.137839"], ["name", "Ulee Daway"], ["email", "alvina.leffler@ritchie.net"], ["created_at", "2019-10-13 20:35:38.139128"], ["updated_at", "2019-10-13 20:35:38.139128"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"-ONeWWWc5PL1B3oePJVrZg\":{\"token\":\"$2a$10$h6DtDzvZmkSjK8ks3UV/r.3f5I2N2KdrS0cTWtpuZvjD675OvnkCm\",\"expiry\":1572208538,\"updated_at\":\"2019-10-13 20:35:38 UTC\"}}"], ["updated_at", "2019-10-13 20:35:38.184136"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:35:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "alvina.leffler@ritchie.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Z0XCcYOWDMDetE5gKH1NX.u/UMtyMDI6bFeNCe/WE/6fTVi68WjnG"], ["updated_at", "2019-10-13 20:35:38.265498"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:35:38.266651"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 18086) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "adolph@greenfelderdooley.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "adolph@greenfelderdooley.com"], ["encrypted_password", "$2a$04$NSjlFj/MrNedAtFe4YZuJe.NAKSz7ofM8PvJhgziIHI7zEPzunUSK"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:35:38.272957"], ["name", "Dan Druff"], ["email", "adolph@greenfelderdooley.com"], ["created_at", "2019-10-13 20:35:38.273753"], ["updated_at", "2019-10-13 20:35:38.273753"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lZwYRwfwrNgIdU_znVv1Pg\":{\"token\":\"$2a$10$G.KLp2JLhBkreCLQ0VMR3.3EQFgVKUU2f.u252IDK4kI442AThxAO\",\"expiry\":1572208538,\"updated_at\":\"2019-10-13 20:35:38 UTC\"}}"], ["updated_at", "2019-10-13 20:35:38.320284"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:35:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "adolph@greenfelderdooley.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$UHlwrephsMGXNLoEEo2upOS/oRd047piP7qXNlCvrZMSwKZ8H0pQa"], ["updated_at", "2019-10-13 20:35:38.376827"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:35:38.378148"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "danette_feest@green.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "danette_feest@green.org"], ["encrypted_password", "$2a$04$eJg1GfcN2Ph4tMyOygZfhOtiEXZ5xNjhle52XH9lq/4TiqR4/SL02"], ["confirmed_at", "2019-10-13 20:35:38.385538"], ["name", "Rich Feller"], ["email", "danette_feest@green.org"], ["created_at", "2019-10-13 20:35:38.386334"], ["updated_at", "2019-10-13 20:35:38.386334"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"3tKLmgaiGnsrsaE2binffg\":{\"token\":\"$2a$10$BCQydJFxUfDqGEKRMvF0dO7LiWJNYVM5nAPCy0C2GgAYlf07pfaPS\",\"expiry\":1572208538,\"updated_at\":\"2019-10-13 20:35:38 UTC\"}}"], ["updated_at", "2019-10-13 20:35:38.440234"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:35:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "danette_feest@green.org"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2477) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "armanda@coleklein.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "armanda@coleklein.info"], ["encrypted_password", "$2a$04$8Meb2BScrsfuXoFD9cvNv.EqjklyXlmMdGAZc267BUVJIUYmE3tJm"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:35:38.499947"], ["name", "Anita Bathe"], ["email", "armanda@coleklein.info"], ["created_at", "2019-10-13 20:35:38.500652"], ["updated_at", "2019-10-13 20:35:38.500652"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BiIXjliQnioS5IQHPCyinQ\":{\"token\":\"$2a$10$VIbPbdpNl.u4Tyjyy2uVruD9pbsim3S1MGeFZOOWpU5y.6NF1kDWC\",\"expiry\":1572208538,\"updated_at\":\"2019-10-13 20:35:38 UTC\"}}"], ["updated_at", "2019-10-13 20:35:38.549111"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:35:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "armanda@coleklein.info"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$jItonixgJWCGt0hZFVyW0uMtU6vzrERP.4E8YDU5hv4p5BC7jut6W"], ["updated_at", "2019-10-13 20:35:38.596735"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:35:38.597649"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rosanne@harrisritchie.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rosanne@harrisritchie.name"], ["encrypted_password", "$2a$04$Sf/WgaeCuStsbPV9igsJQ.tD9eTiJMcr0CpkpV1ylFaLUOQOQ1gKi"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:35:38.603833"], ["name", "Phil DeGrave"], ["email", "rosanne@harrisritchie.name"], ["created_at", "2019-10-13 20:35:38.604619"], ["updated_at", "2019-10-13 20:35:38.604619"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"w6a6-OeXIBz9JAa7v_1VXA\":{\"token\":\"$2a$10$4gbCOHg2ZQxjJwWnAliwKu29ukWQngiXF5yeVC2Zf5odXC0tIBe1C\",\"expiry\":1572208538,\"updated_at\":\"2019-10-13 20:35:38 UTC\"}}"], ["updated_at", "2019-10-13 20:35:38.651985"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:35:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "rosanne@harrisritchie.name"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$TtAdmptWsJP1S5hQyqYr8OS0cT.lw346mpASPiEjroQkqmHkstvC6"], ["updated_at", "2019-10-13 20:35:38.699469"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:35:38.700361"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "susy@schinner.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "susy@schinner.com"], ["encrypted_password", "$2a$04$4O9U44IkxiNlOSHVGtPBQ.u4pYtUp5YGH8jekHpALHDwsXj1BvSnm"], ["confirmed_at", "2019-10-13 20:35:38.706410"], ["name", "Ilene East"], ["email", "susy@schinner.com"], ["created_at", "2019-10-13 20:35:38.707186"], ["updated_at", "2019-10-13 20:35:38.707186"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZHlA-CAMmaMjcEA7mcy84A\":{\"token\":\"$2a$10$wlQp1DCrnKe0Km/TlCkEpeKIG5XpoiYlZA7FxG1xLJbRmI4ATlgNq\",\"expiry\":1572208538,\"updated_at\":\"2019-10-13 20:35:38 UTC\"}}"], ["updated_at", "2019-10-13 20:35:38.754552"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:35:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "susy@schinner.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$HYME9E3tg0g8gpn63y8Bju7drnpvmIvqHXtwNKdu0OEQRHqIICP9G"], ["updated_at", "2019-10-13 20:35:38.802572"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2640) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elida@stroman.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "elida@stroman.name"], ["encrypted_password", "$2a$04$0vNEYqlUsqgZTiQoIQd8c.FjJl7cvaM87xDNdP20SCa9WPdeVei16"], ["confirmed_at", "2019-10-13 20:35:38.808826"], ["name", "Anita Knapp"], ["email", "elida@stroman.name"], ["created_at", "2019-10-13 20:35:38.809605"], ["updated_at", "2019-10-13 20:35:38.809605"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:35:38 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1167) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (11.3ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "walker@ledner.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "walker@ledner.co"], ["encrypted_password", "$2a$04$vfOiComyTnNln4m.DUn/meGLMYPKksYuV9O826YVMbQIXHf0CO2xe"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:41:21.466509"], ["name", "Warren Piece"], ["email", "walker@ledner.co"], ["created_at", "2019-10-13 20:41:21.468424"], ["updated_at", "2019-10-13 20:41:21.468424"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kMsq7GumcWXyb-_AaeBqsg\":{\"token\":\"$2a$10$C6eomh/vvLgHoMtvG9CXj.rP0by0X7kASvhupLPHQk0tIEq51tdZ.\",\"expiry\":1572208881,\"updated_at\":\"2019-10-13 20:41:21 UTC\"}}"], ["updated_at", "2019-10-13 20:41:21.523910"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:41:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "walker@ledner.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$sQb4h3GepLDEiwk9aCYclOA5p8hz3YXgM9i7BY.qtUi7ZtbY/QGUi"], ["updated_at", "2019-10-13 20:41:21.596141"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:41:21.597179"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 17586) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "malena@prosaccoarmstrong.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "malena@prosaccoarmstrong.biz"], ["encrypted_password", "$2a$04$H.6y22aqzL4.q2Uhpu92Oebh7vLXDGOUmD618x5Slz9ik.yjTIroy"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:41:21.603598"], ["name", "Marsha Dimes"], ["email", "malena@prosaccoarmstrong.biz"], ["created_at", "2019-10-13 20:41:21.604431"], ["updated_at", "2019-10-13 20:41:21.604431"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"8E3jtmfbAF4PtNHiapC6ew\":{\"token\":\"$2a$10$silaA82CTaHpMne13f.R2uhltfg65G1KYwYusfoWR.CbE/NmLb5S.\",\"expiry\":1572208881,\"updated_at\":\"2019-10-13 20:41:21 UTC\"}}"], ["updated_at", "2019-10-13 20:41:21.655602"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:41:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "malena@prosaccoarmstrong.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$qDMkDcr4HHod/PP6c07VmOeoSwk.S/OYn05e2RZWAL0z4NK/UH7x6"], ["updated_at", "2019-10-13 20:41:21.707387"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:41:21.708674"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gwenda@jacobson.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gwenda@jacobson.net"], ["encrypted_password", "$2a$04$3smab6ABBDDetgbSeLy.j.IYFbIzZEDc8rlV.ALRx/Fheai.VmGsm"], ["confirmed_at", "2019-10-13 20:41:21.715598"], ["name", "Claire Annette"], ["email", "gwenda@jacobson.net"], ["created_at", "2019-10-13 20:41:21.716411"], ["updated_at", "2019-10-13 20:41:21.716411"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"FlOlfuors10aH6PzIGUrQw\":{\"token\":\"$2a$10$hCS/WXuXpp56TNvohbh78.7/q1LJTCq9iWZROiv4eb2Q5VLcXv6Sq\",\"expiry\":1572208881,\"updated_at\":\"2019-10-13 20:41:21 UTC\"}}"], ["updated_at", "2019-10-13 20:41:21.764012"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:41:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "gwenda@jacobson.net"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 63ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2479) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ted@mraz.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ted@mraz.co"], ["encrypted_password", "$2a$04$35DlWU.BZ/9eAiXVUoQ51.XnbaLceHnLsm25SV9nL7IxEmbg.3aE6"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:41:21.833875"], ["name", "Buddy Booth"], ["email", "ted@mraz.co"], ["created_at", "2019-10-13 20:41:21.834744"], ["updated_at", "2019-10-13 20:41:21.834744"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"sZmswFryis5zEnxqcdiGow\":{\"token\":\"$2a$10$v55lXoRIutPjHn9SK6KRz.e23c6gY8UPVYcuRqJ3dXWoGWARQWgG6\",\"expiry\":1572208881,\"updated_at\":\"2019-10-13 20:41:21 UTC\"}}"], ["updated_at", "2019-10-13 20:41:21.888829"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:41:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ted@mraz.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$bKa4n8xI.nhW/HdXqFpnOOMI2oNZThRQOvdNgLkRZil.7ewWjFS5e"], ["updated_at", "2019-10-13 20:41:21.944248"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.0ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:41:21.945798"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kamala.johns@schusterhermiston.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kamala.johns@schusterhermiston.name"], ["encrypted_password", "$2a$04$/VxqfUJXLihdj6Alf/C6U.OvCbQ7Be3GrYuAd.FiPJqLACqkOp7y2"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 20:41:21.951084"], ["name", "Marlon Fisher"], ["email", "kamala.johns@schusterhermiston.name"], ["created_at", "2019-10-13 20:41:21.952023"], ["updated_at", "2019-10-13 20:41:21.952023"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"8HcmeJx7qWzh-JKxuv055g\":{\"token\":\"$2a$10$XeRunFQJSehnhT/ZmUOflOvmF6GlHd25R.a7Cx2SM8jZ8Opj.7bee\",\"expiry\":1572208882,\"updated_at\":\"2019-10-13 20:41:21 UTC\"}}"], ["updated_at", "2019-10-13 20:41:22.004351"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:41:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kamala.johns@schusterhermiston.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$4XJlsc1dtskHDVYmXXFER.GujYv5gPUjMuTLBnBZSU3gn7YkU6Mn."], ["updated_at", "2019-10-13 20:41:22.058428"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 20:41:22.059592"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "quinn@stoltenberg.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "quinn@stoltenberg.net"], ["encrypted_password", "$2a$04$qvBP1aQ3dK7q8oFrLlS8fukVDh22l7QqRyc6CHsG6gcXL9PAWDXvO"], ["confirmed_at", "2019-10-13 20:41:22.067263"], ["name", "Freida Convict"], ["email", "quinn@stoltenberg.net"], ["created_at", "2019-10-13 20:41:22.068073"], ["updated_at", "2019-10-13 20:41:22.068073"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kOxUayfwoxyfBxlCZwU81w\":{\"token\":\"$2a$10$/jGgPws7LYa7D2V1/xFw4.NA/GDh16enfyzGGCq.tGT/j3ub21hre\",\"expiry\":1572208882,\"updated_at\":\"2019-10-13 20:41:22 UTC\"}}"], ["updated_at", "2019-10-13 20:41:22.123249"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:41:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "quinn@stoltenberg.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$o.97N8ib4GCfphbBiHgPmefPnwVID62ya1laPCDLTIZ9nLk8TG87u"], ["updated_at", "2019-10-13 20:41:22.183740"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2640) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "neta.yost@lindgren.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "neta.yost@lindgren.info"], ["encrypted_password", "$2a$04$i3ky7Nl8D136noFAyzT8X.e6tKudrVmANQ6/PZUepmm.MTJ3CO48K"], ["confirmed_at", "2019-10-13 20:41:22.190926"], ["name", "Chad Terbocks"], ["email", "neta.yost@lindgren.info"], ["created_at", "2019-10-13 20:41:22.191835"], ["updated_at", "2019-10-13 20:41:22.191835"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:41:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1167) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:45:22 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"corrine@millerbatz.io\"\n name: \"Lieselotte Flatley\"\n password: \"Mg0WwWc3SpD9t\"\n passwordConfirmation: \"Mg0WwWc3SpD9t\"\n confirmSuccessUrl: \"http://adams.org/dorothea\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 15913)  (0.1ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:46:14 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"august@nader.co\"\n password: \"OfOiEjVf4LeJ\"\n passwordConfirmation: \"OfOiEjVf4LeJ\"\n confirmSuccessUrl: \"http://denesiktremblay.co/helga.abernathy\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "august@nader.co"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "august@nader.co"], ["encrypted_password", "$2a$04$Nh29GcsukTwCFBqVMRdzuugDJR8aDDvgMYCxjnc3i/8TrlTcvwSA2"], ["confirmation_token", "VjW3GFwBjufXoVKipLdF"], ["confirmation_sent_at", "2019-10-13 20:46:14.322480"], ["email", "august@nader.co"], ["created_at", "2019-10-13 20:46:14.322345"], ["updated_at", "2019-10-13 20:46:14.322345"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 1.8ms | Allocations: 1000) Devise::Mailer#confirmation_instructions: processed outbound mail in 150.1ms Delivered mail 5da38d1674738_e36d3ff204c2ffd456679@Marios-MacBook-Pro.local.mail (5.2ms) Date: Sun, 13 Oct 2019 15:46:14 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: august@nader.co Message-ID: <5da38d1674738_e36d3ff204c2ffd456679@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://denesiktremblay.co/helga.abernathy

Welcome august@nader.co!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 180ms (Views: 0.2ms | ActiveRecord: 1.1ms | Allocations: 92859)  (0.2ms) SELECT COUNT(*) FROM "admins" Admin Load (0.2ms) SELECT "admins".* FROM "admins" ORDER BY "admins"."id" DESC LIMIT ? [["LIMIT", 1]]  (0.3ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:46:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUps(\n email: \"waldo@lynchmayert.info\"\n password: \"PpJxLzFkKvXd7\"\n passwordConfirmation: \"PpJxLzFkKvXd7\"\n confirmSuccessUrl: \"http://durgan.com/lane_brown\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 15637)  (0.1ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:48:35 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"reva.brakus@dickinsonbeatty.org\"\n password: \"IfYoDcB6n1Ak\"\n passwordConfirmation: \"IfYoDcB6n1Ak\"\n confirmSuccessUrl: \"http://pagachalvorson.net/andy\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "reva.brakus@dickinsonbeatty.org"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "reva.brakus@dickinsonbeatty.org"], ["encrypted_password", "$2a$04$tI7SFNUNrgTT/ON4M5dEieOIxbROsJvcRgn0AIfUKg3PIJ4NXjXL2"], ["confirmation_token", "W3U16L2tg6o7rQFxSLWc"], ["confirmation_sent_at", "2019-10-13 20:48:35.132616"], ["email", "reva.brakus@dickinsonbeatty.org"], ["created_at", "2019-10-13 20:48:35.132512"], ["updated_at", "2019-10-13 20:48:35.132512"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 1.4ms | Allocations: 1001) Devise::Mailer#confirmation_instructions: processed outbound mail in 124.6ms Delivered mail 5da38da33f9b4_e3fe3fe9ae02bfd464424@Marios-MacBook-Pro.local.mail (4.0ms) Date: Sun, 13 Oct 2019 15:48:35 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: reva.brakus@dickinsonbeatty.org Message-ID: <5da38da33f9b4_e3fe3fe9ae02bfd464424@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://pagachalvorson.net/andy

Welcome reva.brakus@dickinsonbeatty.org!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 147ms (Views: 0.2ms | ActiveRecord: 0.8ms | Allocations: 92875)  (0.5ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:50:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"arnold@kaulkebauch.name\"\n password: \"XrNhTsIb4K9hE\"\n passwordConfirmation: \"XrNhTsIb4K9hE\"\n confirmSuccessUrl: \"http://bechtelarmetz.info/fiona\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "arnold@kaulkebauch.name"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.3ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "arnold@kaulkebauch.name"], ["encrypted_password", "$2a$04$gWuel74qxLAEZroc5YmXJu8LeqnH52Y/HbvFjUIMkHW1VVpvbXqhi"], ["confirmation_token", "7szyLLbMKZ624sPz5zxm"], ["confirmation_sent_at", "2019-10-13 20:50:27.973534"], ["email", "arnold@kaulkebauch.name"], ["created_at", "2019-10-13 20:50:27.973433"], ["updated_at", "2019-10-13 20:50:27.973433"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 1.4ms | Allocations: 1001) Devise::Mailer#confirmation_instructions: processed outbound mail in 124.5ms Delivered mail 5da38e1418c19_e45a3fccb1432020998f@Marios-MacBook-Pro.local.mail (4.0ms) Date: Sun, 13 Oct 2019 15:50:28 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: arnold@kaulkebauch.name Message-ID: <5da38e1418c19_e45a3fccb1432020998f@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://bechtelarmetz.info/fiona

Welcome arnold@kaulkebauch.name!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 147ms (Views: 0.2ms | ActiveRecord: 0.8ms | Allocations: 92867)  (0.6ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "haie@glover.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "haie@glover.com"], ["encrypted_password", "$2a$04$T4/pT3Ls9FCXVNq6M4prOuNrf3ZifiZeOHB.N5TKTKqKoFfzzkuiS"], ["confirmed_at", "2019-10-13 20:52:56.425877"], ["name", "Megan Bacon"], ["email", "haie@glover.com"], ["created_at", "2019-10-13 20:52:56.427556"], ["updated_at", "2019-10-13 20:52:56.427556"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "27ff2ef750ca94760662f5bf827a4e5853caa0b9739cfd5385a63958f74a14f9"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "27ff2ef750ca94760662f5bf827a4e5853caa0b9739cfd5385a63958f74a14f9"], ["reset_password_sent_at", "2019-10-13 20:52:56.508106"], ["updated_at", "2019-10-13 20:52:56.508265"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22hY1ZzPk7CW_GyrZVtP58%22%2C%0A++++++++++++redirectUrl%3A+%22%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:52:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"hY1ZzPk7CW_GyrZVtP58\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "27ff2ef750ca94760662f5bf827a4e5853caa0b9739cfd5385a63958f74a14f9"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"VBooBbngU-wSMZRdN9UH7Q\":{\"token\":\"$2a$10$vfnih8GEGZlALfKrrTFxVOLj/svllkIs7Pw96rmhRvF.eL0ZSDvt6\",\"expiry\":1572209576}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:52:56.580931"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"VBooBbngU-wSMZRdN9UH7Q\":{\"token\":\"$2a$10$vfnih8GEGZlALfKrrTFxVOLj/svllkIs7Pw96rmhRvF.eL0ZSDvt6\",\"expiry\":1572209576},\"WnWuBe40E4yBTo9DDlsr9A\":{\"token\":\"$2a$10$nlUVmWRZjO143Bhqp6Qqz.hwPTxNXG8TMuiSKRVlTppshk6ckDxD6\",\"expiry\":1572209576,\"updated_at\":\"2019-10-13 20:52:56 UTC\"}}"], ["updated_at", "2019-10-13 20:52:56.640700"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 121ms (Views: 0.3ms | ActiveRecord: 0.6ms | Allocations: 17625)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "houston.predovic@hahnchristiansen.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "houston.predovic@hahnchristiansen.io"], ["encrypted_password", "$2a$04$YLnysyXlICFg3mneod1ILehuK7s0Cv5i9L.IA2raCvO14eQ2Q2IgK"], ["confirmed_at", "2019-10-13 20:52:56.651651"], ["name", "Skip Dover"], ["email", "houston.predovic@hahnchristiansen.io"], ["created_at", "2019-10-13 20:52:56.652912"], ["updated_at", "2019-10-13 20:52:56.652912"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3b5f433187413664423c9c98c4e464b038c631c1e7f95cb7c2eef0e07d4b12e5"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "3b5f433187413664423c9c98c4e464b038c631c1e7f95cb7c2eef0e07d4b12e5"], ["reset_password_sent_at", "2019-10-13 20:52:56.656201"], ["updated_at", "2019-10-13 20:52:56.656363"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22kUeQAGiqpRMzFCB6xS5s%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:52:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"kUeQAGiqpRMzFCB6xS5s\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3b5f433187413664423c9c98c4e464b038c631c1e7f95cb7c2eef0e07d4b12e5"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5cFeQxJJ8Y707AmSgcDjDw\":{\"token\":\"$2a$10$QV5LX4zIil54dJaDGKkfT.Vw4zf4BhbLoZSy/X55VkKuDScyv/CUO\",\"expiry\":1572209576}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:52:56.725447"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=XFggiWUwKt9NSxGC_22moQ&client=5cFeQxJJ8Y707AmSgcDjDw&client_id=5cFeQxJJ8Y707AmSgcDjDw&config=&expiry=1572209576&reset_password=true&token=XFggiWUwKt9NSxGC_22moQ&uid=houston.predovic%40hahnchristiansen.io Completed 302 Found in 69ms (ActiveRecord: 0.3ms | Allocations: 1936) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "junior@mayert.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "junior@mayert.io"], ["encrypted_password", "$2a$04$qFuBe1IfBNopAPu.tqM.AuEE0GYc33cmQqrLEvClgGzj.UcrPA4S2"], ["confirmed_at", "2019-10-13 10:52:56"], ["name", "Leo Tarred"], ["email", "junior@mayert.io"], ["created_at", "2019-10-13 10:52:56"], ["updated_at", "2019-10-13 10:52:56"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "6298e695c8feeb8a4c5b121864d56b20822af74516b0dc1f8d3bf98a6575d065"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "6298e695c8feeb8a4c5b121864d56b20822af74516b0dc1f8d3bf98a6575d065"], ["reset_password_sent_at", "2019-10-13 10:52:56"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%227CD_zHiyugV9Scyaobtb%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:52:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"7CD_zHiyugV9Scyaobtb\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "6298e695c8feeb8a4c5b121864d56b20822af74516b0dc1f8d3bf98a6575d065"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1270)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "herb_anderson@bergstrom.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "herb_anderson@bergstrom.io"], ["encrypted_password", "$2a$04$fzK4xTcLkye45KfEMDtpcOis8ToUvE0P1yRj5ACds/RdTl0KYyM7S"], ["confirmed_at", "2019-10-13 20:52:56.748018"], ["name", "Val Lay"], ["email", "herb_anderson@bergstrom.io"], ["created_at", "2019-10-13 20:52:56.749417"], ["updated_at", "2019-10-13 20:52:56.749417"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "50b9ea6d5e25a7fe81e6106ab63c39434ac13374a2079224fca4f5e288747c53"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "50b9ea6d5e25a7fe81e6106ab63c39434ac13374a2079224fca4f5e288747c53"], ["reset_password_sent_at", "2019-10-13 20:52:56.751581"], ["updated_at", "2019-10-13 20:52:56.751760"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22PssjYdjyuPkVgBxfsfDeinvalid%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:52:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"PssjYdjyuPkVgBxfsfDeinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "8b43dadfaff22f3537548c1fb01d5234878e8a99a6880474b01314b77c4cdef7"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (1.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ebonie.wolff@bauch.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ebonie.wolff@bauch.com"], ["encrypted_password", "$2a$04$HwyymH1b0JuHUeQYv3sZk.7/eD73h.jbTjwIdDQmIctB6ETqkLvN6"], ["confirmed_at", "2019-10-13 20:54:05.874324"], ["name", "Pepe Roni"], ["email", "ebonie.wolff@bauch.com"], ["created_at", "2019-10-13 20:54:05.875798"], ["updated_at", "2019-10-13 20:54:05.875798"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b50a4db08f6be367fd5178cc46ef23e45526e1682fa76aeb293494cde3d2081a"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b50a4db08f6be367fd5178cc46ef23e45526e1682fa76aeb293494cde3d2081a"], ["reset_password_sent_at", "2019-10-13 20:54:05.971052"], ["updated_at", "2019-10-13 20:54:05.971236"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22BFY6LPthUwo8hbrWwx1H%22%2C%0A++++++++++++redirectUrl%3A+%22%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:54:05 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"BFY6LPthUwo8hbrWwx1H\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b50a4db08f6be367fd5178cc46ef23e45526e1682fa76aeb293494cde3d2081a"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dIn8bvbPr1oX5gRq_iKgCQ\":{\"token\":\"$2a$10$48zDe4A/Pt9mvMBaUxMEqe5C3gVjesHzd1k/Y.vTO6tIWgKppw8Em\",\"expiry\":1572209646}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:54:06.071515"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"dIn8bvbPr1oX5gRq_iKgCQ\":{\"token\":\"$2a$10$48zDe4A/Pt9mvMBaUxMEqe5C3gVjesHzd1k/Y.vTO6tIWgKppw8Em\",\"expiry\":1572209646},\"Uyx3avtOKRw3Clc8k8m4mw\":{\"token\":\"$2a$10$eHoKTksXxAN23LV/h4vW0Oea8SLl6QKyyTigViuOxuShtVyVeLBne\",\"expiry\":1572209646,\"updated_at\":\"2019-10-13 20:54:06 UTC\"}}"], ["updated_at", "2019-10-13 20:54:06.126043"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 141ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 17627)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carmen@goldner.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "carmen@goldner.info"], ["encrypted_password", "$2a$04$OvT6Sto3Wi/KCafb2cBHqO4LPQe/9Eq8H3ushQjRujg.xWMEjQyd."], ["confirmed_at", "2019-10-13 20:54:06.135179"], ["name", "Doug Graves"], ["email", "carmen@goldner.info"], ["created_at", "2019-10-13 20:54:06.136143"], ["updated_at", "2019-10-13 20:54:06.136143"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "757bf2a7fbf6c06812c9b9a25f5f7df875ead1fcb41a3c052c9c5b2bf99e3634"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "757bf2a7fbf6c06812c9b9a25f5f7df875ead1fcb41a3c052c9c5b2bf99e3634"], ["reset_password_sent_at", "2019-10-13 20:54:06.139038"], ["updated_at", "2019-10-13 20:54:06.139172"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22xN7jB_D-6VED1-K4JJeR%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:54:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"xN7jB_D-6VED1-K4JJeR\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "757bf2a7fbf6c06812c9b9a25f5f7df875ead1fcb41a3c052c9c5b2bf99e3634"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hyEWknKoJ5-1B6C3fsfV7g\":{\"token\":\"$2a$10$xxwUqoniJBBZ2ovdlO3/OOQcfd6sTL9vqAcoA4xng.TwmCdChdOKO\",\"expiry\":1572209646}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:54:06.201829"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=Iq-y9u_dL0sJkzTi1iju2A&client=hyEWknKoJ5-1B6C3fsfV7g&client_id=hyEWknKoJ5-1B6C3fsfV7g&config=&expiry=1572209646&reset_password=true&token=Iq-y9u_dL0sJkzTi1iju2A&uid=carmen%40goldner.info Completed 302 Found in 62ms (ActiveRecord: 0.3ms | Allocations: 1934) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gale.sawayn@macgyver.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gale.sawayn@macgyver.org"], ["encrypted_password", "$2a$04$72r2.itbYVgUVnCJlizyYe0eoNUMiQqvEuS/0mEvZhQ0cHuk/yaTO"], ["confirmed_at", "2019-10-13 10:54:06"], ["name", "Sandy Beech"], ["email", "gale.sawayn@macgyver.org"], ["created_at", "2019-10-13 10:54:06"], ["updated_at", "2019-10-13 10:54:06"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "375b23b4626d9faafadd3bc8844f72d06a4ae600921e0a24f625155351878e68"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "375b23b4626d9faafadd3bc8844f72d06a4ae600921e0a24f625155351878e68"], ["reset_password_sent_at", "2019-10-13 10:54:06"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22xo2vd6kW8tVmD9Zz9P1G%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:54:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"xo2vd6kW8tVmD9Zz9P1G\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "375b23b4626d9faafadd3bc8844f72d06a4ae600921e0a24f625155351878e68"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1270)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sheryl@miller.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sheryl@miller.co"], ["encrypted_password", "$2a$04$1xbSXJc/cjlcuTsK3U08kexnNiJLXt/0HwVyM92ME6pKbf3hYt9Te"], ["confirmed_at", "2019-10-13 20:54:06.222840"], ["name", "Barry Cade"], ["email", "sheryl@miller.co"], ["created_at", "2019-10-13 20:54:06.224081"], ["updated_at", "2019-10-13 20:54:06.224081"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "88e951f250471e4382a945084fcc7b07dba5ccb82f74913f5334e71f779d3460"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "88e951f250471e4382a945084fcc7b07dba5ccb82f74913f5334e71f779d3460"], ["reset_password_sent_at", "2019-10-13 20:54:06.225934"], ["updated_at", "2019-10-13 20:54:06.226088"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22NnwyTstVHEBxBfkzP9_tinvalid%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:54:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"NnwyTstVHEBxBfkzP9_tinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "6223cbb92e20857f06da81932db870a507111903e2765cfbf64412763312ab09"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:54:06 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."reset_password_token" = ? ORDER BY "admins"."id" ASC LIMIT ? [["reset_password_token", "41473d2bf6585c7eec5aa59e1195d66ab430de103a3bba3c58694925b6b20de9"], ["LIMIT", 1]] Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 1.1ms | Allocations: 2281)  (0.3ms) rollback transaction  (1.3ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "demarcus@jacobsonullrich.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "demarcus@jacobsonullrich.biz"], ["encrypted_password", "$2a$04$3hVK1PYXi/I5YRbj5EKOxuZqQgVK4ExAYPtkBMX/uGehxq7dH1LDa"], ["confirmed_at", "2019-10-13 20:56:34.044893"], ["name", "Mary Gold"], ["email", "demarcus@jacobsonullrich.biz"], ["created_at", "2019-10-13 20:56:34.046304"], ["updated_at", "2019-10-13 20:56:34.046304"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3fb79bf2ddf4e434c2685d51e0747267a2c77cd25a8db0c2aabf7b4921a41ef3"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "3fb79bf2ddf4e434c2685d51e0747267a2c77cd25a8db0c2aabf7b4921a41ef3"], ["reset_password_sent_at", "2019-10-13 20:56:34.134103"], ["updated_at", "2019-10-13 20:56:34.134243"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%2273gHBssuPhUD64okhwLW%22%2C%0A++++++++++++redirectUrl%3A+%22%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:56:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"73gHBssuPhUD64okhwLW\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3fb79bf2ddf4e434c2685d51e0747267a2c77cd25a8db0c2aabf7b4921a41ef3"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7PQuGOapYwAkNR2_P2ngeg\":{\"token\":\"$2a$10$oH3z9Vv5Yy3ZdZduSbQ37unoXT0vRbrxyHnojhj4ijYWV8erdjlbO\",\"expiry\":1572209794}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:56:34.215730"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7PQuGOapYwAkNR2_P2ngeg\":{\"token\":\"$2a$10$oH3z9Vv5Yy3ZdZduSbQ37unoXT0vRbrxyHnojhj4ijYWV8erdjlbO\",\"expiry\":1572209794},\"sOSkXQzEDFg-AHLPt18WlA\":{\"token\":\"$2a$10$AbC.Vn9PhtRkDNQl7pJDFOA8bBltRyK8Wq8ZS4E56vyeH3Smks8Sq\",\"expiry\":1572209794,\"updated_at\":\"2019-10-13 20:56:34 UTC\"}}"], ["updated_at", "2019-10-13 20:56:34.271347"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 125ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 17627)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lianne_hills@quitzonmetz.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lianne_hills@quitzonmetz.com"], ["encrypted_password", "$2a$04$U9WbLB6ahy9y0t4mMr6Wa.DvdAxYbX8RUSTQYbAy7BFGrNq2oXHHS"], ["confirmed_at", "2019-10-13 20:56:34.282146"], ["name", "Seymour Legg"], ["email", "lianne_hills@quitzonmetz.com"], ["created_at", "2019-10-13 20:56:34.283192"], ["updated_at", "2019-10-13 20:56:34.283192"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f80f9232472c764690c8411d269fe8ca038fcd757edf97d05f8e00fa7d6715ec"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f80f9232472c764690c8411d269fe8ca038fcd757edf97d05f8e00fa7d6715ec"], ["reset_password_sent_at", "2019-10-13 20:56:34.286324"], ["updated_at", "2019-10-13 20:56:34.286473"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22CWK5oyCqmxjzqyFXmTNL%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:56:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"CWK5oyCqmxjzqyFXmTNL\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f80f9232472c764690c8411d269fe8ca038fcd757edf97d05f8e00fa7d6715ec"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"tZoutYNO-fonaZ7pTHHUIA\":{\"token\":\"$2a$10$uuNaUUwICPO0eipRJDwFIezfiSpeuHGuLL17Ib2etfKAtnszih0L6\",\"expiry\":1572209794}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 20:56:34.372952"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=Wk2UvnTQjN00Cks2Z_BE0w&client=tZoutYNO-fonaZ7pTHHUIA&client_id=tZoutYNO-fonaZ7pTHHUIA&config=&expiry=1572209794&reset_password=true&token=Wk2UvnTQjN00Cks2Z_BE0w&uid=lianne_hills%40quitzonmetz.com Completed 302 Found in 68ms (ActiveRecord: 0.4ms | Allocations: 1938) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "summer@aufderharkuphal.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "summer@aufderharkuphal.biz"], ["encrypted_password", "$2a$04$3LAaCr0BZDWyUo/RPm.adOXKdL5WqLLxh/ZWAm.mKztRkZczNyxGy"], ["confirmed_at", "2019-10-13 10:56:34"], ["name", "Shandy Lear"], ["email", "summer@aufderharkuphal.biz"], ["created_at", "2019-10-13 10:56:34"], ["updated_at", "2019-10-13 10:56:34"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "677444d297309b580d4af83782840eb8922e2547780df0831e804f07b3a9314d"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "677444d297309b580d4af83782840eb8922e2547780df0831e804f07b3a9314d"], ["reset_password_sent_at", "2019-10-13 10:56:34"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22iFYJd-8xJuPqYC9xofP-%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:56:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"iFYJd-8xJuPqYC9xofP-\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "677444d297309b580d4af83782840eb8922e2547780df0831e804f07b3a9314d"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1270)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "claudie@prosacco.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.8ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "claudie@prosacco.com"], ["encrypted_password", "$2a$04$QUMH3lTddTjkhkXekdHuuu1ckw69kKDt9iVDW8dAHcGS29Stpzvy6"], ["confirmed_at", "2019-10-13 20:56:34.395374"], ["name", "Liv Long"], ["email", "claudie@prosacco.com"], ["created_at", "2019-10-13 20:56:34.396517"], ["updated_at", "2019-10-13 20:56:34.396517"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "75be9de026c5914c281f2411c157413a16656f705960213de4fab339fa057e65"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.3ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "75be9de026c5914c281f2411c157413a16656f705960213de4fab339fa057e65"], ["reset_password_sent_at", "2019-10-13 20:56:34.399897"], ["updated_at", "2019-10-13 20:56:34.400346"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22ZHtC1v-NdTqaoZhUWdCxinvalid%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 15:56:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"ZHtC1v-NdTqaoZhUWdCxinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ff37c20fc66be832a9f2daec2f104981e019fa2007ac3790ff72cec78a7b22dd"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:56:34 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."reset_password_token" = ? ORDER BY "admins"."id" ASC LIMIT ? [["reset_password_token", "41473d2bf6585c7eec5aa59e1195d66ab430de103a3bba3c58694925b6b20de9"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 2281)  (0.1ms) rollback transaction  (1.2ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:57:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"gavin.jacobs@mills.com\"\n password: \"RkQbI3iRc1J\"\n passwordConfirmation: \"RkQbI3iRc1J\"\n confirmSuccessUrl: \"http://mraz.io/warner_schultz\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "gavin.jacobs@mills.com"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gavin.jacobs@mills.com"], ["encrypted_password", "$2a$04$pDm0JIlKZB5L5tfPXB7rxubr3Bm1jUp..mgN2i4BlAGuJNgZdbwf."], ["confirmation_token", "LiphooNrAbZHHWafUrqU"], ["confirmation_sent_at", "2019-10-13 20:57:43.416116"], ["email", "gavin.jacobs@mills.com"], ["created_at", "2019-10-13 20:57:43.415989"], ["updated_at", "2019-10-13 20:57:43.415989"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 2.0ms | Allocations: 1001) Devise::Mailer#confirmation_instructions: processed outbound mail in 147.9ms Delivered mail 5da38fc78ada8_e5983fcda18320084382@Marios-MacBook-Pro.local.mail (6.1ms) Date: Sun, 13 Oct 2019 15:57:43 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: gavin.jacobs@mills.com Message-ID: <5da38fc78ada8_e5983fcda18320084382@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://mraz.io/warner_schultz

Welcome gavin.jacobs@mills.com!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 180ms (Views: 0.2ms | ActiveRecord: 1.1ms | Allocations: 92868)  (0.6ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:59:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"jee.macejkovic@stiedemann.io\"\n password: \"RlAe13BoC5g\"\n passwordConfirmation: \"RlAe13BoC5g\"\n confirmSuccessUrl: \"http://mueller.info/jere_stoltenberg\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "jee.macejkovic@stiedemann.io"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jee.macejkovic@stiedemann.io"], ["encrypted_password", "$2a$04$Ek25Lw2iLJSl0kGrzIPIcOW8/8e5hJh/eHvzSEhXmG.DzR.UQKsWe"], ["confirmation_token", "NVFxJ1_xdrCVtrJXMdw_"], ["confirmation_sent_at", "2019-10-13 20:59:49.765304"], ["email", "jee.macejkovic@stiedemann.io"], ["created_at", "2019-10-13 20:59:49.765193"], ["updated_at", "2019-10-13 20:59:49.765193"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 1.9ms | Allocations: 1000) Devise::Mailer#confirmation_instructions: processed outbound mail in 133.1ms Delivered mail 5da39045dc35f_e5cf3fef10032020396af@Marios-MacBook-Pro.local.mail (4.2ms) Date: Sun, 13 Oct 2019 15:59:49 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: jee.macejkovic@stiedemann.io Message-ID: <5da39045dc35f_e5cf3fef10032020396af@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://mueller.info/jere_stoltenberg

Welcome jee.macejkovic@stiedemann.io!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 159ms (Views: 0.3ms | ActiveRecord: 0.9ms | Allocations: 92867)  (0.5ms) rollback transaction  (0.9ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 15:59:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"codi@ruel.biz\"\n password: \"L8sOtK4j19\"\n passwordConfirmation: \"L8sOtK4j19\"\n confirmSuccessUrl: \"http://johnson.io/randolph\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 14926)  (0.0ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:08:31 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"lucius.doyle@hermiston.info\"\n password: \"T9dMlJsV\"\n passwordConfirmation: \"T9dMlJsV\"\n confirmSuccessUrl: \"http://brown.org/sherman\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 14926)  (0.0ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:10:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"jodie_dickens@bradtkecarroll.net\"\n password: \"5Xi1Cs2C7hT4rPt\"\n passwordConfirmation: \"5Xi1Cs2C7hT4rPt\"\n confirmSuccessUrl: \"http://dooleyhegmann.info/morris_brekke\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 14926)  (0.0ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rosie.beatty@gibsonemmerich.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rosie.beatty@gibsonemmerich.net"], ["encrypted_password", "$2a$04$WYo81BGwduTb4yMkv0EWuuMqy/xlL4xW1kMkee7pQfzArbEuhFIq6"], ["confirmed_at", "2019-10-13 21:10:53.986263"], ["name", "Lou Zar"], ["email", "rosie.beatty@gibsonemmerich.net"], ["created_at", "2019-10-13 21:10:53.987529"], ["updated_at", "2019-10-13 21:10:53.987529"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0e80b38e6d95d2d6cca59f3fbabdd8106b5d687e3ae2d4ab4c77960daf38b9a6"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "0e80b38e6d95d2d6cca59f3fbabdd8106b5d687e3ae2d4ab4c77960daf38b9a6"], ["reset_password_sent_at", "2019-10-13 21:10:54.068085"], ["updated_at", "2019-10-13 21:10:54.068232"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%226XNL5nxQ4Ct2Wpy4FcKs%22%2C%0A++++++++++++redirectUrl%3A+%22%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:10:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"6XNL5nxQ4Ct2Wpy4FcKs\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0e80b38e6d95d2d6cca59f3fbabdd8106b5d687e3ae2d4ab4c77960daf38b9a6"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NyzpggYmUX17mc9fXZy6HA\":{\"token\":\"$2a$10$mat4t22mq9wFCtA0YBZ1eeZPQaJvZem./9KGNzLlG/WP5ls5wxu/O\",\"expiry\":1572210654}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 21:10:54.129809"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NyzpggYmUX17mc9fXZy6HA\":{\"token\":\"$2a$10$mat4t22mq9wFCtA0YBZ1eeZPQaJvZem./9KGNzLlG/WP5ls5wxu/O\",\"expiry\":1572210654},\"WZTU6sPeXapp67glzn_MOg\":{\"token\":\"$2a$10$LAczTQ7o0Hp64sTfBZ.wyuRco6x5k6MYwX/CUgOpya7n9rjCGxdn6\",\"expiry\":1572210654,\"updated_at\":\"2019-10-13 21:10:54 UTC\"}}"], ["updated_at", "2019-10-13 21:10:54.173745"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 96ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 16916)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ramon@mueller.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.2ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ramon@mueller.org"], ["encrypted_password", "$2a$04$yDufb/zDYKJJLmNoTaDLouNQpEkfC9nY9hX7IyE5R.AFXltFzlDnW"], ["confirmed_at", "2019-10-13 21:10:54.180313"], ["name", "Misty Meanor"], ["email", "ramon@mueller.org"], ["created_at", "2019-10-13 21:10:54.180985"], ["updated_at", "2019-10-13 21:10:54.180985"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a777784e64e2f346efb24cf65889844687374979eee16d0bca4ca1d17d0ab602"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "a777784e64e2f346efb24cf65889844687374979eee16d0bca4ca1d17d0ab602"], ["reset_password_sent_at", "2019-10-13 21:10:54.182942"], ["updated_at", "2019-10-13 21:10:54.183025"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22ZYMMCpYdyea9wB-E8JzK%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:10:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"ZYMMCpYdyea9wB-E8JzK\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "a777784e64e2f346efb24cf65889844687374979eee16d0bca4ca1d17d0ab602"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Zv49U8Kn_M97G9p6eYC3fQ\":{\"token\":\"$2a$10$Wj2olUMFNUJtrxCknJVH2.EXpRpPOuPcNGAwTW8lTjwp5KLbKbrha\",\"expiry\":1572210654}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 21:10:54.232212"], ["id", 1]]  (0.3ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=jWb9Ax6f7SLGoQhRKJ6Fjw&client=Zv49U8Kn_M97G9p6eYC3fQ&client_id=Zv49U8Kn_M97G9p6eYC3fQ&config=&expiry=1572210654&reset_password=true&token=jWb9Ax6f7SLGoQhRKJ6Fjw&uid=ramon%40mueller.org Completed 302 Found in 49ms (ActiveRecord: 0.5ms | Allocations: 1934) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "benjamin_fisher@borer.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "benjamin_fisher@borer.co"], ["encrypted_password", "$2a$04$uNtsjm83MODFwYmNGBZCP.9siHnF4lhB0rOSmuvdC1yoTHyt3zILi"], ["confirmed_at", "2019-10-13 11:10:54"], ["name", "Polly Ester"], ["email", "benjamin_fisher@borer.co"], ["created_at", "2019-10-13 11:10:54"], ["updated_at", "2019-10-13 11:10:54"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b016c1fa6a3d79267944a20fcd628add67fb1b0b2a8cc4b4ee44312a2ffe7be2"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b016c1fa6a3d79267944a20fcd628add67fb1b0b2a8cc4b4ee44312a2ffe7be2"], ["reset_password_sent_at", "2019-10-13 11:10:54"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22oX3ocYviRBoRUnYiLF4a%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:10:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"oX3ocYviRBoRUnYiLF4a\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b016c1fa6a3d79267944a20fcd628add67fb1b0b2a8cc4b4ee44312a2ffe7be2"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1270)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "joline@effertz.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "joline@effertz.name"], ["encrypted_password", "$2a$04$ImvMDaK2ZxwFQkbpL1zfE.pgYHai.nufBMUkVaEaPbQKs0aTfeqg2"], ["confirmed_at", "2019-10-13 21:10:54.251827"], ["name", "Rusty Fossat"], ["email", "joline@effertz.name"], ["created_at", "2019-10-13 21:10:54.253060"], ["updated_at", "2019-10-13 21:10:54.253060"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "df0f0c112019af3db04825d5668906693f23edce4e1e4507d0085f2db952a37b"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "df0f0c112019af3db04825d5668906693f23edce4e1e4507d0085f2db952a37b"], ["reset_password_sent_at", "2019-10-13 21:10:54.255021"], ["updated_at", "2019-10-13 21:10:54.255181"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22ZMp16xGfsdS4LeKxa2ySinvalid%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:10:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"ZMp16xGfsdS4LeKxa2ySinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "7846d35b0823ebe60e101c0c3627737e65f05eb2f803082e05f504b054da0d77"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.3ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:10:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."reset_password_token" = ? ORDER BY "admins"."id" ASC LIMIT ? [["reset_password_token", "41473d2bf6585c7eec5aa59e1195d66ab430de103a3bba3c58694925b6b20de9"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 2281)  (0.1ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lanette@mayert.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lanette@mayert.biz"], ["encrypted_password", "$2a$04$zruGop.pR9jdmniUE1dhYu0nTGdDoaqxpvEkbH2a4S.G46Vuma2ga"], ["confirmed_at", "2019-10-13 21:12:00.485799"], ["name", "Bill Ding"], ["email", "lanette@mayert.biz"], ["created_at", "2019-10-13 21:12:00.487308"], ["updated_at", "2019-10-13 21:12:00.487308"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c48a20d679768e1d280b9f78e6bf06c82e613b7904abbeeee2361c0c5f14bb58"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "c48a20d679768e1d280b9f78e6bf06c82e613b7904abbeeee2361c0c5f14bb58"], ["reset_password_sent_at", "2019-10-13 21:12:00.585048"], ["updated_at", "2019-10-13 21:12:00.585253"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22Zxr3URvnwEHuHJru7sQ6%22%2C%0A++++++++++++redirectUrl%3A+%22%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:12:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"Zxr3URvnwEHuHJru7sQ6\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c48a20d679768e1d280b9f78e6bf06c82e613b7904abbeeee2361c0c5f14bb58"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LpjVeopwJQtR0sJZ6AbODQ\":{\"token\":\"$2a$10$ivci9en.dbZVpXc5ZJoXAe8lU9nQRPSOjAUHuWFqsJWqfe7XHIP4G\",\"expiry\":1572210720}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 21:12:00.673778"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"LpjVeopwJQtR0sJZ6AbODQ\":{\"token\":\"$2a$10$ivci9en.dbZVpXc5ZJoXAe8lU9nQRPSOjAUHuWFqsJWqfe7XHIP4G\",\"expiry\":1572210720},\"UD1b1_YoZ1eCmwTvXDCfZQ\":{\"token\":\"$2a$10$4Nec9D.GmwdWyVJxHolAS.tNRYO5ARsjyPTmdKI8U16yJY0ioM1YC\",\"expiry\":1572210720,\"updated_at\":\"2019-10-13 21:12:00 UTC\"}}"], ["updated_at", "2019-10-13 21:12:00.719459"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 119ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 16579)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sharie.weinat@marks.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sharie.weinat@marks.co"], ["encrypted_password", "$2a$04$hkLdceElIZkINVHUrl.X.uwBK4z3vGMfI3qSxAaNtjR8/XiQlYb66"], ["confirmed_at", "2019-10-13 21:12:00.726535"], ["name", "Faye Tallity"], ["email", "sharie.weinat@marks.co"], ["created_at", "2019-10-13 21:12:00.727388"], ["updated_at", "2019-10-13 21:12:00.727388"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ba5666061981bf9f6292efbb6c4929c54171e86626e35c62336aa2dd810ecc18"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "ba5666061981bf9f6292efbb6c4929c54171e86626e35c62336aa2dd810ecc18"], ["reset_password_sent_at", "2019-10-13 21:12:00.729428"], ["updated_at", "2019-10-13 21:12:00.729519"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22NTNfVxFuj4sibpKBe7tb%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:12:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"NTNfVxFuj4sibpKBe7tb\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ba5666061981bf9f6292efbb6c4929c54171e86626e35c62336aa2dd810ecc18"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Ha2oguoDJTzinHEWWbZ1cw\":{\"token\":\"$2a$10$l1JILSHnK3F9lAaKKp0O9eeGLLcnSfsR4woxR8YYbNyXzr.XGj6jG\",\"expiry\":1572210720}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 21:12:00.780340"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=NkbtuLRYDYyPzSwoMBQTHA&client=Ha2oguoDJTzinHEWWbZ1cw&client_id=Ha2oguoDJTzinHEWWbZ1cw&config=&expiry=1572210720&reset_password=true&token=NkbtuLRYDYyPzSwoMBQTHA&uid=sharie.weinat%40marks.co Completed 302 Found in 51ms (ActiveRecord: 0.3ms | Allocations: 1934) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ashely.beahan@grahamwehner.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ashely.beahan@grahamwehner.io"], ["encrypted_password", "$2a$04$92s98OB8bjebLS1R02S5x.Zo/NhiXOVYEM7BOFbYhN2L.N6sQGBLS"], ["confirmed_at", "2019-10-13 11:12:00"], ["name", "Lynn Guini"], ["email", "ashely.beahan@grahamwehner.io"], ["created_at", "2019-10-13 11:12:00"], ["updated_at", "2019-10-13 11:12:00"]]  (0.2ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "aea20308addbfdd017a26ebe86bba40671862548dd3d283fbad8035606a54237"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "aea20308addbfdd017a26ebe86bba40671862548dd3d283fbad8035606a54237"], ["reset_password_sent_at", "2019-10-13 11:12:00"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22WmK-6v42AVTtYaux9yWj%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:12:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"WmK-6v42AVTtYaux9yWj\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "aea20308addbfdd017a26ebe86bba40671862548dd3d283fbad8035606a54237"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1270)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "julianne.skiles@schinner.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "julianne.skiles@schinner.co"], ["encrypted_password", "$2a$04$kFEdeS1YhBP14PMz7GOdTeCDKSzhuKG6GvE4q87s6U/1O4P4tePC2"], ["confirmed_at", "2019-10-13 21:12:00.805595"], ["name", "Bess Eaton"], ["email", "julianne.skiles@schinner.co"], ["created_at", "2019-10-13 21:12:00.806782"], ["updated_at", "2019-10-13 21:12:00.806782"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cb379c47f5d4e11b60b51c351cc4dcc4f6b6f8b7547d2f4a762936fc9043f7b9"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "cb379c47f5d4e11b60b51c351cc4dcc4f6b6f8b7547d2f4a762936fc9043f7b9"], ["reset_password_sent_at", "2019-10-13 21:12:00.809291"], ["updated_at", "2019-10-13 21:12:00.809506"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22kqGxZz7uQhkT9zQnSxPainvalid%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:12:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"kqGxZz7uQhkT9zQnSxPainvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4beaf27e168bfe0141610dc75eafda86c8ca9d035537739175617d797184c5d4"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:12:00 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.1ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dalton_strosin@schmidtgrady.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dalton_strosin@schmidtgrady.biz"], ["encrypted_password", "$2a$04$M0y2sX6WGxAUV3waH2vNeuKt7jI4XDGsNvMWfhbF/q7Qe6fwzixZi"], ["confirmed_at", "2019-10-13 21:29:43.071587"], ["name", "Rob Banks"], ["email", "dalton_strosin@schmidtgrady.biz"], ["created_at", "2019-10-13 21:29:43.072779"], ["updated_at", "2019-10-13 21:29:43.072779"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"dalton_strosin@schmidtgrady.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dalton_strosin@schmidtgrady.biz"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"W8MHGineTvAi-Q2dMXNbFw\":{\"token\":\"$2a$10$KnJoX94sEk6bE1rGbQaeu.AIC6IJjHzQB99u2ju9eoT4yA.o9u8Pm\",\"expiry\":1572211783,\"updated_at\":\"2019-10-13 21:29:43 UTC\"}}"], ["updated_at", "2019-10-13 21:29:43.140326"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 21:29:43.143819"], ["last_sign_in_at", "2019-10-13 21:29:43.143819"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 21:29:43.144225"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 17325) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stephania.gottlieb@weimannritchie.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "stephania.gottlieb@weimannritchie.net"], ["encrypted_password", "$2a$04$sdXV0owP0.eznhisjsnDEuLWVuRNYjaWU4XZB/SijKq2FKnc.YgY."], ["confirmed_at", "2019-10-13 21:29:43.152327"], ["name", "Anita Knapp"], ["email", "stephania.gottlieb@weimannritchie.net"], ["created_at", "2019-10-13 21:29:43.153461"], ["updated_at", "2019-10-13 21:29:43.153461"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"stephania.gottlieb@weimannritchie.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stephania.gottlieb@weimannritchie.net"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2044)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ivy@ankundingkerluke.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ivy@ankundingkerluke.org"], ["encrypted_password", "$2a$04$khdPyM2joaS626YP3UHa/.5SBmkgjUwreHCWABRPElYU.ombqejK6"], ["confirmation_token", "aApqiotmyK7ecax8xW-W"], ["confirmation_sent_at", "2019-10-13 21:29:43.163763"], ["name", "Bill Ng"], ["email", "ivy@ankundingkerluke.org"], ["created_at", "2019-10-13 21:29:43.163653"], ["updated_at", "2019-10-13 21:29:43.163653"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ivy@ankundingkerluke.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ivy@ankundingkerluke.org"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1363)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hermelinda@haag.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hermelinda@haag.name"], ["encrypted_password", "$2a$04$X8gJ53nWsWiSLjhbk0ZbNOUATJB5xNb0iexutyzhwf2hFm/SE4kYe"], ["confirmed_at", "2019-10-13 21:29:43.171552"], ["locked_at", "2019-10-13 21:29:43.171566"], ["name", "Andy Gravity"], ["email", "hermelinda@haag.name"], ["created_at", "2019-10-13 21:29:43.172465"], ["updated_at", "2019-10-13 21:29:43.172465"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"hermelinda@haag.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "hermelinda@haag.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kali@satterfieldabbott.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kali@satterfieldabbott.name"], ["encrypted_password", "$2a$04$4BOodW/obrf6UL4aa.FUauXNdiwOHXiWs1JIrs8ygXo4ZaPKNFoHu"], ["confirmed_at", "2019-10-13 21:29:43.181585"], ["name", "Marco DeStinkshun"], ["email", "kali@satterfieldabbott.name"], ["created_at", "2019-10-13 21:29:43.182572"], ["updated_at", "2019-10-13 21:29:43.182572"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"kali@satterfieldabbott.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kali@satterfieldabbott.name"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1359)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "rosella@tremblayrogahn.name"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.5ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "rosella@tremblayrogahn.name"], ["encrypted_password", "$2a$04$8299L0oxcdLWT5hfj2lZTubl6DvrHhDFO.gEJSSPQIBlQ6LLqniBC"], ["confirmed_at", "2019-10-13 21:29:43.202189"], ["email", "rosella@tremblayrogahn.name"], ["created_at", "2019-10-13 21:29:43.203581"], ["updated_at", "2019-10-13 21:29:43.203581"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"rosella@tremblayrogahn.name\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "rosella@tremblayrogahn.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"CUCHe55TlzgT6DKfLSbVhg\":{\"token\":\"$2a$10$cnkk6.7HtuNhQjseilX1aeVbUojWmfVQgDp49eCYZmZrbBhbnPL.a\",\"expiry\":1572211783,\"updated_at\":\"2019-10-13 21:29:43 UTC\"}}"], ["updated_at", "2019-10-13 21:29:43.264342"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2404)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "akiko@barrows.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "akiko@barrows.name"], ["encrypted_password", "$2a$04$JLRyCWAjcKrdj/52qkd4X.IFqGcJq8C8kOEhswwADgf54eAmoqo72"], ["confirmed_at", "2019-10-13 21:29:43.271611"], ["name", "Pete Moss"], ["email", "akiko@barrows.name"], ["created_at", "2019-10-13 21:29:43.272878"], ["updated_at", "2019-10-13 21:29:43.272878"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DonwQxXIqmBvd03c9ryasw\":{\"token\":\"$2a$10$mj4Tq4Xgv4c3dbn/1BWwC.v5lVqYGDG3C99qKRIqY..FKxXF4D9bG\",\"expiry\":1572211783,\"updated_at\":\"2019-10-13 21:29:43 UTC\"}}"], ["updated_at", "2019-10-13 21:29:43.322704"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "akiko@barrows.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 21:29:43.372692"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1896) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "robbie.franecki@wehner.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "robbie.franecki@wehner.com"], ["encrypted_password", "$2a$04$rKNbYsVjOfZcrBIotSXi2uWESBqUdyYUG94R2G6Z5cVGObX9xuljS"], ["confirmed_at", "2019-10-13 21:29:43.380201"], ["name", "Mike Czech"], ["email", "robbie.franecki@wehner.com"], ["created_at", "2019-10-13 21:29:43.380965"], ["updated_at", "2019-10-13 21:29:43.380965"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "wenona@cormier.io"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "wenona@cormier.io"], ["encrypted_password", "$2a$04$PAVCGuH7WUGToZZ8OgxNnud.OR5z3de3WN2wp2OAp42SLZ6LamcKm"], ["confirmed_at", "2019-10-13 21:29:43.385246"], ["email", "wenona@cormier.io"], ["created_at", "2019-10-13 21:29:43.386232"], ["updated_at", "2019-10-13 21:29:43.386232"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"4q9enFpfEbAs1js7_-GExg\":{\"token\":\"$2a$10$aT3AESrSb5PxdP/2JfAkYeb0ueWD.6Hz8PY/Kgqjo0e8GcB4bjtpK\",\"expiry\":1572211783,\"updated_at\":\"2019-10-13 21:29:43 UTC\"}}"], ["updated_at", "2019-10-13 21:29:43.438209"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "wenona@cormier.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 21:29:43.485758"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 1825) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lottie@breitenberg.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lottie@breitenberg.org"], ["encrypted_password", "$2a$04$NoSU28e1h6f05y5mRjm6iee0L6RwUASsk1xwJ6LEsLP09VKxpVJAy"], ["confirmed_at", "2019-10-13 21:29:43.493610"], ["name", "Adam Meway"], ["email", "lottie@breitenberg.org"], ["created_at", "2019-10-13 21:29:43.494446"], ["updated_at", "2019-10-13 21:29:43.494446"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"lottie@breitenberg.org\",\n redirectUrl: \"http://beahan.name/destiny.hilll\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "lottie@breitenberg.org"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b779d854e03d0adcf038246bb4caab8840aace84912c3addb562c7ef139c0e36"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b779d854e03d0adcf038246bb4caab8840aace84912c3addb562c7ef139c0e36"], ["reset_password_sent_at", "2019-10-13 21:29:43.575950"], ["updated_at", "2019-10-13 21:29:43.576103"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.7ms | Allocations: 1281) Devise::Mailer#reset_password_instructions: processed outbound mail in 124.6ms Delivered mail 5da39747abd1b_ec693fd7208320204674e@Marios-MacBook-Pro.local.mail (3.9ms) Date: Sun, 13 Oct 2019 16:29:43 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: lottie@breitenberg.org Message-ID: <5da39747abd1b_ec693fd7208320204674e@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: lottie@breitenberg.org provider: email redirect-url: http://beahan.name/destiny.hilll client-config: default

Hello lottie@breitenberg.org!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 210ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 67730) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fbeahan.name%2Fdestiny.hilll&variables%5Btoken%5D=ozkkEaHKi7Ffvzqjhzij" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://beahan.name/destiny.hilll", "token"=>"ozkkEaHKi7Ffvzqjhzij"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b779d854e03d0adcf038246bb4caab8840aace84912c3addb562c7ef139c0e36"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bk5yolx2OSYJihuRGwxmrA\":{\"token\":\"$2a$10$uHULENcNzGFY2bjEVYqHX.aoqqJOULcpEb2/qIC5DG8fUK.aGZ2g6\",\"expiry\":1572211783}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 21:29:43.751353"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://beahan.name/destiny.hilll?access-token=7QlyAM3r6ZL42xUAhKoyRw&client=bk5yolx2OSYJihuRGwxmrA&client_id=bk5yolx2OSYJihuRGwxmrA&config=&expiry=1572211783&reset_password=true&token=7QlyAM3r6ZL42xUAhKoyRw&uid=lottie%40breitenberg.org Completed 302 Found in 44ms (ActiveRecord: 0.2ms | Allocations: 2145) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://daughertygutkowski.com/orville_haley\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"marvin@beahan.io\"\n name: \"Shon Hermiston\"\n password: \"GmVuQo7C\"\n passwordConfirmation: \"GmVuQo7C\"\n confirmSuccessUrl: \"http://spencerhowe.co/colby\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marvin@beahan.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "marvin@beahan.io"], ["encrypted_password", "$2a$04$aIgqRYImYvQdziHxoQbmPera4wnDoPNiPQhmXyiRAbyXTHldk6a.2"], ["confirmation_token", "gTQiRkKiPK7RxQNZX5CJ"], ["confirmation_sent_at", "2019-10-13 21:29:43.765737"], ["name", "Shon Hermiston"], ["email", "marvin@beahan.io"], ["created_at", "2019-10-13 21:29:43.765667"], ["updated_at", "2019-10-13 21:29:43.765667"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.7ms | Allocations: 581) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.8ms Delivered mail 5da39747bbc5e_ec693fd7208320204685b@Marios-MacBook-Pro.local.mail (1.1ms) Date: Sun, 13 Oct 2019 16:29:43 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: marvin@beahan.io Message-ID: <5da39747bbc5e_ec693fd7208320204685b@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://spencerhowe.co/colby

Welcome marvin@beahan.io!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5457)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fspencerhowe.co%2Fcolby&variables%5Btoken%5D=gTQiRkKiPK7RxQNZX5CJ" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://spencerhowe.co/colby", "token"=>"gTQiRkKiPK7RxQNZX5CJ"}} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "gTQiRkKiPK7RxQNZX5CJ"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 21:29:43.776571"], ["updated_at", "2019-10-13 21:29:43.776825"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://spencerhowe.co/colby?account_confirmation_success=true Completed 302 Found in 7ms (ActiveRecord: 0.5ms | Allocations: 2178) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Darin Armstrong\"\n password: \"YiLsIqBnTpIuWt7\"\n passwordConfirmation: \"YiLsIqBnTpIuWt7\"\n confirmSuccessUrl: \"http://mccluremraz.info/vera\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 10ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 2713)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.1ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"marcell_funk@friesen.name\"\n password: \"O6qKmYh0LqHiMh\"\n passwordConfirmation: \"O6qKmYh0LqHiMh\"\n confirmSuccessUrl: \"http://bergnaum.io/mazie.smitham\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 818)  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "idell_aufderhar@dubuquegottlieb.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "idell_aufderhar@dubuquegottlieb.com"], ["encrypted_password", "$2a$04$kKH/EH5rvRaFPOMQtAES5.QN9FVwAJpkgzCZRGa0Fvl3Dhr1t9L.6"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 21:29:43.815051"], ["name", "Theresa Brown"], ["email", "idell_aufderhar@dubuquegottlieb.com"], ["created_at", "2019-10-13 21:29:43.817269"], ["updated_at", "2019-10-13 21:29:43.817269"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Fg5uMxxg4ncf_oq1H4DZ9g\":{\"token\":\"$2a$10$Wn8lOpVyLiBvptpL9TIZguDdyWWb0M8QT/zvyFqqESI5Olngc.L.W\",\"expiry\":1572211783,\"updated_at\":\"2019-10-13 21:29:43 UTC\"}}"], ["updated_at", "2019-10-13 21:29:43.878708"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "idell_aufderhar@dubuquegottlieb.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$scZfT3G06EqVgou1oe4bwuh9kZx4EFJH8tDvMnPlaTZl36xQ7vItS"], ["updated_at", "2019-10-13 21:29:43.935879"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 21:29:43.937799"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2885) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "donn.harvey@konopelski.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "donn.harvey@konopelski.org"], ["encrypted_password", "$2a$04$50uIMszp5t2uFicRRK7w/uDiOfWc.D8yEdHawxwWkS1K4vjREGOOm"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 21:29:43.945095"], ["name", "Homan Provement"], ["email", "donn.harvey@konopelski.org"], ["created_at", "2019-10-13 21:29:43.946441"], ["updated_at", "2019-10-13 21:29:43.946441"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KolDCOEpnQ4rwZeXL7vIqA\":{\"token\":\"$2a$10$You2pK2tlReda0A7TFZSVuqRlLw2uWYChyV34d4KZFFe7Enj5Ifjy\",\"expiry\":1572211783,\"updated_at\":\"2019-10-13 21:29:43 UTC\"}}"], ["updated_at", "2019-10-13 21:29:43.996083"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:43 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "donn.harvey@konopelski.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$4KnAraV2QJz56cRS5r3dr.Ovs4.61.fYznvbumKHibE95QNiXi3xO"], ["updated_at", "2019-10-13 21:29:44.049110"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 21:29:44.050616"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "valentin.bergnaum@schimmel.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "valentin.bergnaum@schimmel.org"], ["encrypted_password", "$2a$04$DQxUIzt7KFJM.rtdoSkBLOxW2zmJEljNmB8cLJzT0LX0vAdiD8cpy"], ["confirmed_at", "2019-10-13 21:29:44.058146"], ["name", "Candace Spencer"], ["email", "valentin.bergnaum@schimmel.org"], ["created_at", "2019-10-13 21:29:44.058853"], ["updated_at", "2019-10-13 21:29:44.058853"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"10Chj__XZ59QaOito6doEg\":{\"token\":\"$2a$10$NesKbIIXHipJuy3vZclnI.9o5BpEL1cZfBRq4ITzEvNpawsVjnsr6\",\"expiry\":1572211784,\"updated_at\":\"2019-10-13 21:29:44 UTC\"}}"], ["updated_at", "2019-10-13 21:29:44.106307"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "valentin.bergnaum@schimmel.org"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 2360) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rory@runolfonritchie.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rory@runolfonritchie.biz"], ["encrypted_password", "$2a$04$.zS5.THMs3luFV1VtOE0F.eMqX95cra5YkOFv4oxUhG48MAcjlX8W"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 21:29:44.167644"], ["name", "Mike Rohsopht"], ["email", "rory@runolfonritchie.biz"], ["created_at", "2019-10-13 21:29:44.168842"], ["updated_at", "2019-10-13 21:29:44.168842"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"rdIpUaj9GomJF0ERBGSrbw\":{\"token\":\"$2a$10$UlQKbn/exiWErgld.bRofOJWnBPzfxqCwqQe3TW6VAcK4mEE9JrS.\",\"expiry\":1572211784,\"updated_at\":\"2019-10-13 21:29:44 UTC\"}}"], ["updated_at", "2019-10-13 21:29:44.217661"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "rory@runolfonritchie.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$asj1dawyKMpEPya8nSPO9u9LfoOLL3Z9UciaF8oAMEpwkkOV3GbTi"], ["updated_at", "2019-10-13 21:29:44.269800"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 21:29:44.270833"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.5ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jamie@daugherty.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jamie@daugherty.io"], ["encrypted_password", "$2a$04$ApDw7LbrGFdgJLNB9O18b.s1ODHsW0b7N5I3W/QbzcjiFFmASJDtG"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 21:29:44.277530"], ["name", "Frank Furter"], ["email", "jamie@daugherty.io"], ["created_at", "2019-10-13 21:29:44.278757"], ["updated_at", "2019-10-13 21:29:44.278757"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"xllqzf80D8V8zvKbkA7eeQ\":{\"token\":\"$2a$10$rDtKmmY2k8I.3iA6esWY9eE1DVoedWG4ZtwwlVWkP5C0NfslRzBGG\",\"expiry\":1572211784,\"updated_at\":\"2019-10-13 21:29:44 UTC\"}}"], ["updated_at", "2019-10-13 21:29:44.327439"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jamie@daugherty.io"], ["LIMIT", 1]]  (0.4ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$8vfRQxxKL0UhQDVKzR3s8uNnALAlmVsdp7zr7aWZKJxEwCVlVaK.O"], ["updated_at", "2019-10-13 21:29:44.381723"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 21:29:44.383097"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.8ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ira_leannon@schulist.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ira_leannon@schulist.co"], ["encrypted_password", "$2a$04$jwZRDXT7PvS5nV9Bcq7S3OFvcCAQ6dRUXGZEz9Y4c/eqGya/nGBHu"], ["confirmed_at", "2019-10-13 21:29:44.390876"], ["name", "Joy Rider"], ["email", "ira_leannon@schulist.co"], ["created_at", "2019-10-13 21:29:44.392928"], ["updated_at", "2019-10-13 21:29:44.392928"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fI7g2D8-RUCu38JGKlG8Tg\":{\"token\":\"$2a$10$zdHF/Z5ffLcqueh9qTwJJOfvh2Srj4.YWHK1vHfXHs4dyy52YZCLC\",\"expiry\":1572211784,\"updated_at\":\"2019-10-13 21:29:44 UTC\"}}"], ["updated_at", "2019-10-13 21:29:44.445580"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ira_leannon@schulist.co"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$xS1v6up3jRfH2rGJF33mue4R5xx0yZvzD7CUO5r9XVU3nUFVSaBVS"], ["updated_at", "2019-10-13 21:29:44.497423"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 2640) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.4ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alexa.paucek@gutkowskicruickshank.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alexa.paucek@gutkowskicruickshank.org"], ["encrypted_password", "$2a$04$qZETjyuLQjt.nnZmpgvszOZVTE6sepWcbNyZ4FEuUgriUyJ4dzyvK"], ["confirmed_at", "2019-10-13 21:29:44.505070"], ["name", "Bess Eaton"], ["email", "alexa.paucek@gutkowskicruickshank.org"], ["created_at", "2019-10-13 21:29:44.505682"], ["updated_at", "2019-10-13 21:29:44.505682"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mitch_lowe@zemlak.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mitch_lowe@zemlak.org"], ["encrypted_password", "$2a$04$Us0rOfj4fK0wlXHPsqkwjeQiOYivjaQT.T5PZ2dNWcmWbBzXH/CXa"], ["confirmed_at", "2019-10-13 21:29:44.515809"], ["name", "Val Crow"], ["email", "mitch_lowe@zemlak.org"], ["created_at", "2019-10-13 21:29:44.516984"], ["updated_at", "2019-10-13 21:29:44.516984"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "33a17d0b5fd85d20d7ad0564ba8ce485803c1d3897292e217579e03632d299bc"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "33a17d0b5fd85d20d7ad0564ba8ce485803c1d3897292e217579e03632d299bc"], ["reset_password_sent_at", "2019-10-13 21:29:44.518849"], ["updated_at", "2019-10-13 21:29:44.518999"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22yhyS7BW49w_1AsMXmw_q%22%2C%0A++++++++++++redirectUrl%3A+%22%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:29:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"yhyS7BW49w_1AsMXmw_q\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "33a17d0b5fd85d20d7ad0564ba8ce485803c1d3897292e217579e03632d299bc"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CuRXQdxCF4Lb1uFV-yv0Yg\":{\"token\":\"$2a$10$5rskXG46tkxCkUAxtaN8GupYBZvyOK75eDxbd2iLlZuAErCLHLXay\",\"expiry\":1572211784}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 21:29:44.600771"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CuRXQdxCF4Lb1uFV-yv0Yg\":{\"token\":\"$2a$10$5rskXG46tkxCkUAxtaN8GupYBZvyOK75eDxbd2iLlZuAErCLHLXay\",\"expiry\":1572211784},\"419PUPRZYRDALiYOaPAWQw\":{\"token\":\"$2a$10$9VrL8EOtdMpgKy1Jlw8Uku6ncholRb0gxmZziijjKVYPt2xCoK6XG\",\"expiry\":1572211784,\"updated_at\":\"2019-10-13 21:29:44 UTC\"}}"], ["updated_at", "2019-10-13 21:29:44.644978"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 124ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2657)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "otha@yundtrohan.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "otha@yundtrohan.biz"], ["encrypted_password", "$2a$04$UeywJIuiWQ1TV7FLvlUah.PQCELzBvjTE7qIkOcAE3NLCXsWCZGCa"], ["confirmed_at", "2019-10-13 21:29:44.649247"], ["name", "Bob Katz"], ["email", "otha@yundtrohan.biz"], ["created_at", "2019-10-13 21:29:44.649989"], ["updated_at", "2019-10-13 21:29:44.649989"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cfcf78e1fd594b243b7388a7eef0dde1a33eeaf376ace7c55d6024b31d6dfab8"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "cfcf78e1fd594b243b7388a7eef0dde1a33eeaf376ace7c55d6024b31d6dfab8"], ["reset_password_sent_at", "2019-10-13 21:29:44.651197"], ["updated_at", "2019-10-13 21:29:44.651277"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22ULhnczqYpUmCV7Jz8x6s%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:29:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"ULhnczqYpUmCV7Jz8x6s\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cfcf78e1fd594b243b7388a7eef0dde1a33eeaf376ace7c55d6024b31d6dfab8"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"c5M81eWlO-5is3YtyKPjsw\":{\"token\":\"$2a$10$Li06tx/252hK3KR58nLX6ORGAzGEHxH3KYHvQEt01A6bDAvVFgJlW\",\"expiry\":1572211784}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 21:29:44.700648"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=xXtvAZ-_csx5LA5_hEPnyg&client=c5M81eWlO-5is3YtyKPjsw&client_id=c5M81eWlO-5is3YtyKPjsw&config=&expiry=1572211784&reset_password=true&token=xXtvAZ-_csx5LA5_hEPnyg&uid=otha%40yundtrohan.biz Completed 302 Found in 49ms (ActiveRecord: 0.3ms | Allocations: 1916) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "antonetta@king.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "antonetta@king.net"], ["encrypted_password", "$2a$04$pWwwa77rCIjCA1H/JVKu1uAQGWvqstQjoWh7HCP9oY7afAQy1O9iu"], ["confirmed_at", "2019-10-13 11:29:44"], ["name", "Len DeHande"], ["email", "antonetta@king.net"], ["created_at", "2019-10-13 11:29:44"], ["updated_at", "2019-10-13 11:29:44"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "edaab0fc6416dd903c7da6115bba2328e1af8130283365a163e33edfe48a614a"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "edaab0fc6416dd903c7da6115bba2328e1af8130283365a163e33edfe48a614a"], ["reset_password_sent_at", "2019-10-13 11:29:44"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22z5RsaRktazoVJS3WjzY4%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:29:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"z5RsaRktazoVJS3WjzY4\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "edaab0fc6416dd903c7da6115bba2328e1af8130283365a163e33edfe48a614a"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1266)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "zack@hand.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "zack@hand.co"], ["encrypted_password", "$2a$04$YK7L9b66IYg2RqtvSv1dFeKeapvJEl5MvSoawBGQ98kJi8p5pMN82"], ["confirmed_at", "2019-10-13 21:29:44.717761"], ["name", "Tommy Gunn"], ["email", "zack@hand.co"], ["created_at", "2019-10-13 21:29:44.718884"], ["updated_at", "2019-10-13 21:29:44.718884"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "cbddc1d4882c681f30c8a41698d170f5c861cfdb0a707bac98de5a9d8e13ae33"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "cbddc1d4882c681f30c8a41698d170f5c861cfdb0a707bac98de5a9d8e13ae33"], ["reset_password_sent_at", "2019-10-13 21:29:44.720549"], ["updated_at", "2019-10-13 21:29:44.720700"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22v3E_9K_TGYvsHc2b1vMZinvalid%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:29:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"v3E_9K_TGYvsHc2b1vMZinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c8ad0bbcd804d79c7cba5d7500c4c87cba7755f6c0ed83b5e7c91d6d9055b495"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.3ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:29:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cecil@moriette.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cecil@moriette.info"], ["encrypted_password", "$2a$04$qimLYQEG00dTF8xyU0vaR.uYDyToYxjFf8tcgwHPltI8DZ00IJtM."], ["confirmation_token", "eACgbwwnuxhGQMnfRggD"], ["confirmation_sent_at", "2019-10-13 21:29:44.732609"], ["name", "Megan Bacon"], ["email", "cecil@moriette.info"], ["created_at", "2019-10-13 21:29:44.732510"], ["updated_at", "2019-10-13 21:29:44.732510"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.5ms | Allocations: 408) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.4ms Delivered mail 5da39748b3a6d_ec693fd7208320204691c@Marios-MacBook-Pro.local.mail (1.2ms) Date: Sun, 13 Oct 2019 16:29:44 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: cecil@moriette.info Message-ID: <5da39748b3a6d_ec693fd7208320204691c@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome cecil@moriette.info!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22eACgbwwnuxhGQMnfRggD%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fjohns.net%2Falberta_douglas%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:29:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"eACgbwwnuxhGQMnfRggD\"\n redirectUrl: \"http://johns.net/alberta_douglas\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "eACgbwwnuxhGQMnfRggD"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 21:29:44.740014"], ["updated_at", "2019-10-13 21:29:44.740226"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://johns.net/alberta_douglas?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms | Allocations: 1789) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "johnie.beatty@farrelllueilwitz.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "johnie.beatty@farrelllueilwitz.co"], ["encrypted_password", "$2a$04$PuulcoV/42RVoK.YN14mhejNe.ck3B1c.LSepaS7cW1dC5SusG6Iu"], ["confirmation_token", "HE2YzbGMa3G_ZgLhkePx"], ["confirmation_sent_at", "2019-10-13 21:29:44.748215"], ["name", "Dee Kay"], ["email", "johnie.beatty@farrelllueilwitz.co"], ["created_at", "2019-10-13 21:29:44.748100"], ["updated_at", "2019-10-13 21:29:44.748100"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22HE2YzbGMa3G_ZgLhkePx-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fbayer.org%2Fjeanene%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:29:44 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"HE2YzbGMa3G_ZgLhkePx-invalid\"\n redirectUrl: \"http://bayer.org/jeanene\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "HE2YzbGMa3G_ZgLhkePx-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "ccf21b21b5fe9f891093a6b5567fea2b3e2862bebc955d0055eb051a8510cf85"], ["LIMIT", 1]] Completed 200 OK in 91ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2009) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alline@braunkozey.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alline@braunkozey.biz"], ["encrypted_password", "$2a$04$aRXS0UES5QBRHprfZMCJHuTjaj452p2zY00PVau/WZBkOKqtqwZga"], ["confirmed_at", "2019-10-13 21:29:44.846287"], ["name", "Alf Abet"], ["email", "alline@braunkozey.biz"], ["created_at", "2019-10-13 21:29:44.847081"], ["updated_at", "2019-10-13 21:29:44.847081"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"bwcEymN_aQMs4LGgUhzf9w\":{\"token\":\"$2a$10$Tro7kYOijfjKmNgYEALppeFQcunCXPKdY0fSmYMSPUcXJ.UnUeXVu\",\"expiry\":1572211784,\"updated_at\":\"2019-10-13 21:29:44 UTC\"}}"], ["updated_at", "2019-10-13 21:29:44.893470"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 16:29:44 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "alline@braunkozey.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 9751)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sherise_armstrong@schumm.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sherise_armstrong@schumm.biz"], ["encrypted_password", "$2a$04$hjj45gzn9KXNqg9lJQGkG.HJyycLV7by9ms8dXZ7xzLIdMGaDxJDO"], ["confirmed_at", "2019-10-13 21:29:44.952750"], ["name", "Eve Ning"], ["email", "sherise_armstrong@schumm.biz"], ["created_at", "2019-10-13 21:29:44.953594"], ["updated_at", "2019-10-13 21:29:44.953594"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 16:29:44 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.2ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC Migrating to CreateGuests (20191013213045)  (0.1ms) begin transaction  (1.1ms) CREATE TABLE "guests" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar DEFAULT 'email' NOT NULL, "uid" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "allow_password_change" boolean DEFAULT 0, "confirmation_token" varchar, "confirmed_at" datetime, "confirmation_sent_at" datetime, "unconfirmed_email" varchar, "email" varchar, "tokens" text, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)  (0.9ms) CREATE UNIQUE INDEX "index_guests_on_email" ON "guests" ("email")  (0.2ms) CREATE UNIQUE INDEX "index_guests_on_uid_and_provider" ON "guests" ("uid", "provider")  (0.1ms) CREATE UNIQUE INDEX "index_guests_on_reset_password_token" ON "guests" ("reset_password_token")  (0.1ms) CREATE UNIQUE INDEX "index_guests_on_confirmation_token" ON "guests" ("confirmation_token") primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20191013213045"]]  (0.9ms) commit transaction ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]  (0.1ms) SELECT sqlite_version(*)  (0.0ms) SELECT sqlite_version(*)  (0.1ms) DROP TABLE IF EXISTS "admins"  (1.2ms) CREATE TABLE "admins" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar DEFAULT 'email' NOT NULL, "uid" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "allow_password_change" boolean DEFAULT 0, "confirmation_token" varchar, "confirmed_at" datetime, "confirmation_sent_at" datetime, "unconfirmed_email" varchar, "email" varchar, "tokens" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.9ms) CREATE UNIQUE INDEX "index_admins_on_confirmation_token" ON "admins" ("confirmation_token")  (0.8ms) CREATE UNIQUE INDEX "index_admins_on_email" ON "admins" ("email")  (0.6ms) CREATE UNIQUE INDEX "index_admins_on_reset_password_token" ON "admins" ("reset_password_token")  (0.9ms) CREATE UNIQUE INDEX "index_admins_on_uid_and_provider" ON "admins" ("uid", "provider")  (0.1ms) DROP TABLE IF EXISTS "guests"  (0.7ms) CREATE TABLE "guests" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar DEFAULT 'email' NOT NULL, "uid" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "allow_password_change" boolean DEFAULT 0, "confirmation_token" varchar, "confirmed_at" datetime, "confirmation_sent_at" datetime, "unconfirmed_email" varchar, "email" varchar, "tokens" text, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)  (0.6ms) CREATE UNIQUE INDEX "index_guests_on_confirmation_token" ON "guests" ("confirmation_token")  (0.6ms) CREATE UNIQUE INDEX "index_guests_on_email" ON "guests" ("email")  (0.5ms) CREATE UNIQUE INDEX "index_guests_on_reset_password_token" ON "guests" ("reset_password_token")  (0.7ms) CREATE UNIQUE INDEX "index_guests_on_uid_and_provider" ON "guests" ("uid", "provider")  (0.1ms) DROP TABLE IF EXISTS "users"  (0.9ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar DEFAULT 'email' NOT NULL, "uid" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "allow_password_change" boolean DEFAULT 0, "remember_created_at" datetime, "confirmation_token" varchar, "confirmed_at" datetime, "confirmation_sent_at" datetime, "unconfirmed_email" varchar, "failed_attempts" integer DEFAULT 0 NOT NULL, "unlock_token" varchar, "locked_at" datetime, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "last_sign_in_ip" varchar, "current_sign_in_ip" varchar, "sign_in_count" integer, "name" varchar, "email" varchar, "tokens" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "auth_available" boolean DEFAULT 1 NOT NULL)  (0.8ms) CREATE UNIQUE INDEX "index_users_on_confirmation_token" ON "users" ("confirmation_token")  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.8ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.8ms) CREATE UNIQUE INDEX "index_users_on_uid_and_provider" ON "users" ("uid", "provider")  (0.8ms) CREATE UNIQUE INDEX "index_users_on_unlock_token" ON "users" ("unlock_token")  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (20191013213045)  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (20190815114303), (20190824215150), (20190916012505);   (0.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.1ms) begin transaction ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2019-10-13 21:40:26.096352"], ["updated_at", "2019-10-13 21:40:26.096352"]]  (0.6ms) commit transaction ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]]  (0.0ms) begin transaction ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "fbd7a3168590c82abe40178eeaa81726fa4d2b3b"], ["created_at", "2019-10-13 21:40:26.099762"], ["updated_at", "2019-10-13 21:40:26.099762"]]  (0.6ms) commit transaction  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "mary_strosin@zulauf.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "mary_strosin@zulauf.co"], ["encrypted_password", "$2a$04$lvn7G3JE4YtI.VG9359cu.aewtFn1oIdLQSXniS4cbcNLFYdjI0km"], ["confirmed_at", "2019-10-13 21:40:26.789501"], ["name", "Dennis Toffice"], ["email", "mary_strosin@zulauf.co"], ["created_at", "2019-10-13 21:40:26.790861"], ["updated_at", "2019-10-13 21:40:26.790861"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"mary_strosin@zulauf.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mary_strosin@zulauf.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Jwen9iYTblIoWgmXdT54UA\":{\"token\":\"$2a$10$C7r0D1MQUqr45JCgXVDb5ea9JDOcOWn.lJO8w5sh1ts8UDWLIWK4m\",\"expiry\":1572212426,\"updated_at\":\"2019-10-13 21:40:26 UTC\"}}"], ["updated_at", "2019-10-13 21:40:26.882435"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-13 21:40:26.886563"], ["last_sign_in_at", "2019-10-13 21:40:26.886563"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-13 21:40:26.886845"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 82ms (Views: 0.2ms | ActiveRecord: 0.7ms | Allocations: 21246) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eric@wisoky.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "eric@wisoky.info"], ["encrypted_password", "$2a$04$RRbvVWuCyrSTN.wGMdTLnuHh/OecEO1uxB7hP.Km2hSimyAdw9ep6"], ["confirmed_at", "2019-10-13 21:40:26.895951"], ["name", "Jay Bird"], ["email", "eric@wisoky.info"], ["created_at", "2019-10-13 21:40:26.896935"], ["updated_at", "2019-10-13 21:40:26.896935"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"eric@wisoky.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "eric@wisoky.info"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 2042)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cornell@hilpert.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "cornell@hilpert.io"], ["encrypted_password", "$2a$04$i6aIAc8CTBMpwIXP5o7b2u6IvIBW1cYYP7HEb3Q5WZno4WZW3GNxC"], ["confirmation_token", "Z9PzUnHGzhxssXH5phms"], ["confirmation_sent_at", "2019-10-13 21:40:26.910445"], ["name", "Marv Ellis"], ["email", "cornell@hilpert.io"], ["created_at", "2019-10-13 21:40:26.910324"], ["updated_at", "2019-10-13 21:40:26.910324"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"cornell@hilpert.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cornell@hilpert.io"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 1362)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeanene_thompson@steuber.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.9ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jeanene_thompson@steuber.name"], ["encrypted_password", "$2a$04$h0cGsXaMJMXuZlqbeLVjRe4C7kUu0ShJznJr1Vvt8B3dAojCEB4xe"], ["confirmed_at", "2019-10-13 21:40:26.921889"], ["locked_at", "2019-10-13 21:40:26.921927"], ["name", "Sandy Spring"], ["email", "jeanene_thompson@steuber.name"], ["created_at", "2019-10-13 21:40:26.924113"], ["updated_at", "2019-10-13 21:40:26.924113"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jeanene_thompson@steuber.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jeanene_thompson@steuber.name"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 1381)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "barton@bernhardwilliamson.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "barton@bernhardwilliamson.biz"], ["encrypted_password", "$2a$04$e3s4h2dKlX9IDxxaBEVvSeNVj0yRpS3KK86QlJ/yX5cDPRhMIjATS"], ["confirmed_at", "2019-10-13 21:40:26.938469"], ["name", "May Furst"], ["email", "barton@bernhardwilliamson.biz"], ["created_at", "2019-10-13 21:40:26.940206"], ["updated_at", "2019-10-13 21:40:26.940206"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"barton@bernhardwilliamson.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "barton@bernhardwilliamson.biz"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1359)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "stefan.rohan@daughertycronin.biz"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.5ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "stefan.rohan@daughertycronin.biz"], ["encrypted_password", "$2a$04$fRX0h2U2lxSlhzumZxfJJeJe6IzOe4a7wJ1rGFaVQpHYo3qKIH22e"], ["confirmed_at", "2019-10-13 21:40:26.964496"], ["email", "stefan.rohan@daughertycronin.biz"], ["created_at", "2019-10-13 21:40:26.966226"], ["updated_at", "2019-10-13 21:40:26.966226"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:26 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"stefan.rohan@daughertycronin.biz\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "stefan.rohan@daughertycronin.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"ZeE3JBOuyjK9w92KPQVP4g\":{\"token\":\"$2a$10$o9IgxOClcpP.Tb5eHihqBe6vIo8UkTynjr4waB9cI56m4FDC46BYy\",\"expiry\":1572212427,\"updated_at\":\"2019-10-13 21:40:26 UTC\"}}"], ["updated_at", "2019-10-13 21:40:27.038688"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 71ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 2404)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "adam_boyer@willmohr.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "adam_boyer@willmohr.org"], ["encrypted_password", "$2a$04$4K2/gPSS7eK7F9X5ssE5l.LdWcW.UXj5GxBWVtXFOocHyL0557J5u"], ["confirmed_at", "2019-10-13 21:40:27.044961"], ["name", "Jasmine Rice"], ["email", "adam_boyer@willmohr.org"], ["created_at", "2019-10-13 21:40:27.046073"], ["updated_at", "2019-10-13 21:40:27.046073"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"a6JFZC-42eJUnn9i-yo35w\":{\"token\":\"$2a$10$H67P4uHdEHuLv9dGcnjLiOQitVXIeXaFKqlAOkOxIidvNBGCxkb5K\",\"expiry\":1572212427,\"updated_at\":\"2019-10-13 21:40:27 UTC\"}}"], ["updated_at", "2019-10-13 21:40:27.110137"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "adam_boyer@willmohr.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 21:40:27.170441"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 60ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1896) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kali.pacocha@braunjacobs.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kali.pacocha@braunjacobs.info"], ["encrypted_password", "$2a$04$RW5plQWaj8jwt7Lkt1LptOriTLh9u.JiBIOdNgIte.cU.pknD9HvO"], ["confirmed_at", "2019-10-13 21:40:27.180656"], ["name", "Anita Bath"], ["email", "kali.pacocha@braunjacobs.info"], ["created_at", "2019-10-13 21:40:27.182700"], ["updated_at", "2019-10-13 21:40:27.182700"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "pete.funk@feest.net"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.5ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "pete.funk@feest.net"], ["encrypted_password", "$2a$04$z4HHEEQLANTMoowYyWfLUe63/yg3OdwH6c63RWXX0eppyKQX3oiBW"], ["confirmed_at", "2019-10-13 21:40:27.189042"], ["email", "pete.funk@feest.net"], ["created_at", "2019-10-13 21:40:27.190658"], ["updated_at", "2019-10-13 21:40:27.190658"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"0l6pUw3M1U45xQqzbrzCuQ\":{\"token\":\"$2a$10$ggsi5UrtM/Cv.e/CK97hSO7B9BnMC6oGMNutHceBI2bhuiTqjmBSy\",\"expiry\":1572212427,\"updated_at\":\"2019-10-13 21:40:27 UTC\"}}"], ["updated_at", "2019-10-13 21:40:27.256294"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "pete.funk@feest.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-13 21:40:27.315477"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1825) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "darron_aufderhar@kuhlmanbins.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "darron_aufderhar@kuhlmanbins.org"], ["encrypted_password", "$2a$04$5ChA8ZAV5Msz26P4JQCGT.8x3ZaGgptkWMVQjvl/Wgk5Ge2mCuFq."], ["confirmed_at", "2019-10-13 21:40:27.322568"], ["name", "Kenny Penny"], ["email", "darron_aufderhar@kuhlmanbins.org"], ["created_at", "2019-10-13 21:40:27.323589"], ["updated_at", "2019-10-13 21:40:27.323589"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"darron_aufderhar@kuhlmanbins.org\",\n redirectUrl: \"http://frami.net/anibal_moen\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "darron_aufderhar@kuhlmanbins.org"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ec86e5f235a9c2391f7c5459e10a1db3015d22a96ef539754dff0e0cb963aca8"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "ec86e5f235a9c2391f7c5459e10a1db3015d22a96ef539754dff0e0cb963aca8"], ["reset_password_sent_at", "2019-10-13 21:40:27.412343"], ["updated_at", "2019-10-13 21:40:27.412514"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 17.5ms | Allocations: 1308) Devise::Mailer#reset_password_instructions: processed outbound mail in 129.2ms Delivered mail 5da399cb850aa_efa53ff548c320086829b@Marios-MacBook-Pro.local.mail (4.2ms) Date: Sun, 13 Oct 2019 16:40:27 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: darron_aufderhar@kuhlmanbins.org Message-ID: <5da399cb850aa_efa53ff548c320086829b@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: darron_aufderhar@kuhlmanbins.org provider: email redirect-url: http://frami.net/anibal_moen client-config: default

Hello darron_aufderhar@kuhlmanbins.org!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 222ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 67769) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fframi.net%2Fanibal_moen&variables%5Btoken%5D=bgNzPQkjJWiUmTDyX-dr" for 127.0.0.1 at 2019-10-13 16:40:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://frami.net/anibal_moen", "token"=>"bgNzPQkjJWiUmTDyX-dr"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ec86e5f235a9c2391f7c5459e10a1db3015d22a96ef539754dff0e0cb963aca8"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"iQuiyT7aeIKHvWmcw8rfIQ\":{\"token\":\"$2a$10$ZBwrcCgGgufDxAFaIK/Tz.eZ29kUfZH9m2u5XOzZ1FzraYitH4VQ2\",\"expiry\":1572212427}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 21:40:27.600356"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://frami.net/anibal_moen?access-token=MZ-lzjXEjNAgPd0LyC3m7w&client=iQuiyT7aeIKHvWmcw8rfIQ&client_id=iQuiyT7aeIKHvWmcw8rfIQ&config=&expiry=1572212427&reset_password=true&token=MZ-lzjXEjNAgPd0LyC3m7w&uid=darron_aufderhar%40kuhlmanbins.org Completed 302 Found in 53ms (ActiveRecord: 0.3ms | Allocations: 2147) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://friesenmurphy.biz/kaylene.walter\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"hal@torphy.com\"\n name: \"Thu Gusikowski\"\n password: \"7O9rIn03N59a\"\n passwordConfirmation: \"7O9rIn03N59a\"\n confirmSuccessUrl: \"http://kuphalquigley.net/thaddeus.konopelski\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hal@torphy.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hal@torphy.com"], ["encrypted_password", "$2a$04$glUNT3kT7781770qrfusweXyyqMbQCkpzoQkxP8bpvrk4qACPR.Ci"], ["confirmation_token", "sgstsMehF6XbcNkgDXvA"], ["confirmation_sent_at", "2019-10-13 21:40:27.618657"], ["name", "Thu Gusikowski"], ["email", "hal@torphy.com"], ["created_at", "2019-10-13 21:40:27.618540"], ["updated_at", "2019-10-13 21:40:27.618540"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.9ms | Allocations: 580) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.4ms Delivered mail 5da399cb98164_efa53ff548c3200868335@Marios-MacBook-Pro.local.mail (1.9ms) Date: Sun, 13 Oct 2019 16:40:27 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: hal@torphy.com Message-ID: <5da399cb98164_efa53ff548c3200868335@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://kuphalquigley.net/thaddeus.konopelski

Welcome hal@torphy.com!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.6ms | Allocations: 5452)  (0.2ms) SELECT COUNT(*) FROM "users" User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fkuphalquigley.net%2Fthaddeus.konopelski&variables%5Btoken%5D=sgstsMehF6XbcNkgDXvA" for 127.0.0.1 at 2019-10-13 16:40:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://kuphalquigley.net/thaddeus.konopelski", "token"=>"sgstsMehF6XbcNkgDXvA"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "sgstsMehF6XbcNkgDXvA"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 21:40:27.634174"], ["updated_at", "2019-10-13 21:40:27.634407"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://kuphalquigley.net/thaddeus.konopelski?account_confirmation_success=true Completed 302 Found in 7ms (ActiveRecord: 0.4ms | Allocations: 2178) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Freda Wisoky\"\n password: \"Fg5WcO3iTo6Tu\"\n passwordConfirmation: \"Fg5WcO3iTo6Tu\"\n confirmSuccessUrl: \"http://wilderman.net/tory_dibbert\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 11ms (Views: 1.2ms | ActiveRecord: 0.3ms | Allocations: 2713)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.1ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"hank@grant.net\"\n password: \"LlHbPfCg5W\"\n passwordConfirmation: \"LlHbPfCg5W\"\n confirmSuccessUrl: \"http://quigleytreutel.co/tracey.krajcik\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 818)  (0.1ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "elmer@mills.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.7ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "elmer@mills.org"], ["encrypted_password", "$2a$04$qR8bZvgD8IjYoDF7O/YE3OrBBFmMOtnWhBBuIDsLF5/G2Ot3P8NtO"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 21:40:27.683553"], ["name", "Kenya Dewit"], ["email", "elmer@mills.org"], ["created_at", "2019-10-13 21:40:27.685860"], ["updated_at", "2019-10-13 21:40:27.685860"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7J5_bFQDnJGGPJ_h0q-DXg\":{\"token\":\"$2a$10$gPAca9MoZouIoy9/Skk6gOV.RzCXL8Fl/RH7GfiJXejTiZjZ5PAXq\",\"expiry\":1572212427,\"updated_at\":\"2019-10-13 21:40:27 UTC\"}}"], ["updated_at", "2019-10-13 21:40:27.755491"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "elmer@mills.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.6ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$nDgpuOlzqSTdu6UyFYmyTehL5Vl7IoliQixctXsmzltttqfMvfdlW"], ["updated_at", "2019-10-13 21:40:27.825550"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 21:40:27.827380"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 70ms (Views: 0.6ms | ActiveRecord: 1.1ms | Allocations: 2882) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "latoyia@dickikemmer.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "latoyia@dickikemmer.io"], ["encrypted_password", "$2a$04$ac6O5k7uBQNlYOai3VFTzeyELUl/8xAFFgQcj2PoU8nOXDfsa96uy"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 21:40:27.836712"], ["name", "Morey Bund"], ["email", "latoyia@dickikemmer.io"], ["created_at", "2019-10-13 21:40:27.838153"], ["updated_at", "2019-10-13 21:40:27.838153"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"zhCor0JU4uk8w5AM6LBbIA\":{\"token\":\"$2a$10$3z3h1MDvfug6Lt4AKMwTBO6TlYQYerk9w02vBwAoTpoW1muF.cOR.\",\"expiry\":1572212427,\"updated_at\":\"2019-10-13 21:40:27 UTC\"}}"], ["updated_at", "2019-10-13 21:40:27.896007"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:27 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "latoyia@dickikemmer.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$V3.azA1Z31l4q125BbT9hOgpiuAap1OFSSjTyi9PzH3/gvB3WjEW6"], ["updated_at", "2019-10-13 21:40:27.947810"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 21:40:27.949239"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.7ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lynwood_torphy@ziemannyost.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lynwood_torphy@ziemannyost.co"], ["encrypted_password", "$2a$04$SjogIcLsE3/.tTLXitayfeDn4KQdktwzzLzQS9VeRYugunIoeiTzO"], ["confirmed_at", "2019-10-13 21:40:27.957294"], ["name", "Cy Kosis"], ["email", "lynwood_torphy@ziemannyost.co"], ["created_at", "2019-10-13 21:40:27.958851"], ["updated_at", "2019-10-13 21:40:27.958851"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Yo7xOBojtvqz1X3-YFKeYQ\":{\"token\":\"$2a$10$tshIUonBaxakzQcTZ4i57ep1gp4n/2Q4G.hkFYgfckpmZK8sq.l0O\",\"expiry\":1572212428,\"updated_at\":\"2019-10-13 21:40:27 UTC\"}}"], ["updated_at", "2019-10-13 21:40:28.012642"], ["id", 1]]  (0.3ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lynwood_torphy@ziemannyost.co"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 2360) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ronni@monahan.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ronni@monahan.net"], ["encrypted_password", "$2a$04$dKsrQzAFtW.D8tNjWNeOEODKElMihOC2b5JuKy50MHJRjlGjkL802"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 21:40:28.070060"], ["name", "Woody Forrest"], ["email", "ronni@monahan.net"], ["created_at", "2019-10-13 21:40:28.070902"], ["updated_at", "2019-10-13 21:40:28.070902"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NI1bqoWkbv65GBAAUb1Xmw\":{\"token\":\"$2a$10$MIfrVb2qIgor9xN/Baq0mON1bcBT16qlo819elWCAUHXluGVD.AsO\",\"expiry\":1572212428,\"updated_at\":\"2019-10-13 21:40:28 UTC\"}}"], ["updated_at", "2019-10-13 21:40:28.126655"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ronni@monahan.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$7.sN8p83SqhBxRAhS8OKvOjVMcOV97hC19HWyfjcZHppKeaMsoDk6"], ["updated_at", "2019-10-13 21:40:28.179220"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 21:40:28.180424"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "monika.monahan@herzogstoltenberg.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "monika.monahan@herzogstoltenberg.com"], ["encrypted_password", "$2a$04$8tujQSy0N26ypO0TIiD6p.DJlkvkDpfG8wluhim7CfwBYoiEwpvZi"], ["allow_password_change", 1], ["confirmed_at", "2019-10-13 21:40:28.186942"], ["name", "May Day"], ["email", "monika.monahan@herzogstoltenberg.com"], ["created_at", "2019-10-13 21:40:28.188567"], ["updated_at", "2019-10-13 21:40:28.188567"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Ux-I7CDHYh5HGaze8ba6pQ\":{\"token\":\"$2a$10$XJG5EEH/NJQTfl5nvUqOCOGq/V6IcOvhlqZgd.L/rk7vRndWRPZba\",\"expiry\":1572212428,\"updated_at\":\"2019-10-13 21:40:28 UTC\"}}"], ["updated_at", "2019-10-13 21:40:28.244490"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "monika.monahan@herzogstoltenberg.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$9/ALJspjp0Xn22uXGD5Wa.4rscKxO8sfZufOl/epOZ50QOVzLD3vu"], ["updated_at", "2019-10-13 21:40:28.297064"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-13 21:40:28.298232"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "roseanna.beier@nikolaus.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "roseanna.beier@nikolaus.co"], ["encrypted_password", "$2a$04$pNAkrcT.xe2AVDQaW6jhT.2KwRdvbRHGW6krHx4jMCjHPeK.SfAIG"], ["confirmed_at", "2019-10-13 21:40:28.305072"], ["name", "Jaqueline Hyde"], ["email", "roseanna.beier@nikolaus.co"], ["created_at", "2019-10-13 21:40:28.306038"], ["updated_at", "2019-10-13 21:40:28.306038"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"CSyCZ7D-dKrt-Tcns0WfxQ\":{\"token\":\"$2a$10$.Wupode/v5GuS.MrGxH4kOwavs9YZUOX.xOis1YJCz8ZKcpxCgXua\",\"expiry\":1572212428,\"updated_at\":\"2019-10-13 21:40:28 UTC\"}}"], ["updated_at", "2019-10-13 21:40:28.358276"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "roseanna.beier@nikolaus.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$J9toDwhNtUhNu7i4Kj8tT.f91wOZag8R6y0XZbehH3cE6B.uf7JKO"], ["updated_at", "2019-10-13 21:40:28.411650"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2643) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "meridith.white@skiles.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "meridith.white@skiles.org"], ["encrypted_password", "$2a$04$sm1fD2LdC40Qu6WDJSeb.uml0owhckU.Zbo0FQLj4ut9HRGxSAANK"], ["confirmed_at", "2019-10-13 21:40:28.419485"], ["name", "Bill Foldes"], ["email", "meridith.white@skiles.org"], ["created_at", "2019-10-13 21:40:28.420410"], ["updated_at", "2019-10-13 21:40:28.420410"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.7ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "catalina_hirthe@bogan.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "catalina_hirthe@bogan.info"], ["encrypted_password", "$2a$04$EGsLdx7HtATKl7IIivOj4OaNwn./jWvL.U6dl5O8JKRGEknMx1LL6"], ["confirmed_at", "2019-10-13 21:40:28.433979"], ["name", "Missy Sippy"], ["email", "catalina_hirthe@bogan.info"], ["created_at", "2019-10-13 21:40:28.436046"], ["updated_at", "2019-10-13 21:40:28.436046"]]  (0.3ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f27b2fd394b2ad9e006a76c352cdf015e49945c6cdc3cdceac2968525702fb22"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f27b2fd394b2ad9e006a76c352cdf015e49945c6cdc3cdceac2968525702fb22"], ["reset_password_sent_at", "2019-10-13 21:40:28.438754"], ["updated_at", "2019-10-13 21:40:28.438895"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%222SRgdtvxRXUrgobazecv%22%2C%0A++++++++++++redirectUrl%3A+%22%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:40:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"2SRgdtvxRXUrgobazecv\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f27b2fd394b2ad9e006a76c352cdf015e49945c6cdc3cdceac2968525702fb22"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"caS1nQPcvCQ47PCxKiGh1w\":{\"token\":\"$2a$10$nZ9aSr/7eNr4JbcivUxwbOZwlVKL0RrsODwlb.Ll5Q7LukKzTUdXi\",\"expiry\":1572212428}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 21:40:28.505967"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"caS1nQPcvCQ47PCxKiGh1w\":{\"token\":\"$2a$10$nZ9aSr/7eNr4JbcivUxwbOZwlVKL0RrsODwlb.Ll5Q7LukKzTUdXi\",\"expiry\":1572212428},\"C0qo5JhSkKlrga9FCX1Dlg\":{\"token\":\"$2a$10$.1uwIQjxiaOCxayN5Ox21.VkL70Mt2UyiDEGm/UeJNm2IzlaNgXUe\",\"expiry\":1572212428,\"updated_at\":\"2019-10-13 21:40:28 UTC\"}}"], ["updated_at", "2019-10-13 21:40:28.576534"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 134ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2659)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "orville@predovic.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "orville@predovic.net"], ["encrypted_password", "$2a$04$527tBCmYpOr5LtwwIymU2OFRGaB4nnQcjzh/GRTeFdAdRpDIk775."], ["confirmed_at", "2019-10-13 21:40:28.581437"], ["name", "Chad Terbocks"], ["email", "orville@predovic.net"], ["created_at", "2019-10-13 21:40:28.582187"], ["updated_at", "2019-10-13 21:40:28.582187"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "bae9291a1064c588c62d85a5c281e91e570b19c398eba7f240ec228bf0e949de"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "bae9291a1064c588c62d85a5c281e91e570b19c398eba7f240ec228bf0e949de"], ["reset_password_sent_at", "2019-10-13 21:40:28.583629"], ["updated_at", "2019-10-13 21:40:28.583735"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22HiEs3LDPx2zLLyqxKvaw%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:40:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"HiEs3LDPx2zLLyqxKvaw\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "bae9291a1064c588c62d85a5c281e91e570b19c398eba7f240ec228bf0e949de"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"G9loloOp2Lz49vB8yzEqQQ\":{\"token\":\"$2a$10$L22LUSp/59Cc.IsfhuaDIeUvko2UHyUgHk9ZPFmKdJNXFuEcbCi0y\",\"expiry\":1572212428}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 21:40:28.639214"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=W5zh6ZySTl9mbDyocdTYZA&client=G9loloOp2Lz49vB8yzEqQQ&client_id=G9loloOp2Lz49vB8yzEqQQ&config=&expiry=1572212428&reset_password=true&token=W5zh6ZySTl9mbDyocdTYZA&uid=orville%40predovic.net Completed 302 Found in 55ms (ActiveRecord: 0.3ms | Allocations: 1916) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rosena_rowe@gusikowski.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rosena_rowe@gusikowski.biz"], ["encrypted_password", "$2a$04$zlFRBzhioVTx3YWg..RQCuJsso.UxsN5AU25mSOVVES7sAV.igMUi"], ["confirmed_at", "2019-10-13 11:40:28"], ["name", "Tom Morrow"], ["email", "rosena_rowe@gusikowski.biz"], ["created_at", "2019-10-13 11:40:28"], ["updated_at", "2019-10-13 11:40:28"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1ff0c16ef6c61a6dca1e707e9ab2f88ff64480c20d605a6e26494e412a22d242"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "1ff0c16ef6c61a6dca1e707e9ab2f88ff64480c20d605a6e26494e412a22d242"], ["reset_password_sent_at", "2019-10-13 11:40:28"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22HWXpguH_8LXce5Nr5DTP%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:40:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"HWXpguH_8LXce5Nr5DTP\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1ff0c16ef6c61a6dca1e707e9ab2f88ff64480c20d605a6e26494e412a22d242"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1266)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "francis_beahan@tremblay.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "francis_beahan@tremblay.biz"], ["encrypted_password", "$2a$04$ZrwPkkdl1iQeljXIo6p5bug2BzBLKGlWd.l7tQ2PEXcp50Pmm0wCe"], ["confirmed_at", "2019-10-13 21:40:28.655264"], ["name", "Justin Inch"], ["email", "francis_beahan@tremblay.biz"], ["created_at", "2019-10-13 21:40:28.656311"], ["updated_at", "2019-10-13 21:40:28.656311"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c5e7a5395bb7c18a09d72d90ed65ba237ba1ffbdaa744e10acc3f5a92384fe07"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "c5e7a5395bb7c18a09d72d90ed65ba237ba1ffbdaa744e10acc3f5a92384fe07"], ["reset_password_sent_at", "2019-10-13 21:40:28.658210"], ["updated_at", "2019-10-13 21:40:28.658385"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%221K7iTzTdWsqx-z-y4rDCinvalid%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:40:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"1K7iTzTdWsqx-z-y4rDCinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "d62faa33bfb2381804f9571fe93b709c30d8bf1ab5dce871becf9b1d9b42ce46"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.4ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:40:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "micki.kautzer@carrollrogahn.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "micki.kautzer@carrollrogahn.com"], ["encrypted_password", "$2a$04$YE.QhOp5lsfmzw/r2lFBhOgLxaedq6Tck526pSmAzSP5v69jP9uPS"], ["confirmation_token", "TRpDmLEQyygesymL2gGi"], ["confirmation_sent_at", "2019-10-13 21:40:28.673315"], ["name", "Daisy Picking"], ["email", "micki.kautzer@carrollrogahn.com"], ["created_at", "2019-10-13 21:40:28.673210"], ["updated_at", "2019-10-13 21:40:28.673210"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.6ms | Allocations: 408) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.9ms Delivered mail 5da399cca5601_efa53ff548c32008684eb@Marios-MacBook-Pro.local.mail (1.6ms) Date: Sun, 13 Oct 2019 16:40:28 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: micki.kautzer@carrollrogahn.com Message-ID: <5da399cca5601_efa53ff548c32008684eb@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome micki.kautzer@carrollrogahn.com!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22TRpDmLEQyygesymL2gGi%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fromaguera.name%2Fchristian_kuhlman%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:40:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"TRpDmLEQyygesymL2gGi\"\n redirectUrl: \"http://romaguera.name/christian_kuhlman\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "TRpDmLEQyygesymL2gGi"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-13 21:40:28.682280"], ["updated_at", "2019-10-13 21:40:28.682497"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://romaguera.name/christian_kuhlman?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms | Allocations: 1792) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vicente@boyer.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "vicente@boyer.biz"], ["encrypted_password", "$2a$04$.TZ73wTteru8hgvpSC4wR.oBvd8CjOlutf05C8CK5CwC6a8VWLOtG"], ["confirmation_token", "ze89wsZiyf9WgK4MoiLv"], ["confirmation_sent_at", "2019-10-13 21:40:28.689476"], ["name", "Andy Gravity"], ["email", "vicente@boyer.biz"], ["created_at", "2019-10-13 21:40:28.689338"], ["updated_at", "2019-10-13 21:40:28.689338"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22ze89wsZiyf9WgK4MoiLv-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fbogisich.name%2Foswaldo.volkman%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:40:28 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"ze89wsZiyf9WgK4MoiLv-invalid\"\n redirectUrl: \"http://bogisich.name/oswaldo.volkman\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "ze89wsZiyf9WgK4MoiLv-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "b02009aa49b63388c7a6caa7649cd0120443cb1ff580c0352450cc7558abdfb3"], ["LIMIT", 1]] Completed 200 OK in 94ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2009) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shenna@hegmann.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shenna@hegmann.name"], ["encrypted_password", "$2a$04$Ce5eCDpGcNCXEBwjxlhG7e7rV57WYPqj4qUN4F2JYHCMs5O4.vk7S"], ["confirmed_at", "2019-10-13 21:40:28.790923"], ["name", "Dennis Toffice"], ["email", "shenna@hegmann.name"], ["created_at", "2019-10-13 21:40:28.791672"], ["updated_at", "2019-10-13 21:40:28.791672"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"XaUTRhn12msZLN1D6DHZWQ\":{\"token\":\"$2a$10$Q6TPv1k9.0i2hOurGM2rxOZ47FwiWDhtU4EGOFMx/SqINs6RaUFAG\",\"expiry\":1572212428,\"updated_at\":\"2019-10-13 21:40:28 UTC\"}}"], ["updated_at", "2019-10-13 21:40:28.843441"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 16:40:28 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "shenna@hegmann.name"], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 9749)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "whitney@konopelski.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "whitney@konopelski.io"], ["encrypted_password", "$2a$04$6OVuR4qJG3tBI61An2qIeOd3l/Est/nqC.SLXbiDi04zDROPTQoF6"], ["confirmed_at", "2019-10-13 21:40:28.901455"], ["name", "Sam Manilla"], ["email", "whitney@konopelski.io"], ["created_at", "2019-10-13 21:40:28.902193"], ["updated_at", "2019-10-13 21:40:28.902193"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-13 16:40:28 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.3ms) rollback transaction  (0.7ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:55:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"darrel_aufderhar@runte.name\"\n password: \"JyKk5En1Yd21Xp\"\n passwordConfirmation: \"JyKk5En1Yd21Xp\"\n confirmSuccessUrl: \"http://zulaufhauck.net/aleshia_okon\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "darrel_aufderhar@runte.name"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.3ms) INSERT INTO "guests" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "darrel_aufderhar@runte.name"], ["encrypted_password", "$2a$04$4bQlUt.OTdVHLHrKYeEumOpi9n0hQ6IFfhUo4tKHlN583Tv5bF8u."], ["confirmation_token", "C1gktrvybAg9SobyqZTg"], ["confirmation_sent_at", "2019-10-13 21:55:55.230791"], ["email", "darrel_aufderhar@runte.name"], ["created_at", "2019-10-13 21:55:55.230692"], ["updated_at", "2019-10-13 21:55:55.230692"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 1.5ms | Allocations: 1028) Devise::Mailer#confirmation_instructions: processed outbound mail in 133.8ms Delivered mail 5da39d6b59d78_f3563fdc2803202059844@Marios-MacBook-Pro.local.mail (4.0ms) Date: Sun, 13 Oct 2019 16:55:55 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: darrel_aufderhar@runte.name Message-ID: <5da39d6b59d78_f3563fdc2803202059844@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://zulaufhauck.net/aleshia_okon

Welcome darrel_aufderhar@runte.name!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 157ms (Views: 0.2ms | ActiveRecord: 0.8ms | Allocations: 95823)  (0.6ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:56:01 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"dudley_watsica@torphy.io\"\n password: \"Vu9Sy710H0rA3r\"\n passwordConfirmation: \"Vu9Sy710H0rA3r\"\n confirmSuccessUrl: \"http://feil.name/maybell_jones\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 15848)  (0.0ms) rollback transaction  (0.9ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lavone_rodriguez@crona.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lavone_rodriguez@crona.info"], ["encrypted_password", "$2a$04$sU9rpeDoJr9fIjlbCBecCuRp3QmDM6WsdAj/.An5u0hx6RKb8Q6Cu"], ["confirmed_at", "2019-10-13 21:56:57.499128"], ["name", "Tanya Hyde"], ["email", "lavone_rodriguez@crona.info"], ["created_at", "2019-10-13 21:56:57.501857"], ["updated_at", "2019-10-13 21:56:57.501857"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b19e92aa8e11819b854d641b4af28531c75dd0d787dc22422026f2d46a4324b2"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b19e92aa8e11819b854d641b4af28531c75dd0d787dc22422026f2d46a4324b2"], ["reset_password_sent_at", "2019-10-13 21:56:57.603347"], ["updated_at", "2019-10-13 21:56:57.603561"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22NGsWf1hyYjk5JRahAtR6%22%2C%0A++++++++++++redirectUrl%3A+%22%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:56:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"NGsWf1hyYjk5JRahAtR6\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b19e92aa8e11819b854d641b4af28531c75dd0d787dc22422026f2d46a4324b2"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"zd-zrY5TH6-inTfhQ241Ew\":{\"token\":\"$2a$10$492kf//JL4CxEy2qQyMLV.l5kil8sGC2q7LoHvYVQSrH4UhBDYYAK\",\"expiry\":1572213417}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 21:56:57.687159"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"zd-zrY5TH6-inTfhQ241Ew\":{\"token\":\"$2a$10$492kf//JL4CxEy2qQyMLV.l5kil8sGC2q7LoHvYVQSrH4UhBDYYAK\",\"expiry\":1572213417},\"De9lVNq5Wvynd5xxe9GuWA\":{\"token\":\"$2a$10$0Ofez5wY8tmFocnJzucFt.X3Jx/i.O4DHzufs0kcbvn/Dh4r.5j/u\",\"expiry\":1572213417,\"updated_at\":\"2019-10-13 21:56:57 UTC\"}}"], ["updated_at", "2019-10-13 21:56:57.735865"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 117ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 20505)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "eugene.reichel@kihn.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "eugene.reichel@kihn.com"], ["encrypted_password", "$2a$04$55/sNiJmMlozDNWHHlJqaOe17tpvOLdUXcCjC6thF.cM5Xdzm0Gpa"], ["confirmed_at", "2019-10-13 21:56:57.743747"], ["name", "Ali Katt"], ["email", "eugene.reichel@kihn.com"], ["created_at", "2019-10-13 21:56:57.744713"], ["updated_at", "2019-10-13 21:56:57.744713"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "fcfa79d116ae404512f83a18a5d134ebb393535ede0adce712e0588537e8bac6"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "fcfa79d116ae404512f83a18a5d134ebb393535ede0adce712e0588537e8bac6"], ["reset_password_sent_at", "2019-10-13 21:56:57.747544"], ["updated_at", "2019-10-13 21:56:57.747672"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%228BCbSmXGLtsu4Dg7iRn9%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:56:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"8BCbSmXGLtsu4Dg7iRn9\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "fcfa79d116ae404512f83a18a5d134ebb393535ede0adce712e0588537e8bac6"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"R1yD86bGuhCxZhju2zRGyw\":{\"token\":\"$2a$10$pjwbpZSaTFugvzHFqlqgX.kIP7nTkfl5c/tazmVgQXSC/DbFSJhPy\",\"expiry\":1572213417}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 21:56:57.813372"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=Q4gfNSk4lGX9GFmapzUF4g&client=R1yD86bGuhCxZhju2zRGyw&client_id=R1yD86bGuhCxZhju2zRGyw&config=&expiry=1572213417&reset_password=true&token=Q4gfNSk4lGX9GFmapzUF4g&uid=eugene.reichel%40kihn.com Completed 302 Found in 66ms (ActiveRecord: 0.3ms | Allocations: 1934) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ruben@bradtkeframi.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ruben@bradtkeframi.org"], ["encrypted_password", "$2a$04$h1thm/mkx/NaS1ezfxG.2.1i.4bRYeO2Om6pNnp.b1DFatjf1l7Xu"], ["confirmed_at", "2019-10-13 11:56:57"], ["name", "Michelle Lynn"], ["email", "ruben@bradtkeframi.org"], ["created_at", "2019-10-13 11:56:57"], ["updated_at", "2019-10-13 11:56:57"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "02fd4ac530c1f04120d1cf0020f4a1791c505420fc23fe002b6f8d30f7de1b6b"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "02fd4ac530c1f04120d1cf0020f4a1791c505420fc23fe002b6f8d30f7de1b6b"], ["reset_password_sent_at", "2019-10-13 11:56:57"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22gL2McyUxyE5yEExU-WYX%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:56:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"gL2McyUxyE5yEExU-WYX\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "02fd4ac530c1f04120d1cf0020f4a1791c505420fc23fe002b6f8d30f7de1b6b"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 1270)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.7ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "florrie_okeefe@hilll.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "florrie_okeefe@hilll.biz"], ["encrypted_password", "$2a$04$Q2YMnuCIlpVCyB7i1dhS2uztcHg/8cs97aBBqpJz3L4yj3XH68T2C"], ["confirmed_at", "2019-10-13 21:56:57.842488"], ["name", "Brandon Cattell"], ["email", "florrie_okeefe@hilll.biz"], ["created_at", "2019-10-13 21:56:57.845436"], ["updated_at", "2019-10-13 21:56:57.845436"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "26f09291fbd3d4f619ba2d9e9586b547777ebf1c50cf5b274a605c393ef6479c"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "26f09291fbd3d4f619ba2d9e9586b547777ebf1c50cf5b274a605c393ef6479c"], ["reset_password_sent_at", "2019-10-13 21:56:57.847594"], ["updated_at", "2019-10-13 21:56:57.847750"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22i1Ag8fCV7yR5juupf1tBinvalid%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:56:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"i1Ag8fCV7yR5juupf1tBinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4dadca34917e99b620a38bf4158454e76103077107a145bbca373f31eb9efea0"], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 1224)  (0.9ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:56:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.1ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:56:57 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n guestCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Guest Load (0.1ms) SELECT "guests".* FROM "guests" WHERE "guests"."reset_password_token" = ? ORDER BY "guests"."id" ASC LIMIT ? [["reset_password_token", "41473d2bf6585c7eec5aa59e1195d66ab430de103a3bba3c58694925b6b20de9"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.6ms | Allocations: 2320)  (0.1ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "scotty.hermiston@lubowitz.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "scotty.hermiston@lubowitz.net"], ["encrypted_password", "$2a$04$WbSHuSe4efNmEZ/TGox3pecEhveZ0yEJuToborcnTAnWNVqpJsv92"], ["confirmed_at", "2019-10-13 21:57:09.027550"], ["name", "Phil DeGrave"], ["email", "scotty.hermiston@lubowitz.net"], ["created_at", "2019-10-13 21:57:09.028822"], ["updated_at", "2019-10-13 21:57:09.028822"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c1ab2fe1d8e5c0a0e6a6925a7e38ae6ffbf83b075be072b4138de87e9a28b839"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "c1ab2fe1d8e5c0a0e6a6925a7e38ae6ffbf83b075be072b4138de87e9a28b839"], ["reset_password_sent_at", "2019-10-13 21:57:09.112432"], ["updated_at", "2019-10-13 21:57:09.112591"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22y--RZEJ54QbLW6CWVZTq%22%2C%0A++++++++++++redirectUrl%3A+%22%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:57:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"y--RZEJ54QbLW6CWVZTq\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c1ab2fe1d8e5c0a0e6a6925a7e38ae6ffbf83b075be072b4138de87e9a28b839"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Lc-9R4vtMCHmCpIJ-R-ycg\":{\"token\":\"$2a$10$5ZA.r4BV4sgOer32Cw6DXOhh2tfadd9Ga3Cgut9NutJMZd3hNknfm\",\"expiry\":1572213429}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 21:57:09.179499"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Lc-9R4vtMCHmCpIJ-R-ycg\":{\"token\":\"$2a$10$5ZA.r4BV4sgOer32Cw6DXOhh2tfadd9Ga3Cgut9NutJMZd3hNknfm\",\"expiry\":1572213429},\"FOR1n0MnhVIG90i7q3cfZQ\":{\"token\":\"$2a$10$JJvRB3l4EkLw8VMz/GzwXOeojdXMSfXWST85D8LtVOBW7mJBwogLW\",\"expiry\":1572213429,\"updated_at\":\"2019-10-13 21:57:09 UTC\"}}"], ["updated_at", "2019-10-13 21:57:09.223550"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 99ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 17838)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marshall_pfannerstill@smitham.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marshall_pfannerstill@smitham.net"], ["encrypted_password", "$2a$04$pRJUqXKfJ9TCo0exfl2UgeoryBMvCEveuU0Zkw1PadV2IAOjy92wC"], ["confirmed_at", "2019-10-13 21:57:09.230932"], ["name", "Rich Guy"], ["email", "marshall_pfannerstill@smitham.net"], ["created_at", "2019-10-13 21:57:09.231774"], ["updated_at", "2019-10-13 21:57:09.231774"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f990009de7e1dc77f9a1b2baf48204088619762992d7f5e1fa972f8e0ccd9b64"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f990009de7e1dc77f9a1b2baf48204088619762992d7f5e1fa972f8e0ccd9b64"], ["reset_password_sent_at", "2019-10-13 21:57:09.235086"], ["updated_at", "2019-10-13 21:57:09.235224"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22KsDummaUEVeemZKipQ44%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:57:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"KsDummaUEVeemZKipQ44\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f990009de7e1dc77f9a1b2baf48204088619762992d7f5e1fa972f8e0ccd9b64"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"yZE9yCcgpV9yvx1rPgNGMA\":{\"token\":\"$2a$10$yY9KeRWKdS9mWIQuqsksA.Vpa35buxw.IwQwKa7tSXWAC4X5r7VYW\",\"expiry\":1572213429}}"], ["allow_password_change", 1], ["updated_at", "2019-10-13 21:57:09.290880"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=XdFj5ui7UWuzeSRALhw-aw&client=yZE9yCcgpV9yvx1rPgNGMA&client_id=yZE9yCcgpV9yvx1rPgNGMA&config=&expiry=1572213429&reset_password=true&token=XdFj5ui7UWuzeSRALhw-aw&uid=marshall_pfannerstill%40smitham.net Completed 302 Found in 55ms (ActiveRecord: 0.2ms | Allocations: 1936) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dorian_stark@mcdermott.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dorian_stark@mcdermott.com"], ["encrypted_password", "$2a$04$Uu5w8KZtwcMt.DhpvZXmpu89WabG5dEuujl6EHhfeS5X6z5kylVmS"], ["confirmed_at", "2019-10-13 11:57:09"], ["name", "Duane Pipe"], ["email", "dorian_stark@mcdermott.com"], ["created_at", "2019-10-13 11:57:09"], ["updated_at", "2019-10-13 11:57:09"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "679b0931a02c8c167894b922effca1874893e3e05da789b24413f02677ece3ba"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "679b0931a02c8c167894b922effca1874893e3e05da789b24413f02677ece3ba"], ["reset_password_sent_at", "2019-10-13 11:57:09"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22UrafhgsXxxqUxWbtwAJF%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:57:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"UrafhgsXxxqUxWbtwAJF\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "679b0931a02c8c167894b922effca1874893e3e05da789b24413f02677ece3ba"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1270)  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "vena_conn@waelchilebsack.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "vena_conn@waelchilebsack.name"], ["encrypted_password", "$2a$04$tvs6KYd8NmCBTUVw.7Zal.5bphQfIGk1qcx2J0RYEpVyJKk0CJQV."], ["confirmed_at", "2019-10-13 21:57:09.309380"], ["name", "Ima Klotz"], ["email", "vena_conn@waelchilebsack.name"], ["created_at", "2019-10-13 21:57:09.310608"], ["updated_at", "2019-10-13 21:57:09.310608"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "48fe7e56cf2c91b53e8532ecb29782a4bbf1a4615325b5b0888d494674c3e58c"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "48fe7e56cf2c91b53e8532ecb29782a4bbf1a4615325b5b0888d494674c3e58c"], ["reset_password_sent_at", "2019-10-13 21:57:09.312689"], ["updated_at", "2019-10-13 21:57:09.312864"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22bJZMvxBEGNdu2YYDV8P1invalid%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-13 16:57:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"bJZMvxBEGNdu2YYDV8P1invalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c67be2094634f596c64cadd08cef2d3d4ab8a40d2dc84770f582e69443ecbecb"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.4ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:57:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.1ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:57:09 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n guestCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.0ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "harriet@danielwehner.co"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.3ms) INSERT INTO "guests" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "harriet@danielwehner.co"], ["encrypted_password", "$2a$04$byzKismugfpIhL6ntD08qea9NIB17zwLL3lIEyS.kY1zgpFZ8w/k."], ["confirmed_at", "2019-10-13 21:58:52.061174"], ["email", "harriet@danielwehner.co"], ["created_at", "2019-10-13 21:58:52.062390"], ["updated_at", "2019-10-13 21:58:52.062390"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-13 16:58:52 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestLogin(\n email: \"harriet@danielwehner.co\",\n password: \"12345678\"\n ) {\n authenticable { email }\n }\n }\n"} Guest Load (0.1ms) SELECT "guests".* FROM "guests" WHERE "guests"."email" = ? LIMIT ? [["email", "harriet@danielwehner.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Guest Update (0.1ms) UPDATE "guests" SET "tokens" = ?, "updated_at" = ? WHERE "guests"."id" = ? [["tokens", "{\"TAaslynOauI7IesntQblvQ\":{\"token\":\"$2a$10$AfjOh2ZncNlpJetuCO14JezUK0rlvvhmHTiVa5o4oLfGjDCwapZx.\",\"expiry\":1572213532,\"updated_at\":\"2019-10-13 21:58:52 UTC\"}}"], ["updated_at", "2019-10-13 21:58:52.142491"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 68ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 17555)  (0.3ms) rollback transaction  (2.1ms) SELECT sqlite_version(*)  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.1ms) SELECT sqlite_version(*)  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "moses.hudson@schaefer.net"], ["provider", "email"], ["LIMIT", 1]] User Create (2.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "moses.hudson@schaefer.net"], ["encrypted_password", "$2a$04$pVFqO4wf9MYgSqYBAEcty.r.ElU9iNJ2ok4UyS3GCiBBAlkjU2SrK"], ["confirmed_at", "2019-10-14 15:59:54.328523"], ["name", "Helen Highwater"], ["email", "moses.hudson@schaefer.net"], ["created_at", "2019-10-14 15:59:54.330366"], ["updated_at", "2019-10-14 15:59:54.330366"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"moses.hudson@schaefer.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "moses.hudson@schaefer.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"WgFRbAc1ia5hs3WAEBh3Cw\":{\"token\":\"$2a$10$Jrks8hfECZW9yJLhFvb/bumU1IY7Nq5TQy1st8oBpP/m7PM15oLcK\",\"expiry\":1572278394,\"updated_at\":\"2019-10-14 15:59:54 UTC\"}}"], ["updated_at", "2019-10-14 15:59:54.448513"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-14 15:59:54.452423"], ["last_sign_in_at", "2019-10-14 15:59:54.452423"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-14 15:59:54.452767"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 96ms (Views: 0.2ms | ActiveRecord: 0.8ms | Allocations: 18584) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "andrew.williamson@purdy.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "andrew.williamson@purdy.info"], ["encrypted_password", "$2a$04$lhdp5cQ2ef27e/NqntZxB.TL9nR18AY.ucNap.2oVHBn5J0HdtGBm"], ["confirmed_at", "2019-10-14 15:59:54.463406"], ["name", "Reed Toomey"], ["email", "andrew.williamson@purdy.info"], ["created_at", "2019-10-14 15:59:54.465368"], ["updated_at", "2019-10-14 15:59:54.465368"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"andrew.williamson@purdy.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "andrew.williamson@purdy.info"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 2044)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "maryalice@greenfelderankunding.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "maryalice@greenfelderankunding.co"], ["encrypted_password", "$2a$04$ylfVLl.Jv57wE0pwHXRRl.jTPZ315XRmuBjDxOVKyYIOuwi6gQSry"], ["confirmation_token", "xYvFrZLxuNdcGWCqsMCu"], ["confirmation_sent_at", "2019-10-14 15:59:54.479567"], ["name", "Shirley Knot"], ["email", "maryalice@greenfelderankunding.co"], ["created_at", "2019-10-14 15:59:54.479451"], ["updated_at", "2019-10-14 15:59:54.479451"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"maryalice@greenfelderankunding.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "maryalice@greenfelderankunding.co"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.2ms | Allocations: 1363)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "willis_hagenes@beier.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "willis_hagenes@beier.co"], ["encrypted_password", "$2a$04$.vmP4bRyBQWArE.pHqSRC./nhmW15106tqiDHGUk0xcYG9ujT1ug2"], ["confirmed_at", "2019-10-14 15:59:54.491496"], ["locked_at", "2019-10-14 15:59:54.491526"], ["name", "E. Ville"], ["email", "willis_hagenes@beier.co"], ["created_at", "2019-10-14 15:59:54.493217"], ["updated_at", "2019-10-14 15:59:54.493217"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"willis_hagenes@beier.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "willis_hagenes@beier.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nanci@dickens.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nanci@dickens.info"], ["encrypted_password", "$2a$04$5NrxEpfxEYVZDlIio2tr1efvE9bAutpy2FlEOqbmqs1oUtOsPLRMm"], ["confirmed_at", "2019-10-14 15:59:54.503939"], ["name", "Molly Kuehl"], ["email", "nanci@dickens.info"], ["created_at", "2019-10-14 15:59:54.504993"], ["updated_at", "2019-10-14 15:59:54.504993"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"nanci@dickens.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nanci@dickens.info"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1359)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.3ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "ruell@hills.org"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.8ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "ruell@hills.org"], ["encrypted_password", "$2a$04$DCFxLUImTidXPDwp4hAjbuojS.E3R8sb1C49uTpWxDTyO3d6Y9AZ."], ["confirmed_at", "2019-10-14 15:59:54.527884"], ["email", "ruell@hills.org"], ["created_at", "2019-10-14 15:59:54.530364"], ["updated_at", "2019-10-14 15:59:54.530364"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"ruell@hills.org\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "ruell@hills.org"], ["LIMIT", 1]]  (0.2ms) SAVEPOINT active_record_1 Admin Update (0.2ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"NpIJpW3ZaJmf3_tEPE3pcw\":{\"token\":\"$2a$10$zUuOJEqbJdkVWZER96Tr2uzDcHLBhO60jJWPotBhL8xpmf.ShhxIa\",\"expiry\":1572278394,\"updated_at\":\"2019-10-14 15:59:54 UTC\"}}"], ["updated_at", "2019-10-14 15:59:54.596241"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 67ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 2401)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.3ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "jackie@kunde.net"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.8ms) INSERT INTO "guests" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "jackie@kunde.net"], ["encrypted_password", "$2a$04$9NKQ98o9OXRioC6BrDuFLOhmI/IIHbw4Af4iQND61EXTUmFtOYIE2"], ["confirmed_at", "2019-10-14 15:59:54.617794"], ["email", "jackie@kunde.net"], ["created_at", "2019-10-14 15:59:54.619396"], ["updated_at", "2019-10-14 15:59:54.619396"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestLogin(\n email: \"jackie@kunde.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n }\n }\n"} Guest Load (0.2ms) SELECT "guests".* FROM "guests" WHERE "guests"."email" = ? LIMIT ? [["email", "jackie@kunde.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Guest Update (0.1ms) UPDATE "guests" SET "tokens" = ?, "updated_at" = ? WHERE "guests"."id" = ? [["tokens", "{\"jX6_7RtUMuSZIdU4ba494w\":{\"token\":\"$2a$10$MVZ6YMsnWCc8RS03GMe/M.5Pm0mAWnWkwabuvQAJ84Bcov0n6upaq\",\"expiry\":1572278394,\"updated_at\":\"2019-10-14 15:59:54 UTC\"}}"], ["updated_at", "2019-10-14 15:59:54.687070"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 67ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2320)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "markita@lind.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "markita@lind.org"], ["encrypted_password", "$2a$04$ZXjDJ6t4fs8DhGgowxj1v.h1jtHwecIQNm8V6M1wEQz7NLVDFFi1S"], ["confirmed_at", "2019-10-14 15:59:54.692702"], ["name", "Otto Carr"], ["email", "markita@lind.org"], ["created_at", "2019-10-14 15:59:54.694266"], ["updated_at", "2019-10-14 15:59:54.694266"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"U-rIApXTc6wPda_cSmQBgQ\":{\"token\":\"$2a$10$VVpGKz8JZ7qc4Im.AFKC1.8BNCG2/KUQxY6.OWJBSyVxNOiqPjKAy\",\"expiry\":1572278394,\"updated_at\":\"2019-10-14 15:59:54 UTC\"}}"], ["updated_at", "2019-10-14 15:59:54.758530"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "markita@lind.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-14 15:59:54.825412"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 68ms (Views: 0.4ms | ActiveRecord: 0.6ms | Allocations: 1896) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.2ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jerrold@romaguera.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (1.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jerrold@romaguera.biz"], ["encrypted_password", "$2a$04$rn.IbVJHTzynWhkDHS37kOa1Nr1Bdr3mcqxNoKrh7dmgfcFVngtLi"], ["confirmed_at", "2019-10-14 15:59:54.841716"], ["name", "Ilene West"], ["email", "jerrold@romaguera.biz"], ["created_at", "2019-10-14 15:59:54.844145"], ["updated_at", "2019-10-14 15:59:54.844145"]]  (0.2ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.4ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "glendora@gutkowski.com"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.7ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "glendora@gutkowski.com"], ["encrypted_password", "$2a$04$TpOitTm561wkMYosZ54Vp.HTVBURRTfs7MuOxCxLAVeeQbwKz4/9e"], ["confirmed_at", "2019-10-14 15:59:54.854171"], ["email", "glendora@gutkowski.com"], ["created_at", "2019-10-14 15:59:54.856273"], ["updated_at", "2019-10-14 15:59:54.856273"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"7zDss-VwEc1z8eG9UH4jXA\":{\"token\":\"$2a$10$UVxA46Rlkx0NVpkYvwmF1u5K8aJiiAFeAuffKLlaml7fHYq21G8qG\",\"expiry\":1572278394,\"updated_at\":\"2019-10-14 15:59:54 UTC\"}}"], ["updated_at", "2019-10-14 15:59:54.924405"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "glendora@gutkowski.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-14 15:59:54.980270"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 55ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1825) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sean@hermann.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sean@hermann.org"], ["encrypted_password", "$2a$04$QfkonJhBtftgdglU.14l9ugmdXL.ZVzjoYEPZeKv0UHvkLhkXLtcm"], ["confirmed_at", "2019-10-14 15:59:54.988056"], ["name", "Kenya Dewit"], ["email", "sean@hermann.org"], ["created_at", "2019-10-14 15:59:54.989132"], ["updated_at", "2019-10-14 15:59:54.989132"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"sean@hermann.org\",\n redirectUrl: \"http://legros.org/andrea_conroy\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "sean@hermann.org"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2325220c811575d5401f33dc6d1572cc0bb8bf76544e68483e002e0ceb3483be"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "2325220c811575d5401f33dc6d1572cc0bb8bf76544e68483e002e0ceb3483be"], ["reset_password_sent_at", "2019-10-14 15:59:55.090736"], ["updated_at", "2019-10-14 15:59:55.091048"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 2.2ms | Allocations: 1308) Devise::Mailer#reset_password_instructions: processed outbound mail in 129.5ms Delivered mail 5da49b7b36fe3_8693ff034832020864ec@Marios-MacBook-Pro.local.mail (6.0ms) Date: Mon, 14 Oct 2019 10:59:55 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: sean@hermann.org Message-ID: <5da49b7b36fe3_8693ff034832020864ec@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: sean@hermann.org provider: email redirect-url: http://legros.org/andrea_conroy client-config: default

Hello sean@hermann.org!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 237ms (Views: 0.1ms | ActiveRecord: 0.7ms | Allocations: 67753) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Flegros.org%2Fandrea_conroy&variables%5Btoken%5D=P2r_kRxVy1St9F_puvy1" for 127.0.0.1 at 2019-10-14 10:59:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://legros.org/andrea_conroy", "token"=>"P2r_kRxVy1St9F_puvy1"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2325220c811575d5401f33dc6d1572cc0bb8bf76544e68483e002e0ceb3483be"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ZROF79CCdPFL4GyrydLKxQ\":{\"token\":\"$2a$10$ADMbtJtAWx0USO/WzrXX9uQp9pRmReTvJ1XiYBkiyyoG0z7tKG4Qm\",\"expiry\":1572278395}}"], ["allow_password_change", 1], ["updated_at", "2019-10-14 15:59:55.288684"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://legros.org/andrea_conroy?access-token=qek_MKVcPcDt9VM8nBP_OA&client=ZROF79CCdPFL4GyrydLKxQ&client_id=ZROF79CCdPFL4GyrydLKxQ&config=&expiry=1572278395&reset_password=true&token=qek_MKVcPcDt9VM8nBP_OA&uid=sean%40hermann.org Completed 302 Found in 52ms (ActiveRecord: 0.3ms | Allocations: 2145) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://shieldsboehm.org/vivian\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"kaylene@durganschulist.com\"\n name: \"Brian Daugherty\"\n password: \"LbWm1My7X8\"\n passwordConfirmation: \"LbWm1My7X8\"\n confirmSuccessUrl: \"http://collier.co/tyisha\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kaylene@durganschulist.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "kaylene@durganschulist.com"], ["encrypted_password", "$2a$04$CK2EnJQoOYOQjQynTol/H..rHuabIPsjdpbIuRSNyjLjHKWwim/d6"], ["confirmation_token", "zc_sQamxMjMsWtf6yszr"], ["confirmation_sent_at", "2019-10-14 15:59:55.303921"], ["name", "Brian Daugherty"], ["email", "kaylene@durganschulist.com"], ["created_at", "2019-10-14 15:59:55.303846"], ["updated_at", "2019-10-14 15:59:55.303846"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.9ms | Allocations: 581) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms Delivered mail 5da49b7b4b1eb_8693ff03483202086524@Marios-MacBook-Pro.local.mail (1.2ms) Date: Mon, 14 Oct 2019 10:59:55 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: kaylene@durganschulist.com Message-ID: <5da49b7b4b1eb_8693ff03483202086524@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://collier.co/tyisha

Welcome kaylene@durganschulist.com!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5463)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fcollier.co%2Ftyisha&variables%5Btoken%5D=zc_sQamxMjMsWtf6yszr" for 127.0.0.1 at 2019-10-14 10:59:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://collier.co/tyisha", "token"=>"zc_sQamxMjMsWtf6yszr"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "zc_sQamxMjMsWtf6yszr"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-14 15:59:55.317227"], ["updated_at", "2019-10-14 15:59:55.317510"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://collier.co/tyisha?account_confirmation_success=true Completed 302 Found in 8ms (ActiveRecord: 0.5ms | Allocations: 2180) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Pearlene Yost\"\n password: \"XfZtMlRzA2zR3m47\"\n passwordConfirmation: \"XfZtMlRzA2zR3m47\"\n confirmSuccessUrl: \"http://deckow.com/alfonso.berge\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.2ms | Allocations: 2713)  (0.2ms) SELECT COUNT(*) FROM "users"  (0.1ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"peter.swift@green.co\"\n password: \"L2mFkV7zHxE\"\n passwordConfirmation: \"L2mFkV7zHxE\"\n confirmSuccessUrl: \"http://trompking.net/buford\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 818)  (0.1ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"mayola_daugherty@lynch.com\"\n password: \"K1aM6tGq3DmZlJnO\"\n passwordConfirmation: \"K1aM6tGq3DmZlJnO\"\n confirmSuccessUrl: \"http://kshlerinfisher.name/kristal\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 818)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lacresha@harber.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lacresha@harber.org"], ["encrypted_password", "$2a$04$lJ/b/ZoUq86DpWu0dGzaaeCMxRVzCgh5rlIeJ43zXlD2T/3QoD1rO"], ["allow_password_change", 1], ["confirmed_at", "2019-10-14 15:59:55.369159"], ["name", "Tad Pohl"], ["email", "lacresha@harber.org"], ["created_at", "2019-10-14 15:59:55.371076"], ["updated_at", "2019-10-14 15:59:55.371076"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.6ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"5mdx9o4GOGKKgflYEDgMRw\":{\"token\":\"$2a$10$1N77DEnIM45/hKXvm9U97OpZcipOQlhrud8HRbdtrhy7fJQOwoYRG\",\"expiry\":1572278395,\"updated_at\":\"2019-10-14 15:59:55 UTC\"}}"], ["updated_at", "2019-10-14 15:59:55.431477"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lacresha@harber.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$uVgsTrVonI.DHmUIeAS76u6sy0e1Wb0f2HTa2xqwpzZJiG3wac7OG"], ["updated_at", "2019-10-14 15:59:55.491026"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-14 15:59:55.493636"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2882) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "nathan@rolfson.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "nathan@rolfson.io"], ["encrypted_password", "$2a$04$Npcn.mOGXP5LtNptgLuVnOFYjALEZpVVjXoX00JpEAJM1F3AvHEzq"], ["allow_password_change", 1], ["confirmed_at", "2019-10-14 15:59:55.501552"], ["name", "Rory Storm"], ["email", "nathan@rolfson.io"], ["created_at", "2019-10-14 15:59:55.503137"], ["updated_at", "2019-10-14 15:59:55.503137"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"VanGhISptRIPcOJQcHsdOA\":{\"token\":\"$2a$10$/9oryvMQRzQUTba8TTLUVeGPrCEEUkfd6QGBhE7OzHbRTYDWK1uhG\",\"expiry\":1572278395,\"updated_at\":\"2019-10-14 15:59:55 UTC\"}}"], ["updated_at", "2019-10-14 15:59:55.558815"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "nathan@rolfson.io"], ["LIMIT", 1]]  (0.2ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$JcVPOaxC.mR0fhWr8UAY4u6kAfEDD/0HV7yZ69DI9J7Xq4w3VxJmW"], ["updated_at", "2019-10-14 15:59:55.616129"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-14 15:59:55.618367"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 2874) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lenard_sipes@friesen.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lenard_sipes@friesen.co"], ["encrypted_password", "$2a$04$DW1oUg20crrdU8cFNDLZJu0XUuV3kVPCDYdvaXp2grHK9xqEFj8xG"], ["confirmed_at", "2019-10-14 15:59:55.627315"], ["name", "Val Lay"], ["email", "lenard_sipes@friesen.co"], ["created_at", "2019-10-14 15:59:55.628463"], ["updated_at", "2019-10-14 15:59:55.628463"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BQZD2e22xovoxjUGe91-Gg\":{\"token\":\"$2a$10$zFKxCd2xX30Ag5E4hRE.neTtzgkhGWsfCSJ1dWnpFjSgamKJGsWAm\",\"expiry\":1572278395,\"updated_at\":\"2019-10-14 15:59:55 UTC\"}}"], ["updated_at", "2019-10-14 15:59:55.684341"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lenard_sipes@friesen.co"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2358) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rob@waelchi.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "rob@waelchi.io"], ["encrypted_password", "$2a$04$ADYkepYRSlHsoHyGOuzJYObZO0tWBo2eHN6NLGNsqcd40k/oNwszC"], ["allow_password_change", 1], ["confirmed_at", "2019-10-14 15:59:55.745683"], ["name", "Buddy Booth"], ["email", "rob@waelchi.io"], ["created_at", "2019-10-14 15:59:55.747201"], ["updated_at", "2019-10-14 15:59:55.747201"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"cdAPXHjd3Ip874PY3Ozwtw\":{\"token\":\"$2a$10$vtLqVgxPJru5.cu2QHzOD.wgjJXLxM5HCGvzBo63wEpKrbAlgdmoO\",\"expiry\":1572278395,\"updated_at\":\"2019-10-14 15:59:55 UTC\"}}"], ["updated_at", "2019-10-14 15:59:55.798778"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "rob@waelchi.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$IuMrZSnJVW7haRiZKP2cguWmukSajuDnhYZVV6XjbcfNTd1rCQ/V2"], ["updated_at", "2019-10-14 15:59:55.851947"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-14 15:59:55.853371"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hosea.sipes@hudson.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "hosea.sipes@hudson.name"], ["encrypted_password", "$2a$04$9vT6hoWA3dA3WeVDrFZ9SuhoWKndGO0uvwCyF.NKfF9/XxHjk.o.O"], ["allow_password_change", 1], ["confirmed_at", "2019-10-14 15:59:55.860501"], ["name", "Cole Durkee"], ["email", "hosea.sipes@hudson.name"], ["created_at", "2019-10-14 15:59:55.861915"], ["updated_at", "2019-10-14 15:59:55.861915"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"cknbxvYc__LxDhKYWS4abQ\":{\"token\":\"$2a$10$Kz5HhhVO/2jlwmhC/yAsv.fD22daTSRv9s.5YQws/hh5pF7IiN66a\",\"expiry\":1572278395,\"updated_at\":\"2019-10-14 15:59:55 UTC\"}}"], ["updated_at", "2019-10-14 15:59:55.916362"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "hosea.sipes@hudson.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$I.32NPQ3afok70IyguUqlO3o8MAG06KIboG2gMIqie989qS1D5tCW"], ["updated_at", "2019-10-14 15:59:55.971420"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-14 15:59:55.972596"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "stefani@labadietreutel.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "stefani@labadietreutel.com"], ["encrypted_password", "$2a$04$bPkZav4FAvL2RZioMZK8EOODOrnK3UAIlhEvg8wuZihwzpcv0wr4i"], ["confirmed_at", "2019-10-14 15:59:55.981576"], ["name", "Dusty Sandmann"], ["email", "stefani@labadietreutel.com"], ["created_at", "2019-10-14 15:59:55.983061"], ["updated_at", "2019-10-14 15:59:55.983061"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"fI1pPskab74eO_0AF6O9Ow\":{\"token\":\"$2a$10$F01.pDe.kXMn1V.BSMn3l.LBN56MkI.520vy8R3rVwDB3dtCHLHHi\",\"expiry\":1572278396,\"updated_at\":\"2019-10-14 15:59:55 UTC\"}}"], ["updated_at", "2019-10-14 15:59:56.038424"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "stefani@labadietreutel.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$tDUJ6R9D15FwFc/FLezuAu/w4EX.tQrVAz7Qe9qh9IpmuAz/YNQE."], ["updated_at", "2019-10-14 15:59:56.091497"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2643) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tonya.tillman@kshlerin.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tonya.tillman@kshlerin.name"], ["encrypted_password", "$2a$04$3hgjpA0bWc6rbGzOXvWHTegd2uvxqxQPdch5.nirCsDqEYFD.Q6G2"], ["confirmed_at", "2019-10-14 15:59:56.099359"], ["name", "Bruce Easley"], ["email", "tonya.tillman@kshlerin.name"], ["created_at", "2019-10-14 15:59:56.100520"], ["updated_at", "2019-10-14 15:59:56.100520"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rudy.bergnaum@rodriguez.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rudy.bergnaum@rodriguez.biz"], ["encrypted_password", "$2a$04$l/UTEAskyVDbW9KOWh.dNuGG0b4aHA.2lGe/pLHuAO4RSxUcuiRl2"], ["confirmed_at", "2019-10-14 15:59:56.112321"], ["name", "Perry Mecium"], ["email", "rudy.bergnaum@rodriguez.biz"], ["created_at", "2019-10-14 15:59:56.114195"], ["updated_at", "2019-10-14 15:59:56.114195"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b78ecef732ccca0b04a55b68260dccf205aa8b607fe2dcd20725f02b25cdd66e"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b78ecef732ccca0b04a55b68260dccf205aa8b607fe2dcd20725f02b25cdd66e"], ["reset_password_sent_at", "2019-10-14 15:59:56.116397"], ["updated_at", "2019-10-14 15:59:56.116544"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22mb1PtBNzyHyzJP1ApzX1%22%2C%0A++++++++++++redirectUrl%3A+%22%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 10:59:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"mb1PtBNzyHyzJP1ApzX1\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b78ecef732ccca0b04a55b68260dccf205aa8b607fe2dcd20725f02b25cdd66e"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"sve4ip0cxIOHFDA1PV3TUQ\":{\"token\":\"$2a$10$TWkNL.5A2i2fmgX4XyBCce9yWo1HSUmTwKCS3zzUrLKHeBOV2m5hu\",\"expiry\":1572278396}}"], ["allow_password_change", 1], ["updated_at", "2019-10-14 15:59:56.205421"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"sve4ip0cxIOHFDA1PV3TUQ\":{\"token\":\"$2a$10$TWkNL.5A2i2fmgX4XyBCce9yWo1HSUmTwKCS3zzUrLKHeBOV2m5hu\",\"expiry\":1572278396},\"6FhXa054E0xxLz212JpSvg\":{\"token\":\"$2a$10$Zu8O8GZkwkKNb6s4tA89P.A5zpi.o5vmByQjFnOmDSZFrkxPvNj1C\",\"expiry\":1572278396,\"updated_at\":\"2019-10-14 15:59:56 UTC\"}}"], ["updated_at", "2019-10-14 15:59:56.254144"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 109ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2660)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sharyn@gutmann.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "sharyn@gutmann.co"], ["encrypted_password", "$2a$04$Yvyi1LGbqEi8v68rUcLRvOcZNiMr2QAyok99Ao7qkGTVDioaG2fIW"], ["confirmed_at", "2019-10-14 15:59:56.258697"], ["name", "Marlon Fisher"], ["email", "sharyn@gutmann.co"], ["created_at", "2019-10-14 15:59:56.259501"], ["updated_at", "2019-10-14 15:59:56.259501"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e1e1151d04658ffc262f24fd96d278529910aeb612de8483f9537c934853bc3b"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "e1e1151d04658ffc262f24fd96d278529910aeb612de8483f9537c934853bc3b"], ["reset_password_sent_at", "2019-10-14 15:59:56.261680"], ["updated_at", "2019-10-14 15:59:56.261940"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22VovmxSgBfV-ocUXPuCXX%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 10:59:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"VovmxSgBfV-ocUXPuCXX\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "e1e1151d04658ffc262f24fd96d278529910aeb612de8483f9537c934853bc3b"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"rgJpJ8lEprFy9rdnrZTRCQ\":{\"token\":\"$2a$10$Qi5w0k3ENyWPAUh0Car7N.2BpoFjVz7VLkns5ajzQ1aUSqBXTh7wK\",\"expiry\":1572278396}}"], ["allow_password_change", 1], ["updated_at", "2019-10-14 15:59:56.316149"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=WrWrYqGfdzV8MkGb9XyFHA&client=rgJpJ8lEprFy9rdnrZTRCQ&client_id=rgJpJ8lEprFy9rdnrZTRCQ&config=&expiry=1572278396&reset_password=true&token=WrWrYqGfdzV8MkGb9XyFHA&uid=sharyn%40gutmann.co Completed 302 Found in 53ms (ActiveRecord: 0.3ms | Allocations: 1916) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alexis@bergnaum.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alexis@bergnaum.biz"], ["encrypted_password", "$2a$04$wP3HN6H7qTipw.hx6H2fzueoHjGPPo0wPcSuWoSWzcH.sTCfQINjy"], ["confirmed_at", "2019-10-14 05:59:56"], ["name", "Clara Nett"], ["email", "alexis@bergnaum.biz"], ["created_at", "2019-10-14 05:59:56"], ["updated_at", "2019-10-14 05:59:56"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "75d0507418361583d0a762838274981a1cd8ec35f67650aa4ce61a5d51079fd8"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "75d0507418361583d0a762838274981a1cd8ec35f67650aa4ce61a5d51079fd8"], ["reset_password_sent_at", "2019-10-14 05:59:56"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22kwQpFGJqq1DTSTXhT-cM%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 10:59:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"kwQpFGJqq1DTSTXhT-cM\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "75d0507418361583d0a762838274981a1cd8ec35f67650aa4ce61a5d51079fd8"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1266)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "javier@berge.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "javier@berge.name"], ["encrypted_password", "$2a$04$PaQKC.sYcyQK/RsjAti07OoX1h3ceCEBU7cuqQf.dJqHk0U1tMTxe"], ["confirmed_at", "2019-10-14 15:59:56.334052"], ["name", "Sam Pull"], ["email", "javier@berge.name"], ["created_at", "2019-10-14 15:59:56.335150"], ["updated_at", "2019-10-14 15:59:56.335150"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4ae5b7a0cd5696456a525d6b4a9f6bd741cb43e0f28cf3062c8401f310fbfcc0"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "4ae5b7a0cd5696456a525d6b4a9f6bd741cb43e0f28cf3062c8401f310fbfcc0"], ["reset_password_sent_at", "2019-10-14 15:59:56.336643"], ["updated_at", "2019-10-14 15:59:56.336761"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22KUUkUGkfC2nURPeAZ3DDinvalid%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 10:59:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"KUUkUGkfC2nURPeAZ3DDinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "834dfeee50cd108bda52fe6a84c8f64163594d71348f57030cfc05b359976451"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.3ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.1ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n guestCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lyda@pagacohara.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lyda@pagacohara.org"], ["encrypted_password", "$2a$04$jCT8WgmicjuYrMjTr9TtbOdw4RGsrkcMhQiG8wShKaldnx3.EJoCK"], ["confirmation_token", "FvoJxr8dZzVDWxGq71do"], ["confirmation_sent_at", "2019-10-14 15:59:56.355069"], ["name", "Terry Achey"], ["email", "lyda@pagacohara.org"], ["created_at", "2019-10-14 15:59:56.354965"], ["updated_at", "2019-10-14 15:59:56.354965"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 1.1ms | Allocations: 408) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.4ms Delivered mail 5da49b7c57cf3_8693ff0348320208669c@Marios-MacBook-Pro.local.mail (1.4ms) Date: Mon, 14 Oct 2019 10:59:56 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: lyda@pagacohara.org Message-ID: <5da49b7c57cf3_8693ff0348320208669c@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome lyda@pagacohara.org!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22FvoJxr8dZzVDWxGq71do%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fgusikowski.co%2Froyce%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 10:59:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"FvoJxr8dZzVDWxGq71do\"\n redirectUrl: \"http://gusikowski.co/royce\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "FvoJxr8dZzVDWxGq71do"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-14 15:59:56.364863"], ["updated_at", "2019-10-14 15:59:56.365116"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://gusikowski.co/royce?account_confirmation_success=true Completed 302 Found in 5ms (ActiveRecord: 0.5ms | Allocations: 1789) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "geraldo@gerlach.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "geraldo@gerlach.net"], ["encrypted_password", "$2a$04$qCmYZPjVxn3WUYxOxxfu7u87vq14OVW6yriO7Y3RGjT2H1tKl8yxe"], ["confirmation_token", "zJ_1EzUQfz1K6qPJ4BP-"], ["confirmation_sent_at", "2019-10-14 15:59:56.375754"], ["name", "Colleen Cardd"], ["email", "geraldo@gerlach.net"], ["created_at", "2019-10-14 15:59:56.375641"], ["updated_at", "2019-10-14 15:59:56.375641"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22zJ_1EzUQfz1K6qPJ4BP--invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fquigley.info%2Fhector_fahey%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 10:59:56 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"zJ_1EzUQfz1K6qPJ4BP--invalid\"\n redirectUrl: \"http://quigley.info/hector_fahey\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "zJ_1EzUQfz1K6qPJ4BP--invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "4c3d93f35fad3aee2c6f4ca2412e3e3bd2421aa7e31e05554e9cf4f2f2cf137c"], ["LIMIT", 1]] Completed 200 OK in 99ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2009) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "kirby@kulatehr.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "kirby@kulatehr.org"], ["encrypted_password", "$2a$04$GnnndGgA7cckwDxOTHTAJuP05N7Y61mvxPzuNilPNj2MORn7xXo2y"], ["confirmed_at", "2019-10-14 15:59:56.482574"], ["name", "Ann Tartica"], ["email", "kirby@kulatehr.org"], ["created_at", "2019-10-14 15:59:56.483419"], ["updated_at", "2019-10-14 15:59:56.483419"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"oH7Ddjx_jd4g1WZ_yOYiyg\":{\"token\":\"$2a$10$uqRbQndFcR76OuS2KOa9CeWk6MJ/aVjC0KLqxmjZ/BD8JL0YEmkiS\",\"expiry\":1572278396,\"updated_at\":\"2019-10-14 15:59:56 UTC\"}}"], ["updated_at", "2019-10-14 15:59:56.537454"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-14 10:59:56 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kirby@kulatehr.org"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 9749)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeanna@dietrich.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jeanna@dietrich.io"], ["encrypted_password", "$2a$04$4FiGyTGThZ427o8GcvwAieLBGjmA3oTtQhpcqCOrzbKC.iIje0WRu"], ["confirmed_at", "2019-10-14 15:59:56.604296"], ["name", "Ryan Carnation"], ["email", "jeanna@dietrich.io"], ["created_at", "2019-10-14 15:59:56.605096"], ["updated_at", "2019-10-14 15:59:56.605096"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-14 10:59:56 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.3ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bernita.block@heel.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "bernita.block@heel.info"], ["encrypted_password", "$2a$04$S1EJuJjukuV6GncNsi.fXOr.Qo6iDZMMIV.jutfjWEkK1x9NqKZNK"], ["confirmed_at", "2019-10-14 16:01:19.384890"], ["name", "Colleen Cardd"], ["email", "bernita.block@heel.info"], ["created_at", "2019-10-14 16:01:19.386163"], ["updated_at", "2019-10-14 16:01:19.386163"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"bernita.block@heel.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bernita.block@heel.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"vN9Jw1_UrokF305vSdA1SQ\":{\"token\":\"$2a$10$hTMOhQNTkbe5WpxIi1GAqemKsfqOWBqAZc1OJhcTDEyi5rRDoyvGK\",\"expiry\":1572278479,\"updated_at\":\"2019-10-14 16:01:19 UTC\"}}"], ["updated_at", "2019-10-14 16:01:19.463698"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-14 16:01:19.466900"], ["last_sign_in_at", "2019-10-14 16:01:19.466900"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-14 16:01:19.467106"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 66ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 18579) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "herschel@legros.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "herschel@legros.net"], ["encrypted_password", "$2a$04$ujUNkQlVIj6ll/8ye2QH1.DewE9rJwRkgmnF5hWa8SdSvCRP1BRPC"], ["confirmed_at", "2019-10-14 16:01:19.475122"], ["name", "Jane Linkfence"], ["email", "herschel@legros.net"], ["created_at", "2019-10-14 16:01:19.476062"], ["updated_at", "2019-10-14 16:01:19.476062"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"herschel@legros.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "herschel@legros.net"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 2042)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "aaron.smith@macejkovic.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "aaron.smith@macejkovic.biz"], ["encrypted_password", "$2a$04$21g6gIuGWZl2KGAih/QsZuHuNDJ2fCwCktjzRad7bdMiLSePr/Qua"], ["confirmation_token", "euizyaEkN3pLjfVoNCyr"], ["confirmation_sent_at", "2019-10-14 16:01:19.488006"], ["name", "Kay Mart"], ["email", "aaron.smith@macejkovic.biz"], ["created_at", "2019-10-14 16:01:19.487895"], ["updated_at", "2019-10-14 16:01:19.487895"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"aaron.smith@macejkovic.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "aaron.smith@macejkovic.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1363)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "miles@lang.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "miles@lang.com"], ["encrypted_password", "$2a$04$ILBEIQEkxaFd4QTFY5BjBeC0PuiiiqTjpBrqSFzOLqoodEIsAe3bO"], ["confirmed_at", "2019-10-14 16:01:19.495885"], ["locked_at", "2019-10-14 16:01:19.495905"], ["name", "Walter Melon"], ["email", "miles@lang.com"], ["created_at", "2019-10-14 16:01:19.497273"], ["updated_at", "2019-10-14 16:01:19.497273"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"miles@lang.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "miles@lang.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "silva@bednar.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "silva@bednar.name"], ["encrypted_password", "$2a$04$eCHCj1VBbg.y...PYzXfZeM9di3WpTAe1/xZt2mxAStlK0zfP636."], ["confirmed_at", "2019-10-14 16:01:19.523375"], ["name", "Lina Ginster"], ["email", "silva@bednar.name"], ["created_at", "2019-10-14 16:01:19.524926"], ["updated_at", "2019-10-14 16:01:19.524926"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"silva@bednar.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "silva@bednar.name"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1362)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "caria@flatleybeahan.biz"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.5ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "caria@flatleybeahan.biz"], ["encrypted_password", "$2a$04$FL2LZFZOAO8lQHuuAwNF9eukzgUZBWVNThgTNbzcNSCKw3oVSH00C"], ["confirmed_at", "2019-10-14 16:01:19.547376"], ["email", "caria@flatleybeahan.biz"], ["created_at", "2019-10-14 16:01:19.549000"], ["updated_at", "2019-10-14 16:01:19.549000"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"caria@flatleybeahan.biz\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "caria@flatleybeahan.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"lxxyJUM16jqkc_cBbcfPbA\":{\"token\":\"$2a$10$GmvgVs/3MQb6YNRpb.IYvu/PqgTmeVKhcqq9eXbo9zt31YpWtMD7a\",\"expiry\":1572278479,\"updated_at\":\"2019-10-14 16:01:19 UTC\"}}"], ["updated_at", "2019-10-14 16:01:19.612810"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 62ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2402)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "brock.kihn@ullrich.info"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.5ms) INSERT INTO "guests" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "brock.kihn@ullrich.info"], ["encrypted_password", "$2a$04$v0HHU8nGDdt4mfQwkwo3s.l/B3iFZxozTcnGgiyz3g8Y7Ywzo6jXK"], ["confirmed_at", "2019-10-14 16:01:19.627332"], ["email", "brock.kihn@ullrich.info"], ["created_at", "2019-10-14 16:01:19.628933"], ["updated_at", "2019-10-14 16:01:19.628933"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestLogin(\n email: \"brock.kihn@ullrich.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n }\n }\n"} Guest Load (0.2ms) SELECT "guests".* FROM "guests" WHERE "guests"."email" = ? LIMIT ? [["email", "brock.kihn@ullrich.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Guest Update (0.1ms) UPDATE "guests" SET "tokens" = ?, "updated_at" = ? WHERE "guests"."id" = ? [["tokens", "{\"z0Fe5HjDKGt19PW-HJcTKA\":{\"token\":\"$2a$10$LhIJbp0GzqyGYZ3Fr4RXS.Cticq9JytJFyZ/LsDOO9CnxGXLsmTra\",\"expiry\":1572278479,\"updated_at\":\"2019-10-14 16:01:19 UTC\"}}"], ["updated_at", "2019-10-14 16:01:19.688054"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2320)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "angie@murazikhamill.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "angie@murazikhamill.info"], ["encrypted_password", "$2a$04$13gCU0cN9PwwPyd9Eb8.yubvejOIhLniQoogD9eKftOrc.2wzIEm2"], ["confirmed_at", "2019-10-14 16:01:19.692673"], ["name", "Rusty Keyes"], ["email", "angie@murazikhamill.info"], ["created_at", "2019-10-14 16:01:19.693561"], ["updated_at", "2019-10-14 16:01:19.693561"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"d3_K2qRgzlM5xkImBlXztA\":{\"token\":\"$2a$10$mDVyKcYmoAQjVykDYxCuKeNsEfNWP7b.cCmb37pe2JNOMd1V8pLrq\",\"expiry\":1572278479,\"updated_at\":\"2019-10-14 16:01:19 UTC\"}}"], ["updated_at", "2019-10-14 16:01:19.746296"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "angie@murazikhamill.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-14 16:01:19.798171"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1898) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "carter@toy.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "carter@toy.name"], ["encrypted_password", "$2a$04$xYIRDpmQ5cVpZ6Up53M31.jek8pG1me7NjrevazyfCO7dCMou9e4u"], ["confirmed_at", "2019-10-14 16:01:19.807161"], ["name", "Elle O'Quent"], ["email", "carter@toy.name"], ["created_at", "2019-10-14 16:01:19.808317"], ["updated_at", "2019-10-14 16:01:19.808317"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "dell.brown@leschanderson.com"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "dell.brown@leschanderson.com"], ["encrypted_password", "$2a$04$KYPifnX3oBGGqsBghh6Cfu1yw6f6AkaQgn/nDXEwgM.3vTheODclq"], ["confirmed_at", "2019-10-14 16:01:19.813056"], ["email", "dell.brown@leschanderson.com"], ["created_at", "2019-10-14 16:01:19.814329"], ["updated_at", "2019-10-14 16:01:19.814329"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"8m4O9L6eMdaSbKtqc5nVAg\":{\"token\":\"$2a$10$P1SEtvFzLYGa73Xtal8.0uvjILs0grUH8JRQavIm8n8cCWn7CYCpC\",\"expiry\":1572278479,\"updated_at\":\"2019-10-14 16:01:19 UTC\"}}"], ["updated_at", "2019-10-14 16:01:19.870161"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "dell.brown@leschanderson.com"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-14 16:01:19.919376"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1827) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marshall@gislason.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marshall@gislason.io"], ["encrypted_password", "$2a$04$I9HtyQuO4dGHt7GePnPu2uRS6pbdV3Y5sOtovPQemQ178y9A80YQW"], ["confirmed_at", "2019-10-14 16:01:19.926172"], ["name", "Beau Vine"], ["email", "marshall@gislason.io"], ["created_at", "2019-10-14 16:01:19.927290"], ["updated_at", "2019-10-14 16:01:19.927290"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"marshall@gislason.io\",\n redirectUrl: \"http://bernierhilll.io/rubin\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "marshall@gislason.io"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "034607c1ff8901f5f691f919cb08df84f170d428b9b27662b6ce44390121024d"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "034607c1ff8901f5f691f919cb08df84f170d428b9b27662b6ce44390121024d"], ["reset_password_sent_at", "2019-10-14 16:01:20.018107"], ["updated_at", "2019-10-14 16:01:20.018263"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.6ms | Allocations: 1308) Devise::Mailer#reset_password_instructions: processed outbound mail in 115.6ms Delivered mail 5da49bd021711_9123fcbb1c2ffd05934@Marios-MacBook-Pro.local.mail (4.1ms) Date: Mon, 14 Oct 2019 11:01:20 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: marshall@gislason.io Message-ID: <5da49bd021711_9123fcbb1c2ffd05934@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: marshall@gislason.io provider: email redirect-url: http://bernierhilll.io/rubin client-config: default

Hello marshall@gislason.io!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 209ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 67758) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fbernierhilll.io%2Frubin&variables%5Btoken%5D=4C5Re6tsTCyTrJzEJEFx" for 127.0.0.1 at 2019-10-14 11:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://bernierhilll.io/rubin", "token"=>"4C5Re6tsTCyTrJzEJEFx"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "034607c1ff8901f5f691f919cb08df84f170d428b9b27662b6ce44390121024d"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"7GZGWR_84zc2V7NKhxzy_g\":{\"token\":\"$2a$10$kRp43NweYQFmLGROOeeOSON2wnJp/Z3vsi3OSDotglwC9jvt/Xy36\",\"expiry\":1572278480}}"], ["allow_password_change", 1], ["updated_at", "2019-10-14 16:01:20.186599"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://bernierhilll.io/rubin?access-token=bVHwmeRipO4gvo1Y_KT91Q&client=7GZGWR_84zc2V7NKhxzy_g&client_id=7GZGWR_84zc2V7NKhxzy_g&config=&expiry=1572278480&reset_password=true&token=bVHwmeRipO4gvo1Y_KT91Q&uid=marshall%40gislason.io Completed 302 Found in 46ms (ActiveRecord: 0.2ms | Allocations: 2145) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://nolan.co/jon_kerluke\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"silva.johnston@bednar.com\"\n name: \"Jess Ankunding V\"\n password: \"YpO9j0DbZo\"\n passwordConfirmation: \"YpO9j0DbZo\"\n confirmSuccessUrl: \"http://haley.name/michael\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "silva.johnston@bednar.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "silva.johnston@bednar.com"], ["encrypted_password", "$2a$04$dQ3jGRGWefExJUaErNf7yOJntFGw/MMottf05rTrWBiC/EWTi9gmu"], ["confirmation_token", "Gbab1NttxFYxv3NE-uDP"], ["confirmation_sent_at", "2019-10-14 16:01:20.200801"], ["name", "Jess Ankunding V"], ["email", "silva.johnston@bednar.com"], ["created_at", "2019-10-14 16:01:20.200722"], ["updated_at", "2019-10-14 16:01:20.200722"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.8ms | Allocations: 581) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.1ms Delivered mail 5da49bd031e7b_9123fcbb1c2ffd059457@Marios-MacBook-Pro.local.mail (1.1ms) Date: Mon, 14 Oct 2019 11:01:20 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: silva.johnston@bednar.com Message-ID: <5da49bd031e7b_9123fcbb1c2ffd059457@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://haley.name/michael

Welcome silva.johnston@bednar.com!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5462)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fhaley.name%2Fmichael&variables%5Btoken%5D=Gbab1NttxFYxv3NE-uDP" for 127.0.0.1 at 2019-10-14 11:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://haley.name/michael", "token"=>"Gbab1NttxFYxv3NE-uDP"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "Gbab1NttxFYxv3NE-uDP"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-14 16:01:20.212073"], ["updated_at", "2019-10-14 16:01:20.212312"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://haley.name/michael?account_confirmation_success=true Completed 302 Found in 6ms (ActiveRecord: 0.4ms | Allocations: 2180) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Jewell Mertz III\"\n password: \"PdAvRgU8aB6a\"\n passwordConfirmation: \"PdAvRgU8aB6a\"\n confirmSuccessUrl: \"http://torpjones.biz/rene\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2713)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"anton@rohanmoen.biz\"\n password: \"B2bJeAmLaI6cIxH\"\n passwordConfirmation: \"B2bJeAmLaI6cIxH\"\n confirmSuccessUrl: \"http://vandervortdicki.biz/james\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 818)  (0.0ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"geoffrey_adams@wunsch.name\"\n password: \"Oi2QjSa4Xn3Zq7\"\n passwordConfirmation: \"Oi2QjSa4Xn3Zq7\"\n confirmSuccessUrl: \"http://kris.com/londa\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 818)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "daisy@olson.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "daisy@olson.org"], ["encrypted_password", "$2a$04$JEMB046DPaYYf1drhT31K.k.ko9aCUyaJ85XgA7pD1r6TTD7I5xh6"], ["allow_password_change", 1], ["confirmed_at", "2019-10-14 16:01:20.243479"], ["name", "Frank Enstein"], ["email", "daisy@olson.org"], ["created_at", "2019-10-14 16:01:20.245078"], ["updated_at", "2019-10-14 16:01:20.245078"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"MzuPyp82LcHzUUN8VEH-iw\":{\"token\":\"$2a$10$gvMVEXjwtoIkFGT.OvAfqehJ2F/0YPbASbmF1k6TjYN2ow/ubMG0e\",\"expiry\":1572278480,\"updated_at\":\"2019-10-14 16:01:20 UTC\"}}"], ["updated_at", "2019-10-14 16:01:20.302109"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "daisy@olson.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$1cwAvNrLac7Inof4/kZOOOflWjrN456tK1zwp0faA.T0B3Mnrj2Pe"], ["updated_at", "2019-10-14 16:01:20.360174"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-14 16:01:20.361684"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 1.0ms | Allocations: 3861) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "earnest@legros.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "earnest@legros.biz"], ["encrypted_password", "$2a$04$dkOwRZOKxn5nFDdCLPVgjOV/xif5iSvRpzr4j52g3NnNqFZVESp66"], ["allow_password_change", 1], ["confirmed_at", "2019-10-14 16:01:20.371302"], ["name", "Roman Holiday"], ["email", "earnest@legros.biz"], ["created_at", "2019-10-14 16:01:20.372534"], ["updated_at", "2019-10-14 16:01:20.372534"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"iopkBrKx02RFtevgs0fFTA\":{\"token\":\"$2a$10$cAsDaUuQdMkrD6SI4s9M/udY/yjdqbRTtKopLApVzov7nnasWgqjy\",\"expiry\":1572278480,\"updated_at\":\"2019-10-14 16:01:20 UTC\"}}"], ["updated_at", "2019-10-14 16:01:20.427516"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "earnest@legros.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$nEkZlF5BbnKx5rsJzSpHEuQZ5wZNtL9nwMSktbosQjDmKTeP1/BnG"], ["updated_at", "2019-10-14 16:01:20.483580"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-14 16:01:20.485377"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 3773) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "irwin.deckow@bins.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "irwin.deckow@bins.io"], ["encrypted_password", "$2a$04$98MBukNIuDxKW/Z0FfpQlO9eRp3oeFp6fyTVDjqSknKwwCEU2C7ni"], ["confirmed_at", "2019-10-14 16:01:20.513210"], ["name", "Mary Ott"], ["email", "irwin.deckow@bins.io"], ["created_at", "2019-10-14 16:01:20.514173"], ["updated_at", "2019-10-14 16:01:20.514173"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lFhBGLCD0gkB4f8i0ZSSDA\":{\"token\":\"$2a$10$N8FQP6LmFkQeTSQVKupl8.cIpTI1wlZYNXT26iRFWt12a3MByXz5y\",\"expiry\":1572278480,\"updated_at\":\"2019-10-14 16:01:20 UTC\"}}"], ["updated_at", "2019-10-14 16:01:20.569707"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "irwin.deckow@bins.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$5GjTFWJi1ypHADgNinxaV.fXNBKOyWC6ahKUcxjCgOR9EIiG1Vx3m"], ["updated_at", "2019-10-14 16:01:20.620685"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 3523) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lenard.grimes@gerlach.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lenard.grimes@gerlach.net"], ["encrypted_password", "$2a$04$kABcagf0T0pccoQ3aeLSieGEp3ebFAqOcP8HMTXk5.5m1fnwsoMJS"], ["allow_password_change", 1], ["confirmed_at", "2019-10-14 16:01:20.627859"], ["name", "Wayne Deer"], ["email", "lenard.grimes@gerlach.net"], ["created_at", "2019-10-14 16:01:20.628678"], ["updated_at", "2019-10-14 16:01:20.628678"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"T49wxfbL2TBHjkLnXLkoUw\":{\"token\":\"$2a$10$N/1GWuofxOgywsTy35c1WOmdp4CIAoltxVpn5C/fI6riHFQFU03ZG\",\"expiry\":1572278480,\"updated_at\":\"2019-10-14 16:01:20 UTC\"}}"], ["updated_at", "2019-10-14 16:01:20.680575"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lenard.grimes@gerlach.net"], ["LIMIT", 1]]  (0.2ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$mTRao/nufDl4uBsy.XebaebvmI4.jYYaQGcangOSr9KxXGcjmk2oq"], ["updated_at", "2019-10-14 16:01:20.731344"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-14 16:01:20.732478"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 52ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 3778) User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marc.grant@cronin.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "marc.grant@cronin.biz"], ["encrypted_password", "$2a$04$B2AgZjVXGaub3iAtNpm7LuckcdIuHMNOEcbypGUk3EU4PxXUewZNm"], ["allow_password_change", 1], ["confirmed_at", "2019-10-14 16:01:20.740121"], ["name", "Sal Sage"], ["email", "marc.grant@cronin.biz"], ["created_at", "2019-10-14 16:01:20.741019"], ["updated_at", "2019-10-14 16:01:20.741019"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jhENsMvRJRdlSfmiiWHA4w\":{\"token\":\"$2a$10$utq5zbH0q7NIflPBfo8abOZa3OKD7v.gsAVFnz3D7bcgU7gmz6riq\",\"expiry\":1572278480,\"updated_at\":\"2019-10-14 16:01:20 UTC\"}}"], ["updated_at", "2019-10-14 16:01:20.795548"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "marc.grant@cronin.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$0Bp4DBgwck75rmXuBu9D4.HS.Epm66aYCBAdOwN6l9utrIAt/9pUW"], ["updated_at", "2019-10-14 16:01:20.847125"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-14 16:01:20.848373"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 53ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 3773) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "giovanni_von@koeppmarvin.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "giovanni_von@koeppmarvin.info"], ["encrypted_password", "$2a$04$L9Xvnlt30eVzjTzbfD7A4OOnzLDHoEkdgq.SiE3RPkS62VJwbTizi"], ["confirmed_at", "2019-10-14 16:01:20.859788"], ["name", "Phil Graves"], ["email", "giovanni_von@koeppmarvin.info"], ["created_at", "2019-10-14 16:01:20.861969"], ["updated_at", "2019-10-14 16:01:20.861969"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"J9gDcBrDHL0CbQNgW3pgDg\":{\"token\":\"$2a$10$P.2H6rY0suFw3O/Fgxli9.bNE1OdKNPvbfvRBSHl2oM9O53KMseX6\",\"expiry\":1572278480,\"updated_at\":\"2019-10-14 16:01:20 UTC\"}}"], ["updated_at", "2019-10-14 16:01:20.915290"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "giovanni_von@koeppmarvin.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$x0mF/BJmD/9rLfts60Hheu4qsghlqL6fYXCzzQrs.Ok.t/YBV/Na2"], ["updated_at", "2019-10-14 16:01:20.967124"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 3528) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jarred_wisozk@blanda.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jarred_wisozk@blanda.com"], ["encrypted_password", "$2a$04$kumCr.5RyuYKhd6YfYY/weGY0Udv0ngJzCdbF.olw0rtTzerPu/xy"], ["confirmed_at", "2019-10-14 16:01:20.978646"], ["name", "Polly Dent"], ["email", "jarred_wisozk@blanda.com"], ["created_at", "2019-10-14 16:01:20.979466"], ["updated_at", "2019-10-14 16:01:20.979466"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "deon@gutkowski.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "deon@gutkowski.name"], ["encrypted_password", "$2a$04$fCJNskxBBf27js9cn4LeNOLK8gtQPzvCJonySQ1cRxiNPbha.i056"], ["confirmed_at", "2019-10-14 16:01:20.992013"], ["name", "Lowden Clear"], ["email", "deon@gutkowski.name"], ["created_at", "2019-10-14 16:01:20.993314"], ["updated_at", "2019-10-14 16:01:20.993314"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "adbf1e0cea2865fc8331c8ddf1982408f7b475ce737e101fb939e92f46709048"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "adbf1e0cea2865fc8331c8ddf1982408f7b475ce737e101fb939e92f46709048"], ["reset_password_sent_at", "2019-10-14 16:01:21.026567"], ["updated_at", "2019-10-14 16:01:21.026727"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22H_SVyWkLxzGjNynUQTBU%22%2C%0A++++++++++++redirectUrl%3A+%22%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 11:01:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"H_SVyWkLxzGjNynUQTBU\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "adbf1e0cea2865fc8331c8ddf1982408f7b475ce737e101fb939e92f46709048"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mN9V-u5DsW6-0WqPLf3jog\":{\"token\":\"$2a$10$/5EPFfQ.RwzpYYiagXeReOJNHS2DEinumnuc/in3xxPyEPxC3NChG\",\"expiry\":1572278481}}"], ["allow_password_change", 1], ["updated_at", "2019-10-14 16:01:21.085842"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"mN9V-u5DsW6-0WqPLf3jog\":{\"token\":\"$2a$10$/5EPFfQ.RwzpYYiagXeReOJNHS2DEinumnuc/in3xxPyEPxC3NChG\",\"expiry\":1572278481},\"4_HOXCoD2U52t2bIiCAotw\":{\"token\":\"$2a$10$QxNZm0WJWjaYLMqeE.unx.lGQciTlOk3ZO9dbJ3D1gTkNQAbKB8Km\",\"expiry\":1572278481,\"updated_at\":\"2019-10-14 16:01:21 UTC\"}}"], ["updated_at", "2019-10-14 16:01:21.133639"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 106ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2657)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "faye_hauck@schaden.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "faye_hauck@schaden.co"], ["encrypted_password", "$2a$04$GfQl8mpb30QaDMPAEBlZOer7o4P/wT36b5DtFxDLtAFdBRsi4B1AC"], ["confirmed_at", "2019-10-14 16:01:21.138291"], ["name", "Carrie Dababi"], ["email", "faye_hauck@schaden.co"], ["created_at", "2019-10-14 16:01:21.139058"], ["updated_at", "2019-10-14 16:01:21.139058"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3372e2f70b7c88a687d55b74f510509e23dcde8747350b2d296aac088a410f05"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "3372e2f70b7c88a687d55b74f510509e23dcde8747350b2d296aac088a410f05"], ["reset_password_sent_at", "2019-10-14 16:01:21.140497"], ["updated_at", "2019-10-14 16:01:21.140632"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22yKTBYjyBt4GshJxKUsa9%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 11:01:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"yKTBYjyBt4GshJxKUsa9\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3372e2f70b7c88a687d55b74f510509e23dcde8747350b2d296aac088a410f05"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9nMI9OVNrtuXto0ILfAlvg\":{\"token\":\"$2a$10$2rgTTsQtID27EYl85F.Z4ecgAsEbHmwLqrTQalMrXxY7/W/cLso/e\",\"expiry\":1572278481}}"], ["allow_password_change", 1], ["updated_at", "2019-10-14 16:01:21.196443"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=dytIGzZdsvmnD2_s5U0Ciw&client=9nMI9OVNrtuXto0ILfAlvg&client_id=9nMI9OVNrtuXto0ILfAlvg&config=&expiry=1572278481&reset_password=true&token=dytIGzZdsvmnD2_s5U0Ciw&uid=faye_hauck%40schaden.co Completed 302 Found in 54ms (ActiveRecord: 0.3ms | Allocations: 1916) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "davina_herman@friesencrooks.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "davina_herman@friesencrooks.info"], ["encrypted_password", "$2a$04$B8fPnzQC3iwBFsvoo/KXCOT5AsrotFZiXrPbEujd/Adm7hRVKNqEm"], ["confirmed_at", "2019-10-14 06:01:21"], ["name", "Luna Tick"], ["email", "davina_herman@friesencrooks.info"], ["created_at", "2019-10-14 06:01:21"], ["updated_at", "2019-10-14 06:01:21"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "8a67bd648eaacb9f5940534b88ae03004249a9b94c04e518310153b77f0df575"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "8a67bd648eaacb9f5940534b88ae03004249a9b94c04e518310153b77f0df575"], ["reset_password_sent_at", "2019-10-14 06:01:21"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22s3jJx47Y9tC7dxaZb1yJ%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 11:01:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"s3jJx47Y9tC7dxaZb1yJ\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "8a67bd648eaacb9f5940534b88ae03004249a9b94c04e518310153b77f0df575"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.2ms | Allocations: 1266)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "angelica.trantow@heidenreich.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "angelica.trantow@heidenreich.biz"], ["encrypted_password", "$2a$04$fOS0JmYv8BGpASdFnR92B.KKYkqksf2WhkpCk1Ir6cFOSFy2Rzdx2"], ["confirmed_at", "2019-10-14 16:01:21.215632"], ["name", "Jim Laucher"], ["email", "angelica.trantow@heidenreich.biz"], ["created_at", "2019-10-14 16:01:21.216882"], ["updated_at", "2019-10-14 16:01:21.216882"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "1b6b9852f1ff2f2bb88f58d84f53f1088cab838f8261bb2622b2d3d7c5da8ffb"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "1b6b9852f1ff2f2bb88f58d84f53f1088cab838f8261bb2622b2d3d7c5da8ffb"], ["reset_password_sent_at", "2019-10-14 16:01:21.219103"], ["updated_at", "2019-10-14 16:01:21.219293"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22AAJm8sVRrZyeYc8qXisiinvalid%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 11:01:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"AAJm8sVRrZyeYc8qXisiinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4c6d8b0b536439c12ca5d0a7b6e7b99edcf0cd3a692e67058d1fa364b9050ffe"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.3ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.0ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n guestCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bernard@boyer.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bernard@boyer.org"], ["encrypted_password", "$2a$04$dvi0aLc99N0v1xh1z2Z31eDyVcjCfNqztb8HTIluJQiyra7FR9aD2"], ["confirmation_token", "DzsWS7gbsp17GM-nGMxi"], ["confirmation_sent_at", "2019-10-14 16:01:21.240247"], ["name", "Homan Provement"], ["email", "bernard@boyer.org"], ["created_at", "2019-10-14 16:01:21.240150"], ["updated_at", "2019-10-14 16:01:21.240150"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.5ms | Allocations: 408) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.6ms Delivered mail 5da49bd13b961_9123fcbb1c2ffd059553@Marios-MacBook-Pro.local.mail (1.4ms) Date: Mon, 14 Oct 2019 11:01:21 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: bernard@boyer.org Message-ID: <5da49bd13b961_9123fcbb1c2ffd059553@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome bernard@boyer.org!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22DzsWS7gbsp17GM-nGMxi%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fframi.com%2Fgwenda%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 11:01:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"DzsWS7gbsp17GM-nGMxi\"\n redirectUrl: \"http://frami.com/gwenda\"\n ) {\n email\n name\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "DzsWS7gbsp17GM-nGMxi"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-14 16:01:21.250185"], ["updated_at", "2019-10-14 16:01:21.250460"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://frami.com/gwenda?account_confirmation_success=true Completed 302 Found in 5ms (ActiveRecord: 0.4ms | Allocations: 1790) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "barney@mosciski.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "barney@mosciski.co"], ["encrypted_password", "$2a$04$w6iRGILs37EhuAqPfCXZduVyptn30eEQ8iThyxxKI3XpEdJPOXkGu"], ["confirmation_token", "FRT-en16NfbzYUiKa-oT"], ["confirmation_sent_at", "2019-10-14 16:01:21.258553"], ["name", "Joe Kerr"], ["email", "barney@mosciski.co"], ["created_at", "2019-10-14 16:01:21.258451"], ["updated_at", "2019-10-14 16:01:21.258451"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22FRT-en16NfbzYUiKa-oT-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fhills.biz%2Frogelio%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 11:01:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"FRT-en16NfbzYUiKa-oT-invalid\"\n redirectUrl: \"http://hills.biz/rogelio\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "FRT-en16NfbzYUiKa-oT-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "556e7acc5cba09e133390ee0a539a87e6c96ca767e1ad88dd80bc1051190201d"], ["LIMIT", 1]] Completed 200 OK in 94ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2009) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "santiago_hodkiewicz@hagenes.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "santiago_hodkiewicz@hagenes.biz"], ["encrypted_password", "$2a$04$z4xT7FTBODSmq4cvsbd48OrXq31aC2D9o.BouKrKNTcjWU/nOMVKi"], ["confirmed_at", "2019-10-14 16:01:21.360243"], ["name", "Jean Poole"], ["email", "santiago_hodkiewicz@hagenes.biz"], ["created_at", "2019-10-14 16:01:21.361021"], ["updated_at", "2019-10-14 16:01:21.361021"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"ubz1SfGWlEH37wTbC4uo3Q\":{\"token\":\"$2a$10$YSL99MwrYZYMoP.0o9lzxuCV8UU0BwRlgfi6nFiTsRQlWAywpPI76\",\"expiry\":1572278481,\"updated_at\":\"2019-10-14 16:01:21 UTC\"}}"], ["updated_at", "2019-10-14 16:01:21.411813"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-14 11:01:21 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "santiago_hodkiewicz@hagenes.biz"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 10633)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hiram_schinner@steuber.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hiram_schinner@steuber.org"], ["encrypted_password", "$2a$04$jgSr6nouJiZNC30ega47BOXrqSQPva8j/6xh7FimEVl/6rKuQ1lwe"], ["confirmed_at", "2019-10-14 16:01:21.473734"], ["name", "Minnie Skurt"], ["email", "hiram_schinner@steuber.org"], ["created_at", "2019-10-14 16:01:21.474689"], ["updated_at", "2019-10-14 16:01:21.474689"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-14 11:01:21 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.3ms) rollback transaction  (1.5ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "claud.powlowski@ryan.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "claud.powlowski@ryan.org"], ["encrypted_password", "$2a$04$6QTHe275s.HbiVRc0M60eez11alobeYxpnICMy.mt3PZhEsVuvxQq"], ["confirmed_at", "2019-10-14 16:03:10.838253"], ["name", "Mike Raffone"], ["email", "claud.powlowski@ryan.org"], ["created_at", "2019-10-14 16:03:10.839507"], ["updated_at", "2019-10-14 16:03:10.839507"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"claud.powlowski@ryan.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "claud.powlowski@ryan.org"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"1A_bfXebubEKk8anNFvOxw\":{\"token\":\"$2a$10$ChOtZMxNPNZyeKEEPIlrWO/MTCJ/fZlQ0jD5ulA3jeqh7ghbmAPr.\",\"expiry\":1572278590,\"updated_at\":\"2019-10-14 16:03:10 UTC\"}}"], ["updated_at", "2019-10-14 16:03:10.933056"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-14 16:03:10.936067"], ["last_sign_in_at", "2019-10-14 16:03:10.936067"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-14 16:03:10.936268"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 81ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 18584) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ashli@robel.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ashli@robel.co"], ["encrypted_password", "$2a$04$wNgzgouf6Jq.auYK6YEz8.MfRUElX.ytx4ahYjhkppJPLYMmBUUpW"], ["confirmed_at", "2019-10-14 16:03:10.944286"], ["name", "Kitty Katz"], ["email", "ashli@robel.co"], ["created_at", "2019-10-14 16:03:10.945136"], ["updated_at", "2019-10-14 16:03:10.945136"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ashli@robel.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ashli@robel.co"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2042)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "loren@davisroob.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "loren@davisroob.co"], ["encrypted_password", "$2a$04$sGiluQASD.MXAJBZpkbOhuwmclCWxm5BCINrgwdzsAT9PMpxNxsqy"], ["confirmation_token", "uwU2UzuGGpmkx2SGxeyN"], ["confirmation_sent_at", "2019-10-14 16:03:10.956151"], ["name", "Jo King"], ["email", "loren@davisroob.co"], ["created_at", "2019-10-14 16:03:10.956056"], ["updated_at", "2019-10-14 16:03:10.956056"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"loren@davisroob.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "loren@davisroob.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1362)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "remona_terry@lindgren.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "remona_terry@lindgren.co"], ["encrypted_password", "$2a$04$Q4afQS6F1nfh0jZv3cmQq.aw6Orer3ddcawJlBOOgR3ggP7jkNoW2"], ["confirmed_at", "2019-10-14 16:03:10.964293"], ["locked_at", "2019-10-14 16:03:10.964325"], ["name", "Russell Ingleaves"], ["email", "remona_terry@lindgren.co"], ["created_at", "2019-10-14 16:03:10.965839"], ["updated_at", "2019-10-14 16:03:10.965839"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"remona_terry@lindgren.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "remona_terry@lindgren.co"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "patria@greenholtharvey.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "patria@greenholtharvey.com"], ["encrypted_password", "$2a$04$fmL.55oZOOvjKz7P5NA8gOlmI.JoHbecuMOW7iz31OCH5kw9MYWya"], ["confirmed_at", "2019-10-14 16:03:10.975039"], ["name", "Ella Vader"], ["email", "patria@greenholtharvey.com"], ["created_at", "2019-10-14 16:03:10.976186"], ["updated_at", "2019-10-14 16:03:10.976186"], ["auth_available", 0]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:10 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"patria@greenholtharvey.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "patria@greenholtharvey.com"], ["LIMIT", 1]] Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 1359)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 Admin Exists? (0.3ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "sharice_borer@stromanmohr.biz"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.8ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "sharice_borer@stromanmohr.biz"], ["encrypted_password", "$2a$04$kSVRCHDS5qGmolGGDzYkd.O1COReLFH1vK8rEmeusuV/SYOc/N81S"], ["confirmed_at", "2019-10-14 16:03:11.003233"], ["email", "sharice_borer@stromanmohr.biz"], ["created_at", "2019-10-14 16:03:11.006656"], ["updated_at", "2019-10-14 16:03:11.006656"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"sharice_borer@stromanmohr.biz\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "sharice_borer@stromanmohr.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"lKhWCwyLDAi0ZtkUMsUcfQ\":{\"token\":\"$2a$10$mSMVzacZUNPtsfOhr/cNhe7A7PyYuecHDPNCHOg5GF66eRZY/M9Vu\",\"expiry\":1572278591,\"updated_at\":\"2019-10-14 16:03:11 UTC\"}}"], ["updated_at", "2019-10-14 16:03:11.072301"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 63ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2404)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.2ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "raleigh@dibbert.io"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.4ms) INSERT INTO "guests" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "raleigh@dibbert.io"], ["encrypted_password", "$2a$04$EJKFcvEShaTfHDCiIMEzGOufKqfvCm3M3sIXDm4eq9BcRVV5RcUcO"], ["confirmed_at", "2019-10-14 16:03:11.087912"], ["email", "raleigh@dibbert.io"], ["created_at", "2019-10-14 16:03:11.089550"], ["updated_at", "2019-10-14 16:03:11.089550"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestLogin(\n email: \"raleigh@dibbert.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n }\n }\n"} Guest Load (0.1ms) SELECT "guests".* FROM "guests" WHERE "guests"."email" = ? LIMIT ? [["email", "raleigh@dibbert.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Guest Update (0.1ms) UPDATE "guests" SET "tokens" = ?, "updated_at" = ? WHERE "guests"."id" = ? [["tokens", "{\"4tnV7sbMZzA9OX-N_Zh3jg\":{\"token\":\"$2a$10$lwpcOewOsdZ58vodZW2Al.LiYiWFT6IrR9EMxnoHx7NcPG9vj5v2K\",\"expiry\":1572278591,\"updated_at\":\"2019-10-14 16:03:11 UTC\"}}"], ["updated_at", "2019-10-14 16:03:11.149457"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2320)  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lucien@feilboyle.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lucien@feilboyle.co"], ["encrypted_password", "$2a$04$RFua0Nmj6jxKdHctDj0tO.q9gLXceLeHcHjMg.BBEjqh7jWtbgTy."], ["confirmed_at", "2019-10-14 16:03:11.155579"], ["name", "Anita Knapp"], ["email", "lucien@feilboyle.co"], ["created_at", "2019-10-14 16:03:11.156577"], ["updated_at", "2019-10-14 16:03:11.156577"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"IQoVjlwdb2e9brTUT_ucZg\":{\"token\":\"$2a$10$ntl1.LOAm3dczeoGSU/JCuq6Pl87v8jCUuHgsXn6q8hqme0NCMe6i\",\"expiry\":1572278591,\"updated_at\":\"2019-10-14 16:03:11 UTC\"}}"], ["updated_at", "2019-10-14 16:03:11.210632"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lucien@feilboyle.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-14 16:03:11.263303"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1896) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dori@runolfonziemann.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "dori@runolfonziemann.name"], ["encrypted_password", "$2a$04$c5t/GWeSDtKPp0GOS9551uMiDX6JgHDuIYVXw3pIFuJiZciRRr69q"], ["confirmed_at", "2019-10-14 16:03:11.271541"], ["name", "Willie Waite"], ["email", "dori@runolfonziemann.name"], ["created_at", "2019-10-14 16:03:11.272452"], ["updated_at", "2019-10-14 16:03:11.272452"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "lelia@funkcollins.org"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.6ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "lelia@funkcollins.org"], ["encrypted_password", "$2a$04$UZVSWboNUfojGL9Fgmsnx.4GD6CXKZVgIbK0vF9mfRlpIsbpnO4DW"], ["confirmed_at", "2019-10-14 16:03:11.277189"], ["email", "lelia@funkcollins.org"], ["created_at", "2019-10-14 16:03:11.278599"], ["updated_at", "2019-10-14 16:03:11.278599"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"Ef-Pq9Yd-FvxX7GcIzz0uA\":{\"token\":\"$2a$10$MBWYqI8eX9iSUUiUPRpeL.S4.q/15yUMxyBhvbfTdJaMroonDAY5O\",\"expiry\":1572278591,\"updated_at\":\"2019-10-14 16:03:11 UTC\"}}"], ["updated_at", "2019-10-14 16:03:11.334680"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "lelia@funkcollins.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-14 16:03:11.382605"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 1825) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "van_buckridge@mann.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "van_buckridge@mann.org"], ["encrypted_password", "$2a$04$P/4zFbodP4K5d2OOQ0YkR.tPX6YEJ7KvrVBdv4akQ6NNz1B/Viokm"], ["confirmed_at", "2019-10-14 16:03:11.389462"], ["name", "P. Brain"], ["email", "van_buckridge@mann.org"], ["created_at", "2019-10-14 16:03:11.390527"], ["updated_at", "2019-10-14 16:03:11.390527"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"van_buckridge@mann.org\",\n redirectUrl: \"http://prosaccojacobs.net/letisha\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "van_buckridge@mann.org"], ["provider", "email"], ["LIMIT", 1]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4edb14ff9d07cdb5552c908833377da0dd2e16bcc423293eed14704a5b45a470"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "4edb14ff9d07cdb5552c908833377da0dd2e16bcc423293eed14704a5b45a470"], ["reset_password_sent_at", "2019-10-14 16:03:11.479594"], ["updated_at", "2019-10-14 16:03:11.479744"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.6ms | Allocations: 1308) Devise::Mailer#reset_password_instructions: processed outbound mail in 113.4ms Delivered mail 5da49c3f918fc_9883ff19743201030043@Marios-MacBook-Pro.local.mail (4.0ms) Date: Mon, 14 Oct 2019 11:03:11 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: van_buckridge@mann.org Message-ID: <5da49c3f918fc_9883ff19743201030043@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: van_buckridge@mann.org provider: email redirect-url: http://prosaccojacobs.net/letisha client-config: default

Hello van_buckridge@mann.org!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 206ms (Views: 0.1ms | ActiveRecord: 0.9ms | Allocations: 67759) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fprosaccojacobs.net%2Fletisha&variables%5Btoken%5D=67AvDMrCu6_z1vtzU2dy" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://prosaccojacobs.net/letisha", "token"=>"67AvDMrCu6_z1vtzU2dy"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4edb14ff9d07cdb5552c908833377da0dd2e16bcc423293eed14704a5b45a470"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"O-D8Qjk46GsdZ5NgUq0olw\":{\"token\":\"$2a$10$LTwmgs2B51RlgzX/vyh5X.vXA72kdUdgZjkKCTtanp6DzLqIWedQO\",\"expiry\":1572278591}}"], ["allow_password_change", 1], ["updated_at", "2019-10-14 16:03:11.646574"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://prosaccojacobs.net/letisha?access-token=JLX_3epXGGPnIk9fGutEDg&client=O-D8Qjk46GsdZ5NgUq0olw&client_id=O-D8Qjk46GsdZ5NgUq0olw&config=&expiry=1572278591&reset_password=true&token=JLX_3epXGGPnIk9fGutEDg&uid=van_buckridge%40mann.org Completed 302 Found in 47ms (ActiveRecord: 0.2ms | Allocations: 2145) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://robel.name/vikki_ernser\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"zulema@vonrueden.org\"\n name: \"Albert Dicki\"\n password: \"3FsMsGbLgGq\"\n passwordConfirmation: \"3FsMsGbLgGq\"\n confirmSuccessUrl: \"http://moenmayert.io/rodolfo.spinka\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "zulema@vonrueden.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "zulema@vonrueden.org"], ["encrypted_password", "$2a$04$bBJ7G1S8QcdZwPm9VdT94u/ije.DrD9YuTERurW/obz1fEOiO9iMO"], ["confirmation_token", "sEAsQyiN-aoV6rPBae1o"], ["confirmation_sent_at", "2019-10-14 16:03:11.661229"], ["name", "Albert Dicki"], ["email", "zulema@vonrueden.org"], ["created_at", "2019-10-14 16:03:11.661147"], ["updated_at", "2019-10-14 16:03:11.661147"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.7ms | Allocations: 581) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.9ms Delivered mail 5da49c3fa248e_9883ff19743201030164@Marios-MacBook-Pro.local.mail (1.1ms) Date: Mon, 14 Oct 2019 11:03:11 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: zulema@vonrueden.org Message-ID: <5da49c3fa248e_9883ff19743201030164@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://moenmayert.io/rodolfo.spinka

Welcome zulema@vonrueden.org!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5458)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fmoenmayert.io%2Frodolfo.spinka&variables%5Btoken%5D=sEAsQyiN-aoV6rPBae1o" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://moenmayert.io/rodolfo.spinka", "token"=>"sEAsQyiN-aoV6rPBae1o"}} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "sEAsQyiN-aoV6rPBae1o"], ["LIMIT", 1]]  (0.6ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-14 16:03:11.675505"], ["updated_at", "2019-10-14 16:03:11.675759"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://moenmayert.io/rodolfo.spinka?account_confirmation_success=true Completed 302 Found in 10ms (ActiveRecord: 1.1ms | Allocations: 2178) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Catalina Dare\"\n password: \"CmGvRaS0aMnWz4Pn\"\n passwordConfirmation: \"CmGvRaS0aMnWz4Pn\"\n confirmSuccessUrl: \"http://stokesmueller.io/ozella_grant\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 2713)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.0ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"lilliam_nicolas@moriette.name\"\n password: \"6Gq68SqVt6XkN4z\"\n passwordConfirmation: \"6Gq68SqVt6XkN4z\"\n confirmSuccessUrl: \"http://wilderman.com/amina.berge\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 818)  (0.1ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"alpha@aufderhar.net\"\n password: \"71XlXiRs8CeIqN7y\"\n passwordConfirmation: \"71XlXiRs8CeIqN7y\"\n confirmSuccessUrl: \"http://thompsonbrekke.com/floyd.runte\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 818)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "genesis@bergstromfriesen.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.6ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "genesis@bergstromfriesen.com"], ["encrypted_password", "$2a$04$2/lRMhRILpjNB0qAFDna2.ubprhIY50Drm0rB1./.U/ouUQjRKMHi"], ["allow_password_change", 1], ["confirmed_at", "2019-10-14 16:03:11.726058"], ["name", "Chris Coe"], ["email", "genesis@bergstromfriesen.com"], ["created_at", "2019-10-14 16:03:11.727839"], ["updated_at", "2019-10-14 16:03:11.727839"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"kHTxr15gLnelgIGivAfJPA\":{\"token\":\"$2a$10$CDQlyRm3RacXxLUpofhtIODzXyTurmFCi/NQ/79UQ4c2nQh9xquAG\",\"expiry\":1572278591,\"updated_at\":\"2019-10-14 16:03:11 UTC\"}}"], ["updated_at", "2019-10-14 16:03:11.789408"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "genesis@bergstromfriesen.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$3TAHyhU6/aokzr.w9z6G5u6nNlR96axDbq3TG/vDKHdMcct2izEN2"], ["updated_at", "2019-10-14 16:03:11.847804"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-14 16:03:11.849402"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2885) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "antony@blickboyle.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "antony@blickboyle.com"], ["encrypted_password", "$2a$04$g3jCfUqx.63KhKxlPHDC/OM.xQRK4ZmOs.EvMqKzvQs6BLjehKdjq"], ["allow_password_change", 1], ["confirmed_at", "2019-10-14 16:03:11.856677"], ["name", "Lynn Guini"], ["email", "antony@blickboyle.com"], ["created_at", "2019-10-14 16:03:11.858015"], ["updated_at", "2019-10-14 16:03:11.858015"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Sa9Nbjw5XDZpbg9s2pJcAA\":{\"token\":\"$2a$10$HZHjnMVKRs/QmVKgYsquwOjpwqg5gHKERonzgetAHv1PApi3w.6f6\",\"expiry\":1572278591,\"updated_at\":\"2019-10-14 16:03:11 UTC\"}}"], ["updated_at", "2019-10-14 16:03:11.910617"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "antony@blickboyle.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$ieainYIvBI/JIOMxufDhgejf19tehRhZN65FaVqmpKG.sEr3i2nfG"], ["updated_at", "2019-10-14 16:03:11.962173"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-14 16:03:11.963561"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "santos@kunzegrady.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "santos@kunzegrady.co"], ["encrypted_password", "$2a$04$bztP9qXdBRAqGJvYw12zRuao9TGzxjhY0h666AV8SQQ9wvvMb7x9u"], ["confirmed_at", "2019-10-14 16:03:11.970749"], ["name", "Lou Briccant"], ["email", "santos@kunzegrady.co"], ["created_at", "2019-10-14 16:03:11.971633"], ["updated_at", "2019-10-14 16:03:11.971633"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"cCXbqKuO9n_k_r3bwbXW6w\":{\"token\":\"$2a$10$OxSi7YM5.6INEwgmWBo7Mu2t19Rtyc2pvarKljqQYyJF3CQ8i12ue\",\"expiry\":1572278592,\"updated_at\":\"2019-10-14 16:03:11 UTC\"}}"], ["updated_at", "2019-10-14 16:03:12.022192"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "santos@kunzegrady.co"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 2358) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marylynn.nitzsche@kuhicbruen.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "marylynn.nitzsche@kuhicbruen.io"], ["encrypted_password", "$2a$04$ze6yR308ILUsCphC/fYFSuYpXz7FdzXg.j4YWyVrz.lcfXfFaSq5W"], ["allow_password_change", 1], ["confirmed_at", "2019-10-14 16:03:12.080208"], ["name", "Tom Katz"], ["email", "marylynn.nitzsche@kuhicbruen.io"], ["created_at", "2019-10-14 16:03:12.081049"], ["updated_at", "2019-10-14 16:03:12.081049"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"8PkPJLgumG4U9ztlnqNg3g\":{\"token\":\"$2a$10$wr3oB2fDAszZ1SQWImRvceAFycVML6VqzWLxDmGwfzrqXnnee1qAK\",\"expiry\":1572278592,\"updated_at\":\"2019-10-14 16:03:12 UTC\"}}"], ["updated_at", "2019-10-14 16:03:12.133492"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "marylynn.nitzsche@kuhicbruen.io"], ["LIMIT", 1]]  (0.5ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$oUULz00lqj6XVmXgvIdDpeiV7jxEpGI9/OjNnAVjZ1MyEWw0A8Ppe"], ["updated_at", "2019-10-14 16:03:12.184224"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-14 16:03:12.185931"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.9ms | Allocations: 2877) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "germaine_marquardt@lehner.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "germaine_marquardt@lehner.info"], ["encrypted_password", "$2a$04$IUMIkPN7UQcXjwmdujFFWOyP9gO15U8UlEW7Bn8napIt4dX6dsv6i"], ["allow_password_change", 1], ["confirmed_at", "2019-10-14 16:03:12.191758"], ["name", "Buck Ng"], ["email", "germaine_marquardt@lehner.info"], ["created_at", "2019-10-14 16:03:12.192610"], ["updated_at", "2019-10-14 16:03:12.192610"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"EL0bTy7IVbVaN4QTuynL7A\":{\"token\":\"$2a$10$6V1.iCksqzARROS.vA.PyePU67dWDRaChBNOJ.QVW3BCb/hHzDmCq\",\"expiry\":1572278592,\"updated_at\":\"2019-10-14 16:03:12 UTC\"}}"], ["updated_at", "2019-10-14 16:03:12.244744"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "germaine_marquardt@lehner.info"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Vf.YrptFBvYZInS2ERb9z.sD8O5oz8b1bb.n9IGZ4jZBRSwZnqkoW"], ["updated_at", "2019-10-14 16:03:12.295082"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-14 16:03:12.296324"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "catherina@hintzrau.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "catherina@hintzrau.name"], ["encrypted_password", "$2a$04$T3UPI7m9MZ9CvtgSkS9IIO8Bnhmuveh9tk0PR0xKFEgqAn8SeWKKe"], ["confirmed_at", "2019-10-14 16:03:12.305894"], ["name", "Pete Moss"], ["email", "catherina@hintzrau.name"], ["created_at", "2019-10-14 16:03:12.306912"], ["updated_at", "2019-10-14 16:03:12.306912"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DONf-CVYEQRHkXnGw8JdkQ\":{\"token\":\"$2a$10$qs/xAKP0ER5E2ElUWzh07.ruVWDBx/SKBvOTAz8CRkiXPdgnwuBx2\",\"expiry\":1572278592,\"updated_at\":\"2019-10-14 16:03:12 UTC\"}}"], ["updated_at", "2019-10-14 16:03:12.356565"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "catherina@hintzrau.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$M9ZsyL5XCRULxsnvSSw9QO.MkZMXheR6Bmtl8NRKykaMHHfJ.llCW"], ["updated_at", "2019-10-14 16:03:12.408138"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 2640) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cherise_macgyver@schuppestoltenberg.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cherise_macgyver@schuppestoltenberg.info"], ["encrypted_password", "$2a$04$dD1zefaNA6BW6IlzW1Rncu45luWdLaOdE3U9HdgrDlDzdgtGmRaLW"], ["confirmed_at", "2019-10-14 16:03:12.414987"], ["name", "Bill Ding"], ["email", "cherise_macgyver@schuppestoltenberg.info"], ["created_at", "2019-10-14 16:03:12.416010"], ["updated_at", "2019-10-14 16:03:12.416010"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.7ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shanon@kohlersimonis.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shanon@kohlersimonis.org"], ["encrypted_password", "$2a$04$vkW9v7rTzrsUCqJFOCYaY.euQarkCOfu6qr3MT8Qqo82jlN1x6nHy"], ["confirmed_at", "2019-10-14 16:03:12.430434"], ["name", "Anna Conda"], ["email", "shanon@kohlersimonis.org"], ["created_at", "2019-10-14 16:03:12.431797"], ["updated_at", "2019-10-14 16:03:12.431797"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "85bb6daf4ce3f518f93f075f63ff282c9d549c6c5bf405e9c1727e4b9cc4339c"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "85bb6daf4ce3f518f93f075f63ff282c9d549c6c5bf405e9c1727e4b9cc4339c"], ["reset_password_sent_at", "2019-10-14 16:03:12.433355"], ["updated_at", "2019-10-14 16:03:12.433477"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22QU4Wp6LwujKrd3zsX69u%22%2C%0A++++++++++++redirectUrl%3A+%22%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"QU4Wp6LwujKrd3zsX69u\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "85bb6daf4ce3f518f93f075f63ff282c9d549c6c5bf405e9c1727e4b9cc4339c"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BKpHeWtBH4tqp4qm1HiuMg\":{\"token\":\"$2a$10$ijQWqUgMxsPwS3z0EUq/4umBA9prM2ytc5zQiP3j.kUqTcRFZ9HyG\",\"expiry\":1572278592}}"], ["allow_password_change", 1], ["updated_at", "2019-10-14 16:03:12.522876"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"BKpHeWtBH4tqp4qm1HiuMg\":{\"token\":\"$2a$10$ijQWqUgMxsPwS3z0EUq/4umBA9prM2ytc5zQiP3j.kUqTcRFZ9HyG\",\"expiry\":1572278592},\"vh3iaUXu6H_q9FZ3VTgDIg\":{\"token\":\"$2a$10$5lfqvpeN3rsFJhG4XXA8/.1R7osInkGMSJcs3xqWi77U9SVS8UTG6\",\"expiry\":1572278592,\"updated_at\":\"2019-10-14 16:03:12 UTC\"}}"], ["updated_at", "2019-10-14 16:03:12.568313"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 105ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2660)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "shakira_kuvalis@raynormurazik.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "shakira_kuvalis@raynormurazik.com"], ["encrypted_password", "$2a$04$GzMJvjBd0X2bP4DaZjyXK.LTXM/DyioP57KI4UDEY4G5bUBsRBzMu"], ["confirmed_at", "2019-10-14 16:03:12.573394"], ["name", "Chrystal Glass"], ["email", "shakira_kuvalis@raynormurazik.com"], ["created_at", "2019-10-14 16:03:12.574341"], ["updated_at", "2019-10-14 16:03:12.574341"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c5d5167f6889adde94f9c984af6a5012cb5b5fc229a03a97c07f50f176003918"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "c5d5167f6889adde94f9c984af6a5012cb5b5fc229a03a97c07f50f176003918"], ["reset_password_sent_at", "2019-10-14 16:03:12.576008"], ["updated_at", "2019-10-14 16:03:12.576197"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%2226ji4NLf9K9yZEykqgyt%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"26ji4NLf9K9yZEykqgyt\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "c5d5167f6889adde94f9c984af6a5012cb5b5fc229a03a97c07f50f176003918"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"79B5jM2TAG3x_IJKhbGlyQ\":{\"token\":\"$2a$10$oWCw4vp7qOBujCoNjksXfebo3RK2TpSXvjkOZ/eDRonWwImp8EiuG\",\"expiry\":1572278592}}"], ["allow_password_change", 1], ["updated_at", "2019-10-14 16:03:12.630503"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=G8-0pRqM13xx-W7ZSgBMNQ&client=79B5jM2TAG3x_IJKhbGlyQ&client_id=79B5jM2TAG3x_IJKhbGlyQ&config=&expiry=1572278592&reset_password=true&token=G8-0pRqM13xx-W7ZSgBMNQ&uid=shakira_kuvalis%40raynormurazik.com Completed 302 Found in 53ms (ActiveRecord: 0.2ms | Allocations: 1918) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "roselle@nikolaus.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "roselle@nikolaus.biz"], ["encrypted_password", "$2a$04$0pM1oNYB8DDdAZCoPrfWGObd6fte3Sbse/A5mktOZ3aaRXLY43Hwm"], ["confirmed_at", "2019-10-14 06:03:12"], ["name", "Rusty Fossat"], ["email", "roselle@nikolaus.biz"], ["created_at", "2019-10-14 06:03:12"], ["updated_at", "2019-10-14 06:03:12"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5e28b2b557fafb89fe3e8dd7ab76ce4e3712b51ec93cb3255923778e2c1af2d2"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "5e28b2b557fafb89fe3e8dd7ab76ce4e3712b51ec93cb3255923778e2c1af2d2"], ["reset_password_sent_at", "2019-10-14 06:03:12"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22ZVQ7fc_Usa-X_XCMjmeb%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"ZVQ7fc_Usa-X_XCMjmeb\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "5e28b2b557fafb89fe3e8dd7ab76ce4e3712b51ec93cb3255923778e2c1af2d2"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1266)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "marilee.rosenbaum@keler.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "marilee.rosenbaum@keler.io"], ["encrypted_password", "$2a$04$gI08F8IsRB9AilZRJVZqPOk80T9.zhMfDJKJLxY41qj6qh6HwLDcm"], ["confirmed_at", "2019-10-14 16:03:12.648338"], ["name", "Rufus Leaking"], ["email", "marilee.rosenbaum@keler.io"], ["created_at", "2019-10-14 16:03:12.649377"], ["updated_at", "2019-10-14 16:03:12.649377"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "b21693ceab8843eee84938ad26a942e950ae192661b3818ebd2342cf5de40ec0"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "b21693ceab8843eee84938ad26a942e950ae192661b3818ebd2342cf5de40ec0"], ["reset_password_sent_at", "2019-10-14 16:03:12.650896"], ["updated_at", "2019-10-14 16:03:12.651013"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%229D3zbZtWV2m6hX-y5V_minvalid%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"9D3zbZtWV2m6hX-y5V_minvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "31886262052b36541fd77fab9e704d6bcef20e3e2e96cfc2b9f5a95e7e56e3ee"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.4ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.1ms) rollback transaction  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n guestCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "walter@stoltenberg.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "walter@stoltenberg.net"], ["encrypted_password", "$2a$04$tu1Wvxh/.kliJnPdTaDyTOdS2jgLP/KkcoWb7PAkndvrTHISGlwLi"], ["confirmation_token", "xNVxsYAqi7A1i1hTx2W_"], ["confirmation_sent_at", "2019-10-14 16:03:12.666982"], ["name", "May O'Nays"], ["email", "walter@stoltenberg.net"], ["created_at", "2019-10-14 16:03:12.666884"], ["updated_at", "2019-10-14 16:03:12.666884"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.6ms | Allocations: 408) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.8ms Delivered mail 5da49c40a3c74_9883ff1974320103027b@Marios-MacBook-Pro.local.mail (1.5ms) Date: Mon, 14 Oct 2019 11:03:12 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: walter@stoltenberg.net Message-ID: <5da49c40a3c74_9883ff1974320103027b@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome walter@stoltenberg.net!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22xNVxsYAqi7A1i1hTx2W_%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fmarquardt.com%2Fstaci.raynor%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"xNVxsYAqi7A1i1hTx2W_\"\n redirectUrl: \"http://marquardt.com/staci.raynor\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "xNVxsYAqi7A1i1hTx2W_"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-14 16:03:12.675571"], ["updated_at", "2019-10-14 16:03:12.675786"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://marquardt.com/staci.raynor?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms | Allocations: 1789) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arlean@hintz.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "arlean@hintz.net"], ["encrypted_password", "$2a$04$G5CbHCbie7/HToggk7MOqeqXEfVIoonJmFsXgrcnTyZwistQNGwce"], ["confirmation_token", "bhnWyhkxdyeWWQg6kj_U"], ["confirmation_sent_at", "2019-10-14 16:03:12.683364"], ["name", "Jim Laucher"], ["email", "arlean@hintz.net"], ["created_at", "2019-10-14 16:03:12.683253"], ["updated_at", "2019-10-14 16:03:12.683253"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22bhnWyhkxdyeWWQg6kj_U-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Frobel.biz%2Fcedric.schmitt%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"bhnWyhkxdyeWWQg6kj_U-invalid\"\n redirectUrl: \"http://robel.biz/cedric.schmitt\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "bhnWyhkxdyeWWQg6kj_U-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "8ce7f6c9d9e79882f09f63e11570bfc1622c7e914f78febb1baf2d5c847fb320"], ["LIMIT", 1]] Completed 200 OK in 94ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2009) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "herb@gleichnerjacobson.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "herb@gleichnerjacobson.net"], ["encrypted_password", "$2a$04$0Xpz8avoWbBV2ik6SxAacOkzwrHGESoaZuyDGA/tHQQZQLPL2BMuS"], ["confirmed_at", "2019-10-14 16:03:12.784300"], ["name", "Colleen Cardd"], ["email", "herb@gleichnerjacobson.net"], ["created_at", "2019-10-14 16:03:12.784987"], ["updated_at", "2019-10-14 16:03:12.784987"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KTCCs9Cw4Z6xwZkO3VsKvQ\":{\"token\":\"$2a$10$h3OjIKF./vjqELzWJgwgNOT6s1PdB4v7fAQLKt5X5uhuLJA6q1sOC\",\"expiry\":1572278592,\"updated_at\":\"2019-10-14 16:03:12 UTC\"}}"], ["updated_at", "2019-10-14 16:03:12.836825"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "herb@gleichnerjacobson.net"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 9751)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "clyde_wilkinson@vonrueden.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "clyde_wilkinson@vonrueden.io"], ["encrypted_password", "$2a$04$XTvIeD/7fly6ZoiETrxR1ehC.68vVh/eMHbss78AL5g3SFkpFLjhO"], ["confirmed_at", "2019-10-14 16:03:12.897572"], ["name", "Rocky Shore"], ["email", "clyde_wilkinson@vonrueden.io"], ["created_at", "2019-10-14 16:03:12.898417"], ["updated_at", "2019-10-14 16:03:12.898417"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-14 11:03:12 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.3ms) rollback transaction  (1.0ms) SELECT sqlite_version(*)  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "liz@ankundingdonnelly.io"], ["provider", "email"], ["LIMIT", 1]] User Create (2.1ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "liz@ankundingdonnelly.io"], ["encrypted_password", "$2a$04$Pm8SghxI6ZsvI17b2Hykz.J4KrxHjAB9RQZUhh2Qxd80vA6bDyIiC"], ["confirmed_at", "2019-10-18 02:24:19.277223"], ["name", "Ilene West"], ["email", "liz@ankundingdonnelly.io"], ["created_at", "2019-10-18 02:24:19.279029"], ["updated_at", "2019-10-18 02:24:19.279029"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"liz@ankundingdonnelly.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "liz@ankundingdonnelly.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"IW8lShn4gnm8A7o2Cm4vqA\":{\"token\":\"$2a$10$.qNg8GsCwjKmhvreEwRfqekP985.xAn5i.yb2cl.6AuanZyHy/SPm\",\"expiry\":1572575059,\"updated_at\":\"2019-10-18 02:24:19 UTC\"}}"], ["updated_at", "2019-10-18 02:24:19.371267"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-18 02:24:19.374280"], ["last_sign_in_at", "2019-10-18 02:24:19.374280"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-18 02:24:19.374482"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 69ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 19293) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jonathon.wilderman@rutherford.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jonathon.wilderman@rutherford.org"], ["encrypted_password", "$2a$04$TtBrLKMT7gHwaSs47S15geoxsmVrVX7QustiPxMwoUQSxGTvg4Pnm"], ["confirmed_at", "2019-10-18 02:24:19.386451"], ["name", "Sue Render"], ["email", "jonathon.wilderman@rutherford.org"], ["created_at", "2019-10-18 02:24:19.387372"], ["updated_at", "2019-10-18 02:24:19.387372"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jonathon.wilderman@rutherford.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jonathon.wilderman@rutherford.org"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 2044)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "oswaldo.trantow@oconnell.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "oswaldo.trantow@oconnell.name"], ["encrypted_password", "$2a$04$cS.dczHJIqMaVpkUpr2wYeXLk6PBPzopA0YPiIrsM1eEcUVxg23Ta"], ["confirmation_token", "r8kz2w3aMexAGfvhzRFt"], ["confirmation_sent_at", "2019-10-18 02:24:19.400065"], ["name", "Haywood Jashootmee"], ["email", "oswaldo.trantow@oconnell.name"], ["created_at", "2019-10-18 02:24:19.399951"], ["updated_at", "2019-10-18 02:24:19.399951"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"oswaldo.trantow@oconnell.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "oswaldo.trantow@oconnell.name"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1363)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "heide@bernhard.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "heide@bernhard.io"], ["encrypted_password", "$2a$04$rTapU8WKYZeLQboR2cLdAOLrXR0W8slK20PFHTdIGG8OuJhiBjK/W"], ["confirmed_at", "2019-10-18 02:24:19.408726"], ["locked_at", "2019-10-18 02:24:19.408750"], ["name", "Sam Pull"], ["email", "heide@bernhard.io"], ["created_at", "2019-10-18 02:24:19.410204"], ["updated_at", "2019-10-18 02:24:19.410204"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"heide@bernhard.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "heide@bernhard.io"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "weston@raynorabbott.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "weston@raynorabbott.net"], ["encrypted_password", "$2a$04$Wam.xDfar.MoCHK8ilzOnea9c.1u6dgR0Av/y8dHQgKjssgnGi8Rm"], ["confirmed_at", "2019-10-18 02:24:19.437142"], ["name", "Manuel Labor"], ["email", "weston@raynorabbott.net"], ["created_at", "2019-10-18 02:24:19.438533"], ["updated_at", "2019-10-18 02:24:19.438533"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"weston@raynorabbott.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "weston@raynorabbott.net"], ["LIMIT", 1]] Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1362)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.3ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "elayne@kirlinquitzon.co"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.9ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "elayne@kirlinquitzon.co"], ["encrypted_password", "$2a$04$aB5t6kMHrZhbfSldJZBAK.1kzuzvHEnRsPTRVRJGuDAzgQx67Gvyy"], ["confirmed_at", "2019-10-18 02:24:19.460724"], ["email", "elayne@kirlinquitzon.co"], ["created_at", "2019-10-18 02:24:19.462417"], ["updated_at", "2019-10-18 02:24:19.462417"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"elayne@kirlinquitzon.co\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "elayne@kirlinquitzon.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"Q8bpqC8Sfmf5I01-ARhylw\":{\"token\":\"$2a$10$PWysyJm/lJNDnsfPzLhZquQCB/YLmCZMpabUEp.8U9A6eoZKYAB6q\",\"expiry\":1572575059,\"updated_at\":\"2019-10-18 02:24:19 UTC\"}}"], ["updated_at", "2019-10-18 02:24:19.527580"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 63ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2402)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.3ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "barton_kunze@wildermanromaguera.net"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.8ms) INSERT INTO "guests" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "barton_kunze@wildermanromaguera.net"], ["encrypted_password", "$2a$04$an1n/KJm21QpUCWFcQ0FcOcUrvkRP80VXv6CjDjWWPyFIXjgr9pJO"], ["confirmed_at", "2019-10-18 02:24:19.543331"], ["email", "barton_kunze@wildermanromaguera.net"], ["created_at", "2019-10-18 02:24:19.545001"], ["updated_at", "2019-10-18 02:24:19.545001"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestLogin(\n email: \"barton_kunze@wildermanromaguera.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n }\n }\n"} Guest Load (0.1ms) SELECT "guests".* FROM "guests" WHERE "guests"."email" = ? LIMIT ? [["email", "barton_kunze@wildermanromaguera.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Guest Update (0.1ms) UPDATE "guests" SET "tokens" = ?, "updated_at" = ? WHERE "guests"."id" = ? [["tokens", "{\"nZZLSxNaZepdR-RNxlxqzA\":{\"token\":\"$2a$10$YqF6vQVOv.W8ANUjNogQy.agloj0nqVkt80dmQXHjJTIOvGJbK4Iu\",\"expiry\":1572575059,\"updated_at\":\"2019-10-18 02:24:19 UTC\"}}"], ["updated_at", "2019-10-18 02:24:19.600506"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2275)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lashunda@yundt.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "lashunda@yundt.io"], ["encrypted_password", "$2a$04$NvdakYgEacYJbXm7T3uUpOF1sk4.0sR9xSkv8siQ4dbGgRvw1KL8q"], ["confirmed_at", "2019-10-18 02:24:19.605734"], ["name", "Clara Sabell"], ["email", "lashunda@yundt.io"], ["created_at", "2019-10-18 02:24:19.606577"], ["updated_at", "2019-10-18 02:24:19.606577"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"t0GmbuZU1SjJm0TW9PZ9yQ\":{\"token\":\"$2a$10$Wt2V2.2gA/TIdvXcpat04OXIASONegPSp1NHVz.Q25I1YlYeuR0Cm\",\"expiry\":1572575059,\"updated_at\":\"2019-10-18 02:24:19 UTC\"}}"], ["updated_at", "2019-10-18 02:24:19.660124"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lashunda@yundt.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-18 02:24:19.711126"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1896) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "erick@morar.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "erick@morar.name"], ["encrypted_password", "$2a$04$jpbl3F0rfgEm7hMPWpXfCOXu0mTjsW4OZX9qVi9ertU5/VVan8hI."], ["confirmed_at", "2019-10-18 02:24:19.718812"], ["name", "Aretha Holly"], ["email", "erick@morar.name"], ["created_at", "2019-10-18 02:24:19.719855"], ["updated_at", "2019-10-18 02:24:19.719855"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "mia.jones@roberts.io"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "mia.jones@roberts.io"], ["encrypted_password", "$2a$04$OLtcj9kG1FuAw/IZrUygT.nnE9wwuAqp1cJOAYddDlJOGMcFvKsuq"], ["confirmed_at", "2019-10-18 02:24:19.725075"], ["email", "mia.jones@roberts.io"], ["created_at", "2019-10-18 02:24:19.726424"], ["updated_at", "2019-10-18 02:24:19.726424"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"pfstCwbbzWR430-VKAlPoA\":{\"token\":\"$2a$10$AAQsNTJ7W/rJJZuqTGEAoekFFaadh.Pr5OKAJvJ0wj0YYwkLRlpuC\",\"expiry\":1572575059,\"updated_at\":\"2019-10-18 02:24:19 UTC\"}}"], ["updated_at", "2019-10-18 02:24:19.783999"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "mia.jones@roberts.io"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-18 02:24:19.833093"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 1825) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rubin_zboncak@cummingsmurphy.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rubin_zboncak@cummingsmurphy.name"], ["encrypted_password", "$2a$04$A/aT0ImAvrAkOQ5GMS7gCOWSNpkWr4PPwUWpRktRMZMSCyKZFg4RS"], ["confirmed_at", "2019-10-18 02:24:19.840105"], ["name", "Justin Inch"], ["email", "rubin_zboncak@cummingsmurphy.name"], ["created_at", "2019-10-18 02:24:19.841264"], ["updated_at", "2019-10-18 02:24:19.841264"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"rubin_zboncak@cummingsmurphy.name\",\n redirectUrl: \"http://barton.com/leo_skiles\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "rubin_zboncak@cummingsmurphy.name"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3f51540f4b804be2cf70e5e87d953bbdc4948dc0e183062ce3e0db693039dfc8"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "3f51540f4b804be2cf70e5e87d953bbdc4948dc0e183062ce3e0db693039dfc8"], ["reset_password_sent_at", "2019-10-18 02:24:19.926172"], ["updated_at", "2019-10-18 02:24:19.926330"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 2.5ms | Allocations: 1308) Devise::Mailer#reset_password_instructions: processed outbound mail in 129.8ms Delivered mail 5da92254eb4c_10303fdb1ac2bfd4273fe@Marios-MacBook-Pro.local.mail (6.0ms) Date: Thu, 17 Oct 2019 21:24:20 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: rubin_zboncak@cummingsmurphy.name Message-ID: <5da92254eb4c_10303fdb1ac2bfd4273fe@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: rubin_zboncak@cummingsmurphy.name provider: email redirect-url: http://barton.com/leo_skiles client-config: default

Hello rubin_zboncak@cummingsmurphy.name!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 220ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 67769) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fbarton.com%2Fleo_skiles&variables%5Btoken%5D=21b7Zkr7c_zASA6UPkHk" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://barton.com/leo_skiles", "token"=>"21b7Zkr7c_zASA6UPkHk"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3f51540f4b804be2cf70e5e87d953bbdc4948dc0e183062ce3e0db693039dfc8"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"toxRhldPgBQKWQfZPi_Guw\":{\"token\":\"$2a$10$TNlpDlZbl/TFcEmokuyxyuGRQ/KgDAQjZyw2RACJnpJAPD.ZqYvay\",\"expiry\":1572575060}}"], ["allow_password_change", 1], ["updated_at", "2019-10-18 02:24:20.112932"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://barton.com/leo_skiles?access-token=9c_y25KxjYCsth9BlBAu_w&client=toxRhldPgBQKWQfZPi_Guw&client_id=toxRhldPgBQKWQfZPi_Guw&config=&expiry=1572575060&reset_password=true&token=9c_y25KxjYCsth9BlBAu_w&uid=rubin_zboncak%40cummingsmurphy.name Completed 302 Found in 49ms (ActiveRecord: 0.2ms | Allocations: 2147) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.8ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://rolfson.net/kasi\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"ivy@swaniawskiwhite.name\"\n name: \"Ulysses Rippin II\"\n password: \"UnI26vJhU\"\n passwordConfirmation: \"UnI26vJhU\"\n confirmSuccessUrl: \"http://powlowski.name/carol_stracke\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ivy@swaniawskiwhite.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ivy@swaniawskiwhite.name"], ["encrypted_password", "$2a$04$wrzTp2PrkGKj1cK6cRsiOuFysdPuDHs2/9tdHeAHpCosb08jt48fS"], ["confirmation_token", "PYahi3Jg55TM1EzEu2HT"], ["confirmation_sent_at", "2019-10-18 02:24:20.128059"], ["name", "Ulysses Rippin II"], ["email", "ivy@swaniawskiwhite.name"], ["created_at", "2019-10-18 02:24:20.127959"], ["updated_at", "2019-10-18 02:24:20.127959"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.9ms | Allocations: 581) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms Delivered mail 5da92254203b5_10303fdb1ac2bfd4274a2@Marios-MacBook-Pro.local.mail (1.4ms) Date: Thu, 17 Oct 2019 21:24:20 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: ivy@swaniawskiwhite.name Message-ID: <5da92254203b5_10303fdb1ac2bfd4274a2@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url: http://powlowski.name/carol_stracke

Welcome ivy@swaniawskiwhite.name!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5460)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fpowlowski.name%2Fcarol_stracke&variables%5Btoken%5D=PYahi3Jg55TM1EzEu2HT" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://powlowski.name/carol_stracke", "token"=>"PYahi3Jg55TM1EzEu2HT"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "PYahi3Jg55TM1EzEu2HT"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-18 02:24:20.142319"], ["updated_at", "2019-10-18 02:24:20.142590"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://powlowski.name/carol_stracke?account_confirmation_success=true Completed 302 Found in 7ms (ActiveRecord: 0.5ms | Allocations: 2180) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Mr. Claretta Schaefer\"\n password: \"HzSbIgAnCdH20eY\"\n passwordConfirmation: \"HzSbIgAnCdH20eY\"\n confirmSuccessUrl: \"http://barton.biz/oleta\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 2712)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.1ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"lasandra@gutmann.io\"\n password: \"O8dBbGa5StDq\"\n passwordConfirmation: \"O8dBbGa5StDq\"\n confirmSuccessUrl: \"http://hanemcclure.biz/alfonzo_luettgen\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 818)  (0.1ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"dion_hammes@kingcole.co\"\n password: \"Pr9OgQgVhQj3M1iV\"\n passwordConfirmation: \"Pr9OgQgVhQj3M1iV\"\n confirmSuccessUrl: \"http://whitecrona.name/melinda.watsica\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.2ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "dion_hammes@kingcole.co"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.4ms) INSERT INTO "guests" ("uid", "encrypted_password", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["uid", "dion_hammes@kingcole.co"], ["encrypted_password", "$2a$04$D0Iro1QlI1xpsbK78CO0wOEpNhYXCb6lK9uNsv56/T6gb20NAA122"], ["email", "dion_hammes@kingcole.co"], ["created_at", "2019-10-18 02:24:20.180587"], ["updated_at", "2019-10-18 02:24:20.180587"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 500 Internal Server Error in 38ms (ActiveRecord: 0.7ms | Allocations: 4813)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "antonietta@leannon.name"], ["provider", "email"], ["LIMIT", 1]] User Create (1.1ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "antonietta@leannon.name"], ["encrypted_password", "$2a$04$ThTnu4kpyJ/vcGve2hThfuFwWTYoVYjC2K5Ng/gWLyHO4o50Wd6cW"], ["allow_password_change", 1], ["confirmed_at", "2019-10-18 02:24:20.217618"], ["name", "Andy Friese"], ["email", "antonietta@leannon.name"], ["created_at", "2019-10-18 02:24:20.219630"], ["updated_at", "2019-10-18 02:24:20.219630"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"IDTGqzQ9d-taaHhJtMbBbQ\":{\"token\":\"$2a$10$2JnayKV.zmyqmemmBeAxc.mpT4NZEwMOdG4we6MrrTUAaF8mkeY0S\",\"expiry\":1572575060,\"updated_at\":\"2019-10-18 02:24:20 UTC\"}}"], ["updated_at", "2019-10-18 02:24:20.280780"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "antonietta@leannon.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.3ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$NEz0DszK2S9hu6t2RmbgqOoG5SAeROlLKTGapaj.DhWxplsKJ0qRO"], ["updated_at", "2019-10-18 02:24:20.337322"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-18 02:24:20.338671"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 1.1ms | Allocations: 2882) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "amy@jenkins.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "amy@jenkins.io"], ["encrypted_password", "$2a$04$sLoofsA55rOTbHNOHtGxCeblJ10H6k7i2ViaTShh5c/CsJhKQABZu"], ["allow_password_change", 1], ["confirmed_at", "2019-10-18 02:24:20.345469"], ["name", "Carlotta Tendant"], ["email", "amy@jenkins.io"], ["created_at", "2019-10-18 02:24:20.346650"], ["updated_at", "2019-10-18 02:24:20.346650"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"HjUwZWOHgw1FDIjfjaS-WQ\":{\"token\":\"$2a$10$fXCl.PcnylFf1gy64Ko1sukN5yi3.9/MWV3tQcZVeVSQSuNJ/meaG\",\"expiry\":1572575060,\"updated_at\":\"2019-10-18 02:24:20 UTC\"}}"], ["updated_at", "2019-10-18 02:24:20.399453"], ["id", 1]]  (0.3ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "amy@jenkins.io"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$.bfvLN1dHRHjoICN9P36EeUmOJj2LKVBI4IkPZKks9yl5AVNVWhfK"], ["updated_at", "2019-10-18 02:24:20.454412"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-18 02:24:20.455786"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.3ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ozie@wisokyabernathy.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ozie@wisokyabernathy.com"], ["encrypted_password", "$2a$04$ibiqVdjM8V3khhjC9.Ni1eS.6Tqx87YFO0aQtVLiqLQAP/wWPEYda"], ["confirmed_at", "2019-10-18 02:24:20.463523"], ["name", "Candy Barr"], ["email", "ozie@wisokyabernathy.com"], ["created_at", "2019-10-18 02:24:20.464788"], ["updated_at", "2019-10-18 02:24:20.464788"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lV4v6vK64NYNyTsXlxlw2A\":{\"token\":\"$2a$10$WCYWV3.BopPeoKTvsTFhOODuxe7UynlIGAsdu5MZ5w0.7criKvybe\",\"expiry\":1572575060,\"updated_at\":\"2019-10-18 02:24:20 UTC\"}}"], ["updated_at", "2019-10-18 02:24:20.517403"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ozie@wisokyabernathy.com"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2360) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.8ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jodi@waelchi.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jodi@waelchi.net"], ["encrypted_password", "$2a$04$h.9/273oDYl03pbz5V2Y5.rpGk7.wc1In4IAknKOpyLAvp2RoM3eu"], ["allow_password_change", 1], ["confirmed_at", "2019-10-18 02:24:20.578467"], ["name", "Bill Lowney"], ["email", "jodi@waelchi.net"], ["created_at", "2019-10-18 02:24:20.579580"], ["updated_at", "2019-10-18 02:24:20.579580"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"GgYBfZCjNATajzkSiCOOZQ\":{\"token\":\"$2a$10$/qZLihD3XTeY0wQaTy9ncOi6QKZhUTuxNZKgi0DEKc2kxeakivwly\",\"expiry\":1572575060,\"updated_at\":\"2019-10-18 02:24:20 UTC\"}}"], ["updated_at", "2019-10-18 02:24:20.632595"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jodi@waelchi.net"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$LTpXC76DEcffLvQ9NUiBMun93X5l2yMyEQMQIkMbfIUKE/TwsmCp2"], ["updated_at", "2019-10-18 02:24:20.683096"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-18 02:24:20.684120"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jayna_wolf@lemke.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jayna_wolf@lemke.co"], ["encrypted_password", "$2a$04$rHfPbVoGE.t1LLUCzxIbi.a/r916mNQGhxJIromlk8.1Y3l6lb7YW"], ["allow_password_change", 1], ["confirmed_at", "2019-10-18 02:24:20.689685"], ["name", "Mary Thonn"], ["email", "jayna_wolf@lemke.co"], ["created_at", "2019-10-18 02:24:20.690587"], ["updated_at", "2019-10-18 02:24:20.690587"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"_RJj5irv7nXqtw4NtVPeOA\":{\"token\":\"$2a$10$YgErMB7sOllTCfJPgozb/O.kwYhyZ9/gdf0VcuxNtQIp/1ulAX252\",\"expiry\":1572575060,\"updated_at\":\"2019-10-18 02:24:20 UTC\"}}"], ["updated_at", "2019-10-18 02:24:20.741790"], ["id", 1]]  (0.2ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jayna_wolf@lemke.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$Wb5xNEtQRO67BaeMN5U5ceGrjFdd0NsJ8SWcEjkCb.aEMsHDNSnS."], ["updated_at", "2019-10-18 02:24:20.791857"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-18 02:24:20.793057"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ro@runolfsdottirbeer.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ro@runolfsdottirbeer.net"], ["encrypted_password", "$2a$04$HtJ8DbOmTIrgDe3H.uumxegkuYZSdIU4vP6iKHAn4ypx04ECQLt8u"], ["confirmed_at", "2019-10-18 02:24:20.800390"], ["name", "Mike Stand"], ["email", "ro@runolfsdottirbeer.net"], ["created_at", "2019-10-18 02:24:20.801990"], ["updated_at", "2019-10-18 02:24:20.801990"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"hfOMCbrdnptWHRm7uGmj1w\":{\"token\":\"$2a$10$j18LuepLEHCWCFPtUC0W6.JLjlEWHn.gVs3YTV44geAIP2s/Hh0r6\",\"expiry\":1572575060,\"updated_at\":\"2019-10-18 02:24:20 UTC\"}}"], ["updated_at", "2019-10-18 02:24:20.852023"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ro@runolfsdottirbeer.net"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$thmWCvG0Z30JW0hVAtlTL..0gJ3IcuZ/g8RT5Rt31d3/qGoa2QtPW"], ["updated_at", "2019-10-18 02:24:20.903253"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2643) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "donald@mooretillman.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "donald@mooretillman.io"], ["encrypted_password", "$2a$04$SyCTo41pFJbMrqmTTKtly.3/AaiBqnJc/DSmCwwcvglMS3a7zYV06"], ["confirmed_at", "2019-10-18 02:24:20.910573"], ["name", "Polly Ester"], ["email", "donald@mooretillman.io"], ["created_at", "2019-10-18 02:24:20.911453"], ["updated_at", "2019-10-18 02:24:20.911453"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "juan_keebler@gulgowskimiller.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "juan_keebler@gulgowskimiller.co"], ["encrypted_password", "$2a$04$vn77iL6p2GgFMya0f1T2neMA1OCpEQFEg/AwQcPWcjhvzLxHuMeAe"], ["confirmed_at", "2019-10-18 02:24:20.920512"], ["name", "Eileen Dover"], ["email", "juan_keebler@gulgowskimiller.co"], ["created_at", "2019-10-18 02:24:20.921738"], ["updated_at", "2019-10-18 02:24:20.921738"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "6639d41d57a4a56171fb32fc96b1f08bd15f4cdab8bdaf598b000bf76c4d67d1"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "6639d41d57a4a56171fb32fc96b1f08bd15f4cdab8bdaf598b000bf76c4d67d1"], ["reset_password_sent_at", "2019-10-18 02:24:20.923978"], ["updated_at", "2019-10-18 02:24:20.924285"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22rfdJe9SHyAV-PeJRqgEe%22%2C%0A++++++++++++redirectUrl%3A+%22%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-17 21:24:20 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"rfdJe9SHyAV-PeJRqgEe\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "6639d41d57a4a56171fb32fc96b1f08bd15f4cdab8bdaf598b000bf76c4d67d1"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jvmNTkg4d_1QoS6ekxLY1Q\":{\"token\":\"$2a$10$mDlCm1gmVaVSrQXQ02wzJ.BW2BIlGOTTPlRtrvwYTSN.zbLnTRTk2\",\"expiry\":1572575060}}"], ["allow_password_change", 1], ["updated_at", "2019-10-18 02:24:20.983928"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"jvmNTkg4d_1QoS6ekxLY1Q\":{\"token\":\"$2a$10$mDlCm1gmVaVSrQXQ02wzJ.BW2BIlGOTTPlRtrvwYTSN.zbLnTRTk2\",\"expiry\":1572575060},\"ZV6u2g4yXKcz_RLgpfvgyg\":{\"token\":\"$2a$10$0Sfn91pgQ/hgWLnC0dZ.s.sGt8FBNsH36q/2OM9rpKj24OQRJOK/C\",\"expiry\":1572575061,\"updated_at\":\"2019-10-18 02:24:20 UTC\"}}"], ["updated_at", "2019-10-18 02:24:21.030941"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 105ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 2656)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hunter@greenfelder.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hunter@greenfelder.net"], ["encrypted_password", "$2a$04$OHnZ3Ae6C8..SU9AIN98O.9TXyn2rZGfiqfDXu29DhBYGwJg1X.BC"], ["confirmed_at", "2019-10-18 02:24:21.035610"], ["name", "Tom Morrow"], ["email", "hunter@greenfelder.net"], ["created_at", "2019-10-18 02:24:21.036455"], ["updated_at", "2019-10-18 02:24:21.036455"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "8c18b391adbb1cbb36c59b07dffdbeb9a8c5a3c86038a42cd829b3b9711b883b"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "8c18b391adbb1cbb36c59b07dffdbeb9a8c5a3c86038a42cd829b3b9711b883b"], ["reset_password_sent_at", "2019-10-18 02:24:21.038134"], ["updated_at", "2019-10-18 02:24:21.038341"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22VkMRTUS1QGZkrrpid4yS%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-17 21:24:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"VkMRTUS1QGZkrrpid4yS\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "8c18b391adbb1cbb36c59b07dffdbeb9a8c5a3c86038a42cd829b3b9711b883b"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nteLmX1aom7KLnqds5BNMQ\":{\"token\":\"$2a$10$qeNP8U0s1f.Vae9jkmEzkez5P5CeLzv/P4474XRyi1IYtYEMueC7O\",\"expiry\":1572575061}}"], ["allow_password_change", 1], ["updated_at", "2019-10-18 02:24:21.093681"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=l02Mzb0_DzAnKKDY6lcBVw&client=nteLmX1aom7KLnqds5BNMQ&client_id=nteLmX1aom7KLnqds5BNMQ&config=&expiry=1572575061&reset_password=true&token=l02Mzb0_DzAnKKDY6lcBVw&uid=hunter%40greenfelder.net Completed 302 Found in 54ms (ActiveRecord: 0.2ms | Allocations: 1916) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ronny.hirthe@kulas.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "ronny.hirthe@kulas.name"], ["encrypted_password", "$2a$04$6/U1LhbEzpSovWKr4lOxL.Kfnu8M51ntgYkpqBozL1Pt0l/DYpAou"], ["confirmed_at", "2019-10-17 16:24:21"], ["name", "Jasmine Rice"], ["email", "ronny.hirthe@kulas.name"], ["created_at", "2019-10-17 16:24:21"], ["updated_at", "2019-10-17 16:24:21"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4384a81072bfb59a4cb9d0af9e4c2e0cc6d5a1031d41b0807abb62d337750ef0"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "4384a81072bfb59a4cb9d0af9e4c2e0cc6d5a1031d41b0807abb62d337750ef0"], ["reset_password_sent_at", "2019-10-17 16:24:21"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22nhW2dhC29Zg-AbcVz9rK%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-17 21:24:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"nhW2dhC29Zg-AbcVz9rK\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "4384a81072bfb59a4cb9d0af9e4c2e0cc6d5a1031d41b0807abb62d337750ef0"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1266)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "cedrick.yost@krajcik.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "cedrick.yost@krajcik.org"], ["encrypted_password", "$2a$04$j4CTb7ptLnHlUtnKGhyiXe.GI52Pwxa5vMLE9GYQz54pQq3AMm7IK"], ["confirmed_at", "2019-10-18 02:24:21.116167"], ["name", "Isadore Bell"], ["email", "cedrick.yost@krajcik.org"], ["created_at", "2019-10-18 02:24:21.150207"], ["updated_at", "2019-10-18 02:24:21.150207"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "f8a3af29f85317897230c4f94ff5970122a92cc91944cbf61e1b9e7f7f96b216"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "f8a3af29f85317897230c4f94ff5970122a92cc91944cbf61e1b9e7f7f96b216"], ["reset_password_sent_at", "2019-10-18 02:24:21.152193"], ["updated_at", "2019-10-18 02:24:21.152341"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22qhrwDv53VGmmp5RyVtQeinvalid%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-17 21:24:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"qhrwDv53VGmmp5RyVtQeinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "3deb3c75025e48fb25c4f3ca8982393d6b225f404afdd4a3d346f91208cdc584"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1227)  (0.3ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.1ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n guestCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "arlie@cummings.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "arlie@cummings.info"], ["encrypted_password", "$2a$04$0Q31DWjtBan3sS3rf3ad3.U9xcN1TaemUBrSRV4OqWCqYzZCwlG9m"], ["confirmation_token", "dqy4ms5hs2ARABKxubco"], ["confirmation_sent_at", "2019-10-18 02:24:21.171124"], ["name", "Curt Zee"], ["email", "arlie@cummings.info"], ["created_at", "2019-10-18 02:24:21.171008"], ["updated_at", "2019-10-18 02:24:21.171008"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.6ms | Allocations: 408) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.9ms Delivered mail 5da922552ae4a_10303fdb1ac2bfd4275a0@Marios-MacBook-Pro.local.mail (1.7ms) Date: Thu, 17 Oct 2019 21:24:21 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: arlie@cummings.info Message-ID: <5da922552ae4a_10303fdb1ac2bfd4275a0@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome arlie@cummings.info!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22dqy4ms5hs2ARABKxubco%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fdoyle.com%2Fkati%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-17 21:24:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"dqy4ms5hs2ARABKxubco\"\n redirectUrl: \"http://doyle.com/kati\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "dqy4ms5hs2ARABKxubco"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-18 02:24:21.180895"], ["updated_at", "2019-10-18 02:24:21.181125"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://doyle.com/kati?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms | Allocations: 1790) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.4ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "bettina.gutkowski@connelly.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "bettina.gutkowski@connelly.org"], ["encrypted_password", "$2a$04$fCASeXQGI.073Guh6nm.nuz4Qjuivc9VLH5BVL82wyiqC0MfwITjC"], ["confirmation_token", "ihBsC3_ATJ_c2A5UQwSy"], ["confirmation_sent_at", "2019-10-18 02:24:21.190257"], ["name", "Macon Paine"], ["email", "bettina.gutkowski@connelly.org"], ["created_at", "2019-10-18 02:24:21.190144"], ["updated_at", "2019-10-18 02:24:21.190144"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22ihBsC3_ATJ_c2A5UQwSy-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fschmidtschmidt.biz%2Fjohanne%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-17 21:24:21 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"ihBsC3_ATJ_c2A5UQwSy-invalid\"\n redirectUrl: \"http://schmidtschmidt.biz/johanne\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "ihBsC3_ATJ_c2A5UQwSy-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "caee3b404aafedb3a7b856059636eec84741e9f8e813e99bcca0cb935507908b"], ["LIMIT", 1]] Completed 200 OK in 97ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2009) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "myrtle@mills.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "myrtle@mills.info"], ["encrypted_password", "$2a$04$rX.GO4nBRhahj0DlUsKri.cqKFz94JpwQYim1m2EfmgptxbKvUvFW"], ["confirmed_at", "2019-10-18 02:24:21.293964"], ["name", "Sonny Day"], ["email", "myrtle@mills.info"], ["created_at", "2019-10-18 02:24:21.294757"], ["updated_at", "2019-10-18 02:24:21.294757"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"DTrJ-nsluL5sYLR2uZTe6g\":{\"token\":\"$2a$10$AcfO0GI9SoYcEqLXtYuhO.yw5wdF8AUxbEKpSyVb19.Kq.fjarFrq\",\"expiry\":1572575061,\"updated_at\":\"2019-10-18 02:24:21 UTC\"}}"], ["updated_at", "2019-10-18 02:24:21.344780"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-17 21:24:21 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "myrtle@mills.info"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 9749)  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alden.sauer@sporer.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alden.sauer@sporer.net"], ["encrypted_password", "$2a$04$jobMrOXnkOcB.o6NoUB1IuFGqH7Hf/VZw4cNuDAGV7q9RiTcGwV4u"], ["confirmed_at", "2019-10-18 02:24:21.409123"], ["name", "Hal Jalikakick"], ["email", "alden.sauer@sporer.net"], ["created_at", "2019-10-18 02:24:21.409880"], ["updated_at", "2019-10-18 02:24:21.409880"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-17 21:24:21 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.3ms) rollback transaction  (1.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:26:18 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"emilee_friesen@walsh.org\"\n password: \"FvWxTi8Q3mDgS0mX\"\n passwordConfirmation: \"FvWxTi8Q3mDgS0mX\"\n confirmSuccessUrl: \"http://pfannerstillmcdermott.co/jerold\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "emilee_friesen@walsh.org"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.3ms) INSERT INTO "guests" ("uid", "encrypted_password", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["uid", "emilee_friesen@walsh.org"], ["encrypted_password", "$2a$04$hPqkchbXQQzJtOLZNS8w7eiP1DWTeMwH6sSOgg/nCqX28N4389HO."], ["email", "emilee_friesen@walsh.org"], ["created_at", "2019-10-18 02:26:18.572615"], ["updated_at", "2019-10-18 02:26:18.572615"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 500 Internal Server Error in 53ms (ActiveRecord: 0.8ms | Allocations: 31098)  (0.3ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:52:25 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"laurena_hayes@ondricka.com\"\n password: \"0WoCeYb9JgH4\"\n passwordConfirmation: \"0WoCeYb9JgH4\"\n confirmSuccessUrl: \"http://toy.name/jeanette_botsford\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "laurena_hayes@ondricka.com"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.3ms) INSERT INTO "guests" ("uid", "encrypted_password", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["uid", "laurena_hayes@ondricka.com"], ["encrypted_password", "$2a$04$2f1BK4eBSyPC7PqMr4MKBOq8xBVang6Qa0J6fAEgQM8TYcJq5m746"], ["email", "laurena_hayes@ondricka.com"], ["created_at", "2019-10-18 02:52:25.849591"], ["updated_at", "2019-10-18 02:52:25.849591"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Guest Update (0.1ms) UPDATE "guests" SET "tokens" = ?, "updated_at" = ? WHERE "guests"."id" = ? [["tokens", "{\"Ie715fWH3DCpTJHk72BT-Q\":{\"token\":\"$2a$10$nSMpQ.xbvWwTz4TqSU4IzOfXIwOpJH2fLeB6sYC4ddsUHiQD0rVoy\",\"expiry\":1572576745,\"updated_at\":\"2019-10-18 02:52:25 UTC\"}}"], ["updated_at", "2019-10-18 02:52:25.897404"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 67ms (Views: 0.2ms | ActiveRecord: 1.0ms | Allocations: 29079)  (0.0ms) SELECT COUNT(*) FROM "users"  (0.3ms) rollback transaction  (1.5ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:53:07 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"rosenda@buckridge.biz\"\n password: \"Df04KqNy\"\n passwordConfirmation: \"Df04KqNy\"\n confirmSuccessUrl: \"http://goyettewisoky.net/filiberto\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "rosenda@buckridge.biz"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.4ms) INSERT INTO "guests" ("uid", "encrypted_password", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["uid", "rosenda@buckridge.biz"], ["encrypted_password", "$2a$04$upus.8BKGciXbSXHXl4Q6eHRuQhZkYsBaQGz7bVwHUde3JtbnAafS"], ["email", "rosenda@buckridge.biz"], ["created_at", "2019-10-18 02:53:07.193348"], ["updated_at", "2019-10-18 02:53:07.193348"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Guest Update (0.1ms) UPDATE "guests" SET "tokens" = ?, "updated_at" = ? WHERE "guests"."id" = ? [["tokens", "{\"Q2SuQNz-_XFKFD2YP7ehXA\":{\"token\":\"$2a$10$d8cnT3v.tqNSx1bTC6uejOZAe0pD1mFsUz4fx/if4gwZJZe9kBpSu\",\"expiry\":1572576787,\"updated_at\":\"2019-10-18 02:53:07 UTC\"}}"], ["updated_at", "2019-10-18 02:53:07.244601"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 84ms (Views: 0.2ms | ActiveRecord: 1.3ms | Allocations: 29283)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:54:29 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"rosenda@buckridge.biz\"\n password: \"Df04KqNy\"\n passwordConfirmation: \"Df04KqNy\"\n confirmSuccessUrl: \"http://goyettewisoky.net/filiberto\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "rosenda@buckridge.biz"], ["provider", "email"], ["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2750)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.3ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:54:39 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"ray.zboncak@hahn.co\"\n password: \"FcSvEkGrBh\"\n passwordConfirmation: \"FcSvEkGrBh\"\n confirmSuccessUrl: \"http://labadieprosacco.com/detra\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "ray.zboncak@hahn.co"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.3ms) INSERT INTO "guests" ("uid", "encrypted_password", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["uid", "ray.zboncak@hahn.co"], ["encrypted_password", "$2a$04$hLDi3xzfIWCnQ4vH2bgh6ubKI0zJB2pMhUL8UXYP1J5Q62O1J3NfG"], ["email", "ray.zboncak@hahn.co"], ["created_at", "2019-10-18 02:54:39.160433"], ["updated_at", "2019-10-18 02:54:39.160433"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Guest Update (0.1ms) UPDATE "guests" SET "tokens" = ?, "updated_at" = ? WHERE "guests"."id" = ? [["tokens", "{\"pe0g_sZewcPF-KmRo_uPKg\":{\"token\":\"$2a$10$JFn9bjyWUrc7iN6T8v/.aOGudzms4CNSW.92haH451CdOdKAycpW.\",\"expiry\":1572576879,\"updated_at\":\"2019-10-18 02:54:39 UTC\"}}"], ["updated_at", "2019-10-18 02:54:39.209094"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 69ms (Views: 0.2ms | ActiveRecord: 1.1ms | Allocations: 29301)  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:55:46 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"ray.zboncak@hahn.co\"\n password: \"FcSvEkGrBh\"\n passwordConfirmation: \"FcSvEkGrBh\"\n confirmSuccessUrl: \"http://labadieprosacco.com/detra\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "ray.zboncak@hahn.co"], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2750)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.3ms) rollback transaction  (0.8ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.0ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:55:53 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"shanon.emard@kihn.info\"\n password: \"AbAcRfJfXwT\"\n passwordConfirmation: \"AbAcRfJfXwT\"\n confirmSuccessUrl: \"http://hillsdeckow.co/quinton_hartmann\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.0ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "shanon.emard@kihn.info"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.3ms) INSERT INTO "guests" ("uid", "encrypted_password", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["uid", "shanon.emard@kihn.info"], ["encrypted_password", "$2a$04$uvooK507Y3hpZ2lzO6kY/ev7WARxTSdVOByf7sOgPjqEXYQXaigNy"], ["email", "shanon.emard@kihn.info"], ["created_at", "2019-10-18 02:55:53.428692"], ["updated_at", "2019-10-18 02:55:53.428692"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Guest Update (0.1ms) UPDATE "guests" SET "tokens" = ?, "updated_at" = ? WHERE "guests"."id" = ? [["tokens", "{\"h9PABQrc3JBbsW6GI8mD_Q\":{\"token\":\"$2a$10$lrmgoj6eVx4pg/d2LxzNPuPUMF1ENeU7M6vkq1ofmPigDt7l9Oc7S\",\"expiry\":1572576953,\"updated_at\":\"2019-10-18 02:55:53 UTC\"}}"], ["updated_at", "2019-10-18 02:55:53.475136"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 68ms (Views: 0.2ms | ActiveRecord: 1.1ms | Allocations: 29318)  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:57:32 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"shanon.emard@kihn.info\"\n password: \"AbAcRfJfXwT\"\n passwordConfirmation: \"AbAcRfJfXwT\"\n confirmSuccessUrl: \"http://hillsdeckow.co/quinton_hartmann\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "shanon.emard@kihn.info"], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 1350ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 13543)  (0.0ms) SELECT COUNT(*) FROM "users"  (0.2ms) rollback transaction  (1.5ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:57:42 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"wayne@marks.net\"\n password: \"TnTtTtEoOrKwK\"\n passwordConfirmation: \"TnTtTtEoOrKwK\"\n confirmSuccessUrl: \"http://sauercarroll.biz/orville\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "wayne@marks.net"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.5ms) INSERT INTO "guests" ("uid", "encrypted_password", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["uid", "wayne@marks.net"], ["encrypted_password", "$2a$04$LnVPzh.TDWM/LOtqBTSHKufM7VrIVgYrKa/odu2PntWRm/j.SGeru"], ["email", "wayne@marks.net"], ["created_at", "2019-10-18 02:58:13.105832"], ["updated_at", "2019-10-18 02:58:13.105832"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Guest Update (0.1ms) UPDATE "guests" SET "tokens" = ?, "updated_at" = ? WHERE "guests"."id" = ? [["tokens", "{\"A-WmADK8Owc9vVAVCv0u8g\":{\"token\":\"$2a$10$RIhB0oSP297OLjFRZ4mrO.b4UAUGv56qXFWHXPLJQOCUcoIbPdAsC\",\"expiry\":1572577105,\"updated_at\":\"2019-10-18 02:58:25 UTC\"}}"], ["updated_at", "2019-10-18 02:58:25.569103"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 43187ms (Views: 0.2ms | ActiveRecord: 1.5ms | Allocations: 54038)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.2ms) rollback transaction  (1.5ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "guests" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:58:40 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"nathan@borerschuppe.co\"\n password: \"VhRaL096wW\"\n passwordConfirmation: \"VhRaL096wW\"\n confirmSuccessUrl: \"http://moriette.co/ivory.emmerich\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "nathan@borerschuppe.co"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.6ms) INSERT INTO "guests" ("uid", "encrypted_password", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["uid", "nathan@borerschuppe.co"], ["encrypted_password", "$2a$04$KknfqPJX1wLjv2ubNAWk5ejtAD2I3lES/MVQoL/5vsHAMjdLQhF/a"], ["email", "nathan@borerschuppe.co"], ["created_at", "2019-10-18 02:58:42.961588"], ["updated_at", "2019-10-18 02:58:42.961588"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Guest Update (0.1ms) UPDATE "guests" SET "tokens" = ?, "updated_at" = ? WHERE "guests"."id" = ? [["tokens", "{\"mk-48CggO2M4d2Jp9pS1-Q\":{\"token\":\"$2a$10$h8cZXBZS5nIF3is8dnRNUe3xYBs5BtzaGCLbGLcpi0U3ZnUG2p7NC\",\"expiry\":1572577124,\"updated_at\":\"2019-10-18 02:58:44 UTC\"}}"], ["updated_at", "2019-10-18 02:58:44.256562"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 3476ms (Views: 0.2ms | ActiveRecord: 1.4ms | Allocations: 133420)  (0.1ms) SELECT COUNT(*) FROM "guests"  (0.2ms) rollback transaction  (1.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.0ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "guests" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:58:59 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"coy@oreillycorkery.org\"\n password: \"A6sI55zB1v\"\n passwordConfirmation: \"A6sI55zB1v\"\n confirmSuccessUrl: \"http://mayert.org/diedre_frami\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "coy@oreillycorkery.org"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.4ms) INSERT INTO "guests" ("uid", "encrypted_password", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["uid", "coy@oreillycorkery.org"], ["encrypted_password", "$2a$04$Xp5b.MirQS9c5w3TV7e6fOvB1CgWOPpYTRY4BEe14eCgvhvBp/q/K"], ["email", "coy@oreillycorkery.org"], ["created_at", "2019-10-18 02:58:59.374975"], ["updated_at", "2019-10-18 02:58:59.374975"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Guest Update (0.2ms) UPDATE "guests" SET "tokens" = ?, "updated_at" = ? WHERE "guests"."id" = ? [["tokens", "{\"jv-Olas9BVkYSqD2Skz9DA\":{\"token\":\"$2a$10$XP6sDqNug6COyRNh9gMq.uiUffGmODbaedUlDbjufSB3Vy16dUL1C\",\"expiry\":1572577139,\"updated_at\":\"2019-10-18 02:58:59 UTC\"}}"], ["updated_at", "2019-10-18 02:58:59.427396"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 73ms (Views: 0.2ms | ActiveRecord: 1.1ms | Allocations: 28234)  (0.1ms) SELECT COUNT(*) FROM "guests"  (0.3ms) rollback transaction  (1.4ms) SELECT sqlite_version(*)  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]  (0.1ms) SELECT sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeneva_auer@lehner.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "jeneva_auer@lehner.com"], ["encrypted_password", "$2a$04$fDvG3iBsmmD41GQGju.DN.th.2HgwWjB6tDhdUyV/5JEi/0fYGO.a"], ["confirmed_at", "2019-10-18 03:00:47.159802"], ["name", "Ali Katt"], ["email", "jeneva_auer@lehner.com"], ["created_at", "2019-10-18 03:00:47.161058"], ["updated_at", "2019-10-18 03:00:47.161058"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jeneva_auer@lehner.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jeneva_auer@lehner.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9juTz2pmmhkqPLqq1S6rRw\":{\"token\":\"$2a$10$.EdF7Peokfbm5wysUY3Yg.Jwhsey.2IMFzYGmUtWmevLKdONXhK.6\",\"expiry\":1572577247,\"updated_at\":\"2019-10-18 03:00:47 UTC\"}}"], ["updated_at", "2019-10-18 03:00:47.253835"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["current_sign_in_at", "2019-10-18 03:00:47.257238"], ["last_sign_in_at", "2019-10-18 03:00:47.257238"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2019-10-18 03:00:47.257482"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 80ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 19229) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "indira@litteltowne.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "indira@litteltowne.net"], ["encrypted_password", "$2a$04$HsRvPlSEPBocDmJ7Bv4rguZ2Zg2g1kuh.rjc5uS9QYxM9Wm94x8Fu"], ["confirmed_at", "2019-10-18 03:00:47.265259"], ["name", "Artie Choke"], ["email", "indira@litteltowne.net"], ["created_at", "2019-10-18 03:00:47.266071"], ["updated_at", "2019-10-18 03:00:47.266071"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"indira@litteltowne.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "indira@litteltowne.net"], ["LIMIT", 1]] User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 2042)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "wes_mraz@corwinnitzsche.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "wes_mraz@corwinnitzsche.biz"], ["encrypted_password", "$2a$04$kb/9KBK8Yk.jZyO6Z.GJ5OvMPkhzoXQPHON0uUjXIxnOL8fdhLLQO"], ["confirmation_token", "QxESdZCz9e-Aua8Dpw7f"], ["confirmation_sent_at", "2019-10-18 03:00:47.277360"], ["name", "Amanda Lynn"], ["email", "wes_mraz@corwinnitzsche.biz"], ["created_at", "2019-10-18 03:00:47.277267"], ["updated_at", "2019-10-18 03:00:47.277267"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"wes_mraz@corwinnitzsche.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "wes_mraz@corwinnitzsche.biz"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1363)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "jeffie@rathkling.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "locked_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "jeffie@rathkling.io"], ["encrypted_password", "$2a$04$B/XK2ost5TdNqq7myGk9xuETKZVdydw/e7QjbY/5R4i8ejHnRYmnS"], ["confirmed_at", "2019-10-18 03:00:47.285844"], ["locked_at", "2019-10-18 03:00:47.285891"], ["name", "Joaquin DeFlores"], ["email", "jeffie@rathkling.io"], ["created_at", "2019-10-18 03:00:47.287084"], ["updated_at", "2019-10-18 03:00:47.287084"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jeffie@rathkling.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jeffie@rathkling.io"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "pat@tremblayquigley.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at", "auth_available") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "pat@tremblayquigley.com"], ["encrypted_password", "$2a$04$wkz/CeiNopMoZRAYrNRemeS6Riu2f8NyJxJImoutSraZcUlgAS7jG"], ["confirmed_at", "2019-10-18 03:00:47.296538"], ["name", "Marge Innastraightline"], ["email", "pat@tremblayquigley.com"], ["created_at", "2019-10-18 03:00:47.297899"], ["updated_at", "2019-10-18 03:00:47.297899"], ["auth_available", 0]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogin(\n email: \"pat@tremblayquigley.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "pat@tremblayquigley.com"], ["LIMIT", 1]] Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1359)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.1ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "landon_kshlerin@reichertgusikowski.com"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.5ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "landon_kshlerin@reichertgusikowski.com"], ["encrypted_password", "$2a$04$xilRqO9qsl74HYSXooHIregycGpagfYhJlU3xZoV8alBOzwUHaCxG"], ["confirmed_at", "2019-10-18 03:00:47.321047"], ["email", "landon_kshlerin@reichertgusikowski.com"], ["created_at", "2019-10-18 03:00:47.322600"], ["updated_at", "2019-10-18 03:00:47.322600"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"landon_kshlerin@reichertgusikowski.com\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"} Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "landon_kshlerin@reichertgusikowski.com"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"9el5mo6IjKr2IXJ-LsMskw\":{\"token\":\"$2a$10$VyOHqXj2Y2RwL6QWRzHTU.YKpN.v8v/Yf2jcb1fLDnSa9YE0cKha.\",\"expiry\":1572577247,\"updated_at\":\"2019-10-18 03:00:47 UTC\"}}"], ["updated_at", "2019-10-18 03:00:47.385209"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 62ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2404)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.2ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "arden@gleichner.name"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.7ms) INSERT INTO "guests" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "arden@gleichner.name"], ["encrypted_password", "$2a$04$9ZxWb/6aa3S8GAqSxM5KKuw1Yw2ijl2dl8kd1v1rtHmFnXXpmC50W"], ["confirmed_at", "2019-10-18 03:00:47.400480"], ["email", "arden@gleichner.name"], ["created_at", "2019-10-18 03:00:47.402792"], ["updated_at", "2019-10-18 03:00:47.402792"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestLogin(\n email: \"arden@gleichner.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n }\n }\n"} Guest Load (0.2ms) SELECT "guests".* FROM "guests" WHERE "guests"."email" = ? LIMIT ? [["email", "arden@gleichner.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Guest Update (0.1ms) UPDATE "guests" SET "tokens" = ?, "updated_at" = ? WHERE "guests"."id" = ? [["tokens", "{\"gbWhywc7Q25-5vycaWhm-g\":{\"token\":\"$2a$10$B4MJAieBq35bJGsSNbFJgO.fA4zxHglv3QHeCX.Rkc8QE0SRTmeVS\",\"expiry\":1572577247,\"updated_at\":\"2019-10-18 03:00:47 UTC\"}}"], ["updated_at", "2019-10-18 03:00:47.463057"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2273)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "raul@koelpinweinat.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "raul@koelpinweinat.name"], ["encrypted_password", "$2a$04$r8VbmbU4fzq/zUefMAQKWuwGat5kcP60h7TMwVgIOGKC0KA7tT9KG"], ["confirmed_at", "2019-10-18 03:00:47.467345"], ["name", "Cole Durkee"], ["email", "raul@koelpinweinat.name"], ["created_at", "2019-10-18 03:00:47.468186"], ["updated_at", "2019-10-18 03:00:47.468186"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Zheuf0CARZP0MwNARCwUAA\":{\"token\":\"$2a$10$N2.0N/vNZd/luCaNWIAyiOK/3zb0Rld9RB0eXHNbTUQzcwvesq3Yu\",\"expiry\":1572577247,\"updated_at\":\"2019-10-18 03:00:47 UTC\"}}"], ["updated_at", "2019-10-18 03:00:47.518216"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "raul@koelpinweinat.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2019-10-18 03:00:47.568453"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 1896) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 957)  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "rebeca_gottlieb@becker.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "rebeca_gottlieb@becker.org"], ["encrypted_password", "$2a$04$mmI09aXFfetNqKUGnzbF2uagl/Iq35mxAgnE1DJB7iObmkAZu.5t2"], ["confirmed_at", "2019-10-18 03:00:47.578713"], ["name", "Mel Function"], ["email", "rebeca_gottlieb@becker.org"], ["created_at", "2019-10-18 03:00:47.579835"], ["updated_at", "2019-10-18 03:00:47.579835"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 Admin Exists? (0.2ms) SELECT 1 AS one FROM "admins" WHERE "admins"."email" = ? AND "admins"."provider" = ? LIMIT ? [["email", "harland@lemke.biz"], ["provider", "email"], ["LIMIT", 1]] Admin Create (0.4ms) INSERT INTO "admins" ("uid", "encrypted_password", "confirmed_at", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["uid", "harland@lemke.biz"], ["encrypted_password", "$2a$04$ASqWt0EMhpPEuIHGA/iHRuiq3n4oC2gP5vwPRtxV7BD9NWeYVxepm"], ["confirmed_at", "2019-10-18 03:00:47.588042"], ["email", "harland@lemke.biz"], ["created_at", "2019-10-18 03:00:47.589531"], ["updated_at", "2019-10-18 03:00:47.589531"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", "{\"AjdIa7hWlUaGr28uTL2o5g\":{\"token\":\"$2a$10$hiNR4XksfcztIq49052gbuoBayur2BrSlBrM5qo7vgU2J5VWcpTSG\",\"expiry\":1572577247,\"updated_at\":\"2019-10-18 03:00:47 UTC\"}}"], ["updated_at", "2019-10-18 03:00:47.644670"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"} Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "harland@lemke.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 Admin Update (0.1ms) UPDATE "admins" SET "tokens" = ?, "updated_at" = ? WHERE "admins"."id" = ? [["tokens", nil], ["updated_at", "2019-10-18 03:00:47.694370"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1825) Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "anneliese@saueremmerich.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "anneliese@saueremmerich.com"], ["encrypted_password", "$2a$04$UIEHInTBWwb/pe2Iij.Axu9nsZrcPWRZXOVHAp2GOzwHxpzDoSL0u"], ["confirmed_at", "2019-10-18 03:00:47.702239"], ["name", "Juana Bea"], ["email", "anneliese@saueremmerich.com"], ["created_at", "2019-10-18 03:00:47.703712"], ["updated_at", "2019-10-18 03:00:47.703712"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"anneliese@saueremmerich.com\",\n redirectUrl: \"http://hackett.name/drema\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "anneliese@saueremmerich.com"], ["provider", "email"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ea7dcf866188658b7d88cb1727ad9aa5f70641f6683afc25872d966e533d3414"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "ea7dcf866188658b7d88cb1727ad9aa5f70641f6683afc25872d966e533d3414"], ["reset_password_sent_at", "2019-10-18 03:00:47.793072"], ["updated_at", "2019-10-18 03:00:47.793225"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.7ms | Allocations: 1308) Devise::Mailer#reset_password_instructions: processed outbound mail in 111.6ms Delivered mail 5da92adfddbab_1e803fe85e02bfd0757f8@Marios-MacBook-Pro.local.mail (4.6ms) Date: Thu, 17 Oct 2019 22:00:47 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: anneliese@saueremmerich.com Message-ID: <5da92adfddbab_1e803fe85e02bfd0757f8@Marios-MacBook-Pro.local.mail> Subject: Reset password instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit email: anneliese@saueremmerich.com provider: email redirect-url: http://hackett.name/drema client-config: default

Hello anneliese@saueremmerich.com!

Request Reset Link Msg

Password Change Link

Ignore Mail Msg

No Changes Msg

Completed 200 OK in 204ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 67764) Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserCheckPasswordToken%28resetPasswordToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fhackett.name%2Fdrema&variables%5Btoken%5D=PtQuhUkQyLzd3Jrvr2u7" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://hackett.name/drema", "token"=>"PtQuhUkQyLzd3Jrvr2u7"}} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "ea7dcf866188658b7d88cb1727ad9aa5f70641f6683afc25872d966e533d3414"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"qHfvKhrW6yCXnx_BhEzbTg\":{\"token\":\"$2a$10$LKl1/qVcVCa7Lyim2t9fVew1Sq4Kps8t2hZxy8odunQ1gj3lAaGw2\",\"expiry\":1572577247}}"], ["allow_password_change", 1], ["updated_at", "2019-10-18 03:00:47.955529"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://hackett.name/drema?access-token=X8j6SCWJXBYCgx5-gIu4kw&client=qHfvKhrW6yCXnx_BhEzbTg&client_id=qHfvKhrW6yCXnx_BhEzbTg&config=&expiry=1572577247&reset_password=true&token=X8j6SCWJXBYCgx5-gIu4kw&uid=anneliese%40saueremmerich.com Completed 302 Found in 44ms (ActiveRecord: 0.2ms | Allocations: 2147) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.7ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSendResetPassword(\n email: \"nothere@gmail.com\",\n redirectUrl: \"http://langworth.io/florencio\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1205)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"ayana.waelchi@kubschmitt.io\"\n name: \"Remedios Gerlach DDS\"\n password: \"2H1lS7rL1gYw\"\n passwordConfirmation: \"2H1lS7rL1gYw\"\n confirmSuccessUrl: \"http://veumreynolds.co/lucius_frami\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ayana.waelchi@kubschmitt.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ayana.waelchi@kubschmitt.io"], ["encrypted_password", "$2a$04$YRsIl1GYVTSfsn4k2ROj.eoIO95paZxVerUlaTRbdmj1DsTlnWJoa"], ["confirmation_token", "jsS12FEtdmZ2B9ExXw48"], ["confirmation_sent_at", "2019-10-18 03:00:47.970685"], ["name", "Remedios Gerlach DDS"], ["email", "ayana.waelchi@kubschmitt.io"], ["created_at", "2019-10-18 03:00:47.970589"], ["updated_at", "2019-10-18 03:00:47.970589"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.9ms | Allocations: 581) Devise::Mailer#confirmation_instructions: processed outbound mail in 2.6ms Delivered mail 5da92adfee062_1e803fe85e02bfd075820@Marios-MacBook-Pro.local.mail (1.2ms) Date: Thu, 17 Oct 2019 22:00:47 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: ayana.waelchi@kubschmitt.io Message-ID: <5da92adfee062_1e803fe85e02bfd075820@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit redirect-url: http://veumreynolds.co/lucius_frami client-config: default

Welcome ayana.waelchi@kubschmitt.io!

Confirm Link Msg

Confirm Account Link

Completed 200 OK in 10ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 5454)  (0.1ms) SELECT COUNT(*) FROM "users" User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] Started GET "/api/v1/graphql_auth?query=query%28%24token%3AString%21%2C%24redirectUrl%3AString%21%29%7BuserConfirmAccount%28confirmationToken%3A%24token%2CredirectUrl%3A%24redirectUrl%29%7Bemail%7D%7D&variables%5BredirectUrl%5D=http%3A%2F%2Fveumreynolds.co%2Flucius_frami&variables%5Btoken%5D=jsS12FEtdmZ2B9ExXw48" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://veumreynolds.co/lucius_frami", "token"=>"jsS12FEtdmZ2B9ExXw48"}} User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "jsS12FEtdmZ2B9ExXw48"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-18 03:00:47.985290"], ["updated_at", "2019-10-18 03:00:47.985595"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Redirected to http://veumreynolds.co/lucius_frami?account_confirmation_success=true Completed 302 Found in 10ms (ActiveRecord: 1.6ms | Allocations: 2180) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "users" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userSignUp(\n email: \"\"\n name: \"Moira Towne\"\n password: \"JbZuAvDcWf1GoN\"\n passwordConfirmation: \"JbZuAvDcWf1GoN\"\n confirmSuccessUrl: \"http://schummoreilly.net/tangela.schamberger\"\n ) {\n user {\n email\n name\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.8ms | Allocations: 2710)  (0.1ms) SELECT COUNT(*) FROM "users"  (0.1ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n adminSignUp(\n email: \"raisa@nader.name\"\n password: \"F4wCxFhA227lG0\"\n passwordConfirmation: \"F4wCxFhA227lG0\"\n confirmSuccessUrl: \"http://effertz.co/ned.batz\"\n ) {\n authenticable {\n email\n }\n }\n }\n"} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 818)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SELECT COUNT(*) FROM "guests" Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n guestSignUp(\n email: \"nella@gottlieb.io\"\n password: \"XeT4xQgSn8JxT\"\n passwordConfirmation: \"XeT4xQgSn8JxT\"\n confirmSuccessUrl: \"http://marquardt.net/iris_shanahan\"\n ) {\n authenticable {\n email\n }\n }\n }\n"}  (0.1ms) SAVEPOINT active_record_1 Guest Exists? (0.1ms) SELECT 1 AS one FROM "guests" WHERE "guests"."email" = ? AND "guests"."provider" = ? LIMIT ? [["email", "nella@gottlieb.io"], ["provider", "email"], ["LIMIT", 1]] Guest Create (0.5ms) INSERT INTO "guests" ("uid", "encrypted_password", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["uid", "nella@gottlieb.io"], ["encrypted_password", "$2a$04$hBXc5orZqTtllR8CCGhD9e4s5XNgSa52WgHowei9CifCz225MQhqS"], ["email", "nella@gottlieb.io"], ["created_at", "2019-10-18 03:00:48.039757"], ["updated_at", "2019-10-18 03:00:48.039757"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Guest Update (0.1ms) UPDATE "guests" SET "tokens" = ?, "updated_at" = ? WHERE "guests"."id" = ? [["tokens", "{\"urNpq0U4S7IAAkbkoRdVcg\":{\"token\":\"$2a$10$/uetC3zBC06.Z0pFXwbqLOQVMNCLDJROVdtx5fIYHyXjvJ07AJ04i\",\"expiry\":1572577248,\"updated_at\":\"2019-10-18 03:00:48 UTC\"}}"], ["updated_at", "2019-10-18 03:00:48.100003"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 68ms (Views: 0.6ms | ActiveRecord: 1.0ms | Allocations: 2629)  (0.1ms) SELECT COUNT(*) FROM "guests"  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "julius@botsforddooley.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "julius@botsforddooley.co"], ["encrypted_password", "$2a$04$KI1TU.JIHihACgkQIGZNKevEsZjom603bxxiwzIly2RC2yv0.21Ym"], ["allow_password_change", 1], ["confirmed_at", "2019-10-18 03:00:48.106996"], ["name", "Bob Ng"], ["email", "julius@botsforddooley.co"], ["created_at", "2019-10-18 03:00:48.108707"], ["updated_at", "2019-10-18 03:00:48.108707"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"KlMlb3yuWHfNkGenqCS6sw\":{\"token\":\"$2a$10$1qX8q0vd8Iw6wUWTIES4YebgGogfr8pXBTQVQo3FeSP7XJ62pNBFK\",\"expiry\":1572577248,\"updated_at\":\"2019-10-18 03:00:48 UTC\"}}"], ["updated_at", "2019-10-18 03:00:48.161784"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "julius@botsforddooley.co"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$/2yEo6YnMEvMy75r5eR1Du8v/4LWOQ/z5Rh95XXRLdoG.MJnAzxL."], ["updated_at", "2019-10-18 03:00:48.213177"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-18 03:00:48.214636"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2885) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "genaro@marquardt.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "genaro@marquardt.name"], ["encrypted_password", "$2a$04$FO5ewigkiSFn8Jkk/KqA/uM6.M4q7Fr4WmTuQ9Dcv2U7lPs5IDleW"], ["allow_password_change", 1], ["confirmed_at", "2019-10-18 03:00:48.221405"], ["name", "Adam Bomb"], ["email", "genaro@marquardt.name"], ["created_at", "2019-10-18 03:00:48.222660"], ["updated_at", "2019-10-18 03:00:48.222660"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"gruSIrh6-N-dKy8NzyCT0w\":{\"token\":\"$2a$10$squlGciWzbdZVNRB..3PpuWZnLc.MGLk5szp70IXSa4Rxuh1Fig16\",\"expiry\":1572577248,\"updated_at\":\"2019-10-18 03:00:48 UTC\"}}"], ["updated_at", "2019-10-18 03:00:48.274772"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "genaro@marquardt.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$neDqHSm49ylng.M4L2fFK.hy7Ys1LTQhRru7jeJBaNWayopmi7LSS"], ["updated_at", "2019-10-18 03:00:48.325631"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-18 03:00:48.326848"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tristan_skiles@erdman.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tristan_skiles@erdman.info"], ["encrypted_password", "$2a$04$2aVhQlvawOqyBYibqXUp9eH7b.2dFxjRIAmuwDlzujo7tsqEXqgoG"], ["confirmed_at", "2019-10-18 03:00:48.333704"], ["name", "Sarah Doctorinthehouse"], ["email", "tristan_skiles@erdman.info"], ["created_at", "2019-10-18 03:00:48.334505"], ["updated_at", "2019-10-18 03:00:48.334505"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"NE2rppqWTcvjyqFGj9Pm1g\":{\"token\":\"$2a$10$2w8snx0ypsOa7WpaMU78C.11a/pj/MXSGGbpzZ7YKFiqFjuC42wf6\",\"expiry\":1572577248,\"updated_at\":\"2019-10-18 03:00:48 UTC\"}}"], ["updated_at", "2019-10-18 03:00:48.384461"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tristan_skiles@erdman.info"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2360) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "dalton@batz.name"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "dalton@batz.name"], ["encrypted_password", "$2a$04$Y/43K2yTV8dwIjacYAbyyumexbtgrhafF9/rvAub0xWHeavX/xsle"], ["allow_password_change", 1], ["confirmed_at", "2019-10-18 03:00:48.441057"], ["name", "Luke Warm"], ["email", "dalton@batz.name"], ["created_at", "2019-10-18 03:00:48.441974"], ["updated_at", "2019-10-18 03:00:48.441974"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"X91q5Cgst3MxpA7mkrN3-A\":{\"token\":\"$2a$10$2Mr/uggILw0GelqCDVD5iecrLK3HlaIb9dy9cua7OJ2QAG0BgX5ty\",\"expiry\":1572577248,\"updated_at\":\"2019-10-18 03:00:48 UTC\"}}"], ["updated_at", "2019-10-18 03:00:48.492177"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dalton@batz.name"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$nnZ7PGjXkM9OtsdoZ7mk4u.ILgsQ31dLJ9nhVw3inM.DrUDCryxv."], ["updated_at", "2019-10-18 03:00:48.541512"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-18 03:00:48.542706"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.3ms | ActiveRecord: 0.4ms | Allocations: 2874) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "sherrill@littlesenger.biz"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "allow_password_change", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "sherrill@littlesenger.biz"], ["encrypted_password", "$2a$04$UqYJ2Vj13dvn714n26eHfem7kxoz3LAgmDiNqGcyddMtKUqQE3Tv."], ["allow_password_change", 1], ["confirmed_at", "2019-10-18 03:00:48.548394"], ["name", "Molly Kuehl"], ["email", "sherrill@littlesenger.biz"], ["created_at", "2019-10-18 03:00:48.549241"], ["updated_at", "2019-10-18 03:00:48.549241"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Ez-MlULe3XJTg6-0UPZXYQ\":{\"token\":\"$2a$10$.Sv.JOYv55/80oky0o/qW.OryQIrz.sOzWuvIXDeobJ6Ca/Y4Jf2K\",\"expiry\":1572577248,\"updated_at\":\"2019-10-18 03:00:48 UTC\"}}"], ["updated_at", "2019-10-18 03:00:48.600640"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sherrill@littlesenger.biz"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$qySfmYF5Smwhwf3PzuzPNuVFwOUyE7/VjJfTA8WT0XhheH7Ev.gXi"], ["updated_at", "2019-10-18 03:00:48.651721"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["allow_password_change", 0], ["updated_at", "2019-10-18 03:00:48.652863"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2877) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "loria@rempelcummerata.org"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "loria@rempelcummerata.org"], ["encrypted_password", "$2a$04$V72Wez8irwydTRGkWG4.0.aTGe4oBFi2iOCMh.RwLg781.YfPP5/W"], ["confirmed_at", "2019-10-18 03:00:48.660864"], ["name", "Max Little"], ["email", "loria@rempelcummerata.org"], ["created_at", "2019-10-18 03:00:48.661730"], ["updated_at", "2019-10-18 03:00:48.661730"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"j2B-TfqNHMbEqEnzguAJUw\":{\"token\":\"$2a$10$ooko..Se0voYvjuKa.7bueHoR.QLfrvNKLPHuGwGy0Q/e5aRx3sya\",\"expiry\":1572577248,\"updated_at\":\"2019-10-18 03:00:48 UTC\"}}"], ["updated_at", "2019-10-18 03:00:48.711598"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "loria@rempelcummerata.org"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$04$zm3jcItslfYNQxYNef02tuPmLEokHVKBOTs.rybF1b8XRiIomyaay"], ["updated_at", "2019-10-18 03:00:48.762079"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 50ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2643) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "robby_schuster@gutmannkeler.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "robby_schuster@gutmannkeler.com"], ["encrypted_password", "$2a$04$1ARJvFL01vn3Xrjn3ObOQuzDza3ZVBMp5enHQDuaYu6cYUYP5NnOe"], ["confirmed_at", "2019-10-18 03:00:48.769375"], ["name", "Andy Structible"], ["email", "robby_schuster@gutmannkeler.com"], ["created_at", "2019-10-18 03:00:48.770146"], ["updated_at", "2019-10-18 03:00:48.770146"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"} Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1164) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "tonie_mayert@mosciski.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "tonie_mayert@mosciski.info"], ["encrypted_password", "$2a$04$CDazJjbfQTQRNlqBKcWXB.Z3tvd9x8MvYffqUb7G4nmdulIw.rut2"], ["confirmed_at", "2019-10-18 03:00:48.811288"], ["name", "Marv Ellis"], ["email", "tonie_mayert@mosciski.info"], ["created_at", "2019-10-18 03:00:48.812431"], ["updated_at", "2019-10-18 03:00:48.812431"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "9ea9dfa40d9a9b997d32b93d3ac689834d748c1ba976c8c264f467ae8c5f1830"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "9ea9dfa40d9a9b997d32b93d3ac689834d748c1ba976c8c264f467ae8c5f1830"], ["reset_password_sent_at", "2019-10-18 03:00:48.814499"], ["updated_at", "2019-10-18 03:00:48.814685"], ["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22xskS2ZVU2TivUP79ic5m%22%2C%0A++++++++++++redirectUrl%3A+%22%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-17 22:00:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"xskS2ZVU2TivUP79ic5m\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "9ea9dfa40d9a9b997d32b93d3ac689834d748c1ba976c8c264f467ae8c5f1830"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"HHTo_RCYyVnDRPzCe9gbSg\":{\"token\":\"$2a$10$drozI7xjteFbtF6OAvleV.RXpK5NTmO48INF0W7WVtavccf1OL9y2\",\"expiry\":1572577248}}"], ["allow_password_change", 1], ["updated_at", "2019-10-18 03:00:48.873622"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"HHTo_RCYyVnDRPzCe9gbSg\":{\"token\":\"$2a$10$drozI7xjteFbtF6OAvleV.RXpK5NTmO48INF0W7WVtavccf1OL9y2\",\"expiry\":1572577248},\"RAprrD99IBH4ba4nv1tFwA\":{\"token\":\"$2a$10$IuEnICaYcNQaqbAqE/KucO2S8Upi0Kew5SujtSecIi2TIqF4r7QD2\",\"expiry\":1572577248,\"updated_at\":\"2019-10-18 03:00:48 UTC\"}}"], ["updated_at", "2019-10-18 03:00:48.919911"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Completed 200 OK in 103ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2658)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "hanh@hand.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "hanh@hand.net"], ["encrypted_password", "$2a$04$WAb2aRrnbYegGpqZy1byAebOqpwrbj3xCnRXCb5x.6fy/F3be2ZtC"], ["confirmed_at", "2019-10-18 03:00:48.924438"], ["name", "Midas Well"], ["email", "hanh@hand.net"], ["created_at", "2019-10-18 03:00:48.925278"], ["updated_at", "2019-10-18 03:00:48.925278"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0e3cf75d4df5696518314c7b66f23912992f6ddca464ef0667e9385dc81db2d9"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "0e3cf75d4df5696518314c7b66f23912992f6ddca464ef0667e9385dc81db2d9"], ["reset_password_sent_at", "2019-10-18 03:00:48.926613"], ["updated_at", "2019-10-18 03:00:48.926792"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22GyWG41YJtu-XvS_KAFzK%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-17 22:00:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"GyWG41YJtu-XvS_KAFzK\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "0e3cf75d4df5696518314c7b66f23912992f6ddca464ef0667e9385dc81db2d9"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "allow_password_change" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"GV5wpe9wbA3EDxKlRrKUsw\":{\"token\":\"$2a$10$74S06t7YY9ITzwnjMGcvXOSWn9hHIn6wm1Iv7IZc8e9WWvdRTgn4e\",\"expiry\":1572577248}}"], ["allow_password_change", 1], ["updated_at", "2019-10-18 03:00:48.977582"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to https://google.com?access-token=JYpYetTaVpZHCyUU_1viDQ&client=GV5wpe9wbA3EDxKlRrKUsw&client_id=GV5wpe9wbA3EDxKlRrKUsw&config=&expiry=1572577248&reset_password=true&token=JYpYetTaVpZHCyUU_1viDQ&uid=hanh%40hand.net Completed 302 Found in 50ms (ActiveRecord: 0.3ms | Allocations: 1916) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "gilberto.lynch@rath.net"], ["provider", "email"], ["LIMIT", 1]] User Create (0.3ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "gilberto.lynch@rath.net"], ["encrypted_password", "$2a$04$9CBFwdif9TPlFBM3WTPhEe9bOuJyrFz2/OxUpn5C4IXA.RTCJ29yq"], ["confirmed_at", "2019-10-17 17:00:48"], ["name", "Anna Graham"], ["email", "gilberto.lynch@rath.net"], ["created_at", "2019-10-17 17:00:48"], ["updated_at", "2019-10-17 17:00:48"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "afcac76287359f703e75dd1a27291a8780ecf0280bc5d16c8b7bb8405a9db27b"], ["LIMIT", 1]]  (0.0ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ? WHERE "users"."id" = ? [["reset_password_token", "afcac76287359f703e75dd1a27291a8780ecf0280bc5d16c8b7bb8405a9db27b"], ["reset_password_sent_at", "2019-10-17 17:00:48"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22K1cg7xQAhuW6zyUSqgf6%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-17 22:00:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"K1cg7xQAhuW6zyUSqgf6\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "afcac76287359f703e75dd1a27291a8780ecf0280bc5d16c8b7bb8405a9db27b"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1266)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "laurence@bartoletti.io"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "laurence@bartoletti.io"], ["encrypted_password", "$2a$04$Vy/FMLuWEY8HLl.pd0oSFeRJKtHlCLVAhvNQRslaTVqsY8TJOfkT6"], ["confirmed_at", "2019-10-18 03:00:48.993678"], ["name", "Anna Conda"], ["email", "laurence@bartoletti.io"], ["created_at", "2019-10-18 03:00:48.994521"], ["updated_at", "2019-10-18 03:00:48.994521"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "bdd79711a0c7dae0a2f5d8e75bf0b064de9bf0d399c6fd94e0ae534e7bd3aba6"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "reset_password_token" = ?, "reset_password_sent_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_token", "bdd79711a0c7dae0a2f5d8e75bf0b064de9bf0d399c6fd94e0ae534e7bd3aba6"], ["reset_password_sent_at", "2019-10-18 03:00:48.995980"], ["updated_at", "2019-10-18 03:00:48.996166"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++++query+%7B%0A++++++++++userCheckPasswordToken%28%0A++++++++++++resetPasswordToken%3A+%22xGEge-BnCBeesAvQZncpinvalid%22%2C%0A++++++++++++redirectUrl%3A+%22https%3A%2F%2Fgoogle.com%22%0A++++++++++%29+%7B%0A++++++++++++email%0A++++++++++%7D%0A++++++++%7D%0A&" for 127.0.0.1 at 2019-10-17 22:00:48 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"xGEge-BnCBeesAvQZncpinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["reset_password_token", "2046d497d20e3b903799b77de418359305c45b2061c8113192219d8b209d6250"], ["LIMIT", 1]] Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)  (0.3ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.1ms) rollback transaction  (0.1ms) begin transaction Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" query {\n guestCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"} Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "ashley@koeppshanahan.co"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "ashley@koeppshanahan.co"], ["encrypted_password", "$2a$04$uFjJnFAPHX0wPL4kYlW.PeRYmZnQzivDH1Z2ATR1.NAPmoUAFsmGq"], ["confirmation_token", "Dz1Xrwmxq39qJzgCE7ye"], ["confirmation_sent_at", "2019-10-18 03:00:49.014389"], ["name", "Juan Nightstand"], ["email", "ashley@koeppshanahan.co"], ["created_at", "2019-10-18 03:00:49.014274"], ["updated_at", "2019-10-18 03:00:49.014274"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.6ms | Allocations: 408) Devise::Mailer#confirmation_instructions: processed outbound mail in 1.7ms Delivered mail 5da92ae14778_1e803fe85e02bfd0759b9@Marios-MacBook-Pro.local.mail (1.7ms) Date: Thu, 17 Oct 2019 22:00:49 -0500 From: please-change-me-at-config-initializers-devise@example.com Reply-To: please-change-me-at-config-initializers-devise@example.com To: ashley@koeppshanahan.co Message-ID: <5da92ae14778_1e803fe85e02bfd0759b9@Marios-MacBook-Pro.local.mail> Subject: Confirmation instructions Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit client-config: default redirect-url:

Welcome ashley@koeppshanahan.co!

Confirm Link Msg

Confirm Account Link

Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22Dz1Xrwmxq39qJzgCE7ye%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Fschmidtnicolas.com%2Fagustin%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-17 22:00:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"Dz1Xrwmxq39qJzgCE7ye\"\n redirectUrl: \"http://schmidtnicolas.com/agustin\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "Dz1Xrwmxq39qJzgCE7ye"], ["LIMIT", 1]]  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2019-10-18 03:00:49.023637"], ["updated_at", "2019-10-18 03:00:49.023859"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://schmidtnicolas.com/agustin?account_confirmation_success=true Completed 302 Found in 4ms (ActiveRecord: 0.3ms | Allocations: 1789) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "lavern.leffler@stanton.info"], ["provider", "email"], ["LIMIT", 1]] User Create (0.5ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmation_token", "confirmation_sent_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["uid", "lavern.leffler@stanton.info"], ["encrypted_password", "$2a$04$1pDqnIovQT4P4ns0rxZxneffUvqkRccs6o3Qk0QeaTIa03PASxxwi"], ["confirmation_token", "qtt8LHMgvEw2X9DzLaie"], ["confirmation_sent_at", "2019-10-18 03:00:49.031740"], ["name", "Jean Poole"], ["email", "lavern.leffler@stanton.info"], ["created_at", "2019-10-18 03:00:49.031599"], ["updated_at", "2019-10-18 03:00:49.031599"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Started GET "/api/v1/graphql_auth?query=++++++%7B%0A++++++++userConfirmAccount%28%0A++++++++++confirmationToken%3A+%22qtt8LHMgvEw2X9DzLaie-invalid%22%0A++++++++++redirectUrl%3A+++++++%22http%3A%2F%2Ffisher.co%2Fmayme.cartwright%22%0A++++++++%29+%7B%0A++++++++++email%0A++++++++++name%0A++++++++%7D%0A++++++%7D%0A&" for 127.0.0.1 at 2019-10-17 22:00:49 -0500 Processing by GraphqlDevise::GraphqlController#auth as HTML Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"qtt8LHMgvEw2X9DzLaie-invalid\"\n redirectUrl: \"http://fisher.co/mayme.cartwright\"\n ) {\n email\n name\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "qtt8LHMgvEw2X9DzLaie-invalid"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "c29a49c59d9dbd6fe9334dfd69ef7d2740c532d6c9cf834eab871e1b043ef0be"], ["LIMIT", 1]] Completed 200 OK in 91ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2009) User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "alec@bayer.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "alec@bayer.com"], ["encrypted_password", "$2a$04$uRghTGdVq/HsbvCzN6yWRumiMp7VvO0ik.7O/1tqo0bIYQUp6UmQe"], ["confirmed_at", "2019-10-18 03:00:49.130231"], ["name", "Molly Kuehl"], ["email", "alec@bayer.com"], ["created_at", "2019-10-18 03:00:49.131180"], ["updated_at", "2019-10-18 03:00:49.131180"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Update (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"Eu_apgRrUV4HXQ4Ph7ZRAQ\":{\"token\":\"$2a$10$lcRMsOOwaFMbCcTQV5q3TuQxI3Hk03W1q6neq8zPAL.ikAAWbLWGe\",\"expiry\":1572577249,\"updated_at\":\"2019-10-18 03:00:49 UTC\"}}"], ["updated_at", "2019-10-18 03:00:49.184604"], ["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-17 22:00:49 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "alec@bayer.com"], ["LIMIT", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 9749)  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", "evangelina.konopelski@pacochabins.com"], ["provider", "email"], ["LIMIT", 1]] User Create (0.4ms) INSERT INTO "users" ("uid", "encrypted_password", "confirmed_at", "name", "email", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["uid", "evangelina.konopelski@pacochabins.com"], ["encrypted_password", "$2a$04$guUnN7Pig3Vo2UY4Gp4I0.YP8mnvWuUHcdz1MuCKOlzUdxbqG3GYK"], ["confirmed_at", "2019-10-18 03:00:49.248351"], ["name", "Rusty Keyes"], ["email", "evangelina.konopelski@pacochabins.com"], ["created_at", "2019-10-18 03:00:49.249159"], ["updated_at", "2019-10-18 03:00:49.249159"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-17 22:00:49 -0500 Processing by Api::V1::GraphqlController#graphql as HTML Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"} Filter chain halted as :authenticate_user! rendered or redirected Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)  (0.3ms) rollback transaction