graphql_devise 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 45c54ce5ffe8440cbcd6c371ee99acb6b904e21179f7d7f818e92473a74fcb2e
4
- data.tar.gz: 41b388054e3e4cb4dc92ca2266fe13a9e953874eb717152eb2d163a25e365fb4
3
+ metadata.gz: 1f871910808063a2556b1fb71d3bf1459731add1a198933b68356ee33c750d17
4
+ data.tar.gz: a495c8cc6acaa90eb909bd5460848165efb0bad75d3f3efe672b1dcb33d9419a
5
5
  SHA512:
6
- metadata.gz: '088ee44829e747b80fbf089325b4f66afbd872c446f002fa9ddf453c43a264cb0a43853e4d35a29865700466ee8c4fa98fa2dad17b75459a09c9aa9708ea8c12'
7
- data.tar.gz: eec7dd4a4ccefde800b347c87c0c7adb53f2c12c1318d476aae2b717b355c9be98508db22324ca9ec2bf26d11c3a4bead8ac9e64e529c10d92111cb7ab7ac4b3
6
+ metadata.gz: e51b5ab06f98ca16e3978cb46512a2fe4ff09030451f5924c05df1935347de1b75d72c4f926aa1a10f72204b2f5956d093ee9a5fd9c8842a138903e0dcc63bdf
7
+ data.tar.gz: f75dc877ce9c51f9af30695df4c641ebc1b27f1d290ea74579efbcf70a8f8d32c3c22966a72534ea8f30e9d8b6efb28c9f811259ddbdac4db969d35f201281f1
data/CHANGELOG.md CHANGED
@@ -1,11 +1,30 @@
1
1
  # Change Log
2
2
 
3
- ## [v0.4.0](https://github.com/graphql-devise/graphql_devise/tree/v0.4.0) (2019-10-13)
4
- [Full Changelog](https://github.com/graphql-devise/graphql_devise/compare/v0.3.0...v0.4.0)
3
+ ## [v0.4.1](https://github.com/graphql-devise/graphql_devise/tree/v0.4.1) (2019-10-17)
4
+ [Full Changelog](https://github.com/graphql-devise/graphql_devise/compare/v0.4.0...v0.4.1)
5
+
6
+ **Fixed bugs:**
7
+
8
+ - NoMethodError generate\_confirmation\_token! but not supporting confirmable [\#24](https://github.com/graphql-devise/graphql_devise/issues/24)
9
+ - Refactor signUp mutation, fix confirmable disabled [\#26](https://github.com/graphql-devise/graphql_devise/pull/26) ([mcelicalderon](https://github.com/mcelicalderon))
10
+
11
+ **Closed issues:**
12
+
13
+ - Trying to access /graphql\#execute app claims action could not be found [\#21](https://github.com/graphql-devise/graphql_devise/issues/21)
5
14
 
6
15
  **Merged pull requests:**
7
16
 
17
+ - Grammar fixes in README.md documentation. [\#23](https://github.com/graphql-devise/graphql_devise/pull/23) ([aarona](https://github.com/aarona))
18
+
19
+ ## [v0.4.0](https://github.com/graphql-devise/graphql_devise/tree/v0.4.0) (2019-10-14)
20
+ [Full Changelog](https://github.com/graphql-devise/graphql_devise/compare/v0.3.0...v0.4.0)
21
+
22
+ **Implemented enhancements:**
23
+
8
24
  - Support `skip` and `only` when mounting routes [\#19](https://github.com/graphql-devise/graphql_devise/pull/19) ([mcelicalderon](https://github.com/mcelicalderon))
25
+
26
+ **Merged pull requests:**
27
+
9
28
  - Test with latest ruby versions [\#18](https://github.com/graphql-devise/graphql_devise/pull/18) ([mcelicalderon](https://github.com/mcelicalderon))
10
29
 
11
30
  ## [v0.3.0](https://github.com/graphql-devise/graphql_devise/tree/v0.3.0) (2019-10-04)
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
  [![Build Status](https://travis-ci.org/graphql-devise/graphql_devise.svg?branch=master)](https://travis-ci.org/graphql-devise/graphql_devise)
3
3
  [![Gem Version](https://badge.fury.io/rb/graphql_devise.svg)](https://badge.fury.io/rb/graphql_devise)
4
4
 
5
+ GraphQL interface on top of the [Devise Token Auth](https://github.com/lynndylanhurley/devise_token_auth) (DTA) gem.
6
+
5
7
  ## Installation
6
8
 
7
9
  Add this line to your application's Gemfile:
@@ -18,8 +20,6 @@ Or install it yourself as:
18
20
 
19
21
  $ gem install graphql_devise
20
22
 
21
- GraphQL interface on top of the [Devise Token Auth](https://github.com/lynndylanhurley/devise_token_auth) (DTA) gem.
22
-
23
23
  ## Usage
24
24
  All configurations for [Devise](https://github.com/plataformatec/devise) and
25
25
  [Devise Token Auth](https://github.com/lynndylanhurley/devise_token_auth) are
@@ -39,24 +39,29 @@ First, you need to mount the gem in the routes file like this
39
39
  # config/routes.rb
40
40
 
41
41
  Rails.application.routes.draw do
42
- mount_graphql_devise_for 'User', at: 'api/v1', authenticable_type: Types::CustomUserType, operations: {
43
- login: Mutations::Login
44
- }, skip: [:sign_up]
42
+ mount_graphql_devise_for(
43
+ 'User',
44
+ at: 'api/v1',
45
+ authenticable_type: Types::MyCustomUserType,
46
+ operations: {
47
+ login: Mutations::Login
48
+ },
49
+ skip: [:sign_up]
50
+ )
45
51
  end
46
52
  ```
47
53
  If you used DTA's installer you will have to remove the `mount_devise_token_auth_for`
48
54
  line.
49
55
 
50
- Here are the option for the mount method:
56
+ Here are the options for the mount method:
51
57
 
52
- 1. `at`: Route where the GraphQL schema will be mounted on the Rails server. In the
53
- example your API will have this two routes `POST /api/v1/graphql_auth` and `GET /api/v1/graphql_auth`.
54
- If no this option is not specified, the schema will be mounted at `/graphql_auth`.
55
- 1. `operations`: Specifying this one is optional. Here you can override default
58
+ 1. `at`: Route where the GraphQL schema will be mounted on the Rails server. In this example your API will have these two routes: `POST /api/v1/graphql_auth` and `GET /api/v1/graphql_auth`.
59
+ If this option is not specified, the schema will be mounted at `/graphql_auth`.
60
+ 1. `operations`: Specifying this is optional. Here you can override default
56
61
  behavior by specifying your own mutations and queries for every GraphQL operation.
57
62
  Check available operations in this file [mutations](https://github.com/graphql-devise/graphql_devise/blob/b5985036e01ea064e43e457b4f0c8516f172471c/lib/graphql_devise/rails/routes.rb#L19)
58
63
  and [queries](https://github.com/graphql-devise/graphql_devise/blob/b5985036e01ea064e43e457b4f0c8516f172471c/lib/graphql_devise/rails/routes.rb#L41).
59
- All mutations and queries are build so you can extend default behavior just by extending
64
+ All mutations and queries are built so you can extend default behavior just by extending
60
65
  our default classes and yielding your customized code after calling `super`, example
61
66
  [here](https://github.com/graphql-devise/graphql_devise/blob/b5985036e01ea064e43e457b4f0c8516f172471c/spec/dummy/app/graphql/mutations/login.rb#L6).
62
67
  1. `authenticable_type`: By default, the gem will add an `authenticable` field to every mutation
@@ -82,8 +87,8 @@ The following is a list of the symbols you can provide to the `operations`, `ski
82
87
 
83
88
 
84
89
  ### Configuring Model
85
- Just like with Devise and DTA, you need to include a module in your authenticable model,
86
- so as for our example, your user model will have to look like this:
90
+ Just like with Devise and DTA, you need to include a module in your authenticatable model,
91
+ so with our example, your user model will have to look like this:
87
92
  ```ruby
88
93
  # app/models/user.rb
89
94
 
@@ -109,7 +114,7 @@ so if you want to change them, place yours on the same dir structure on your Rai
109
114
  1. `app/views/graphql_devise/mailer/reset_password_instructions.html.erb`
110
115
 
111
116
  The main reason for this difference is just to make it easier to have both Standard `Devise` and this gem running at the same time.
112
- Check [these files](app/views/graphql_devise/mailer) to see the available helper methods you can use in the views.
117
+ Check [these files](app/views/graphql_devise/mailer) to see the available helper methods you can use in your views.
113
118
 
114
119
  ### Authenticating Controller Actions
115
120
  Just like with Devise or DTA, you will need to authenticate users in your controllers.
@@ -147,7 +152,7 @@ the confirmation and reset password email urls. There is no limitation for makin
147
152
  requests using the `GET` method on the Rails side, but looks like there might be a limitation
148
153
  on the [Apollo Client](https://www.apollographql.com/docs/apollo-server/v1/requests/#get-requests).
149
154
 
150
- We will continue to build better docs for the gem after this first release, but on the mean time
155
+ We will continue to build better docs for the gem after this first release, but in the mean time
151
156
  you can use [our specs](https://github.com/graphql-devise/graphql_devise/tree/b5985036e01ea064e43e457b4f0c8516f172471c/spec/requests) to better understand how to use the gem.
152
157
  Also, the [dummy app](https://github.com/graphql-devise/graphql_devise/tree/b5985036e01ea064e43e457b4f0c8516f172471c/spec/dummy) used in our specs will give you
153
158
  a clear idea on how to configure the gem on your Rails application.
data/Rakefile CHANGED
@@ -20,6 +20,7 @@ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
20
20
  config.user = 'graphql-devise'
21
21
  config.project = 'graphql_devise'
22
22
  config.future_release = ENV['FUTURE_RELEASE']
23
+ config.add_issues_wo_labels = false
23
24
  end
24
25
 
25
26
  APP_RAKEFILE = File.expand_path('spec/dummy/Rakefile', __dir__)
@@ -5,49 +5,45 @@ module GraphqlDevise
5
5
  argument :password, String, required: true
6
6
  argument :password_confirmation, String, required: true
7
7
  argument :confirm_success_url, String, required: false
8
- argument :config_name, String, required: false
9
8
 
10
- def resolve(confirm_success_url: nil, config_name: nil, **attrs)
9
+ def resolve(confirm_success_url: nil, **attrs)
11
10
  resource = resource_class.new(provider: provider, **attrs)
11
+ raise_user_error(I18n.t('graphql_devise.resource_build_failed')) if resource.blank?
12
12
 
13
- if resource.present?
14
- resource.skip_confirmation_notification! if resource.respond_to?(:skip_confirmation_notification!)
13
+ redirect_url = confirm_success_url || DeviseTokenAuth.default_confirm_success_url
14
+ if confirmable_enabled? && redirect_url.blank?
15
+ raise_user_error(I18n.t('graphql_devise.registrations.missing_confirm_redirect_url'))
16
+ end
15
17
 
16
- if resource.save
17
- yield resource if block_given?
18
+ if blacklisted_redirect_url?(redirect_url)
19
+ raise_user_error(I18n.t('graphql_devise.registrations.redirect_url_not_allowed', redirect_url: redirect_url))
20
+ end
18
21
 
19
- if requires_confirmation?(resource)
20
- resource.send_confirmation_instructions(
21
- client_config: config_name,
22
- redirect_url: confirm_success_url,
23
- template_path: ['graphql_devise/mailer']
24
- )
25
- end
22
+ resource.skip_confirmation_notification! if resource.respond_to?(:skip_confirmation_notification!)
26
23
 
27
- set_auth_headers(resource) if resource.active_for_authentication?
24
+ if resource.save
25
+ yield resource if block_given?
28
26
 
29
- { authenticable: resource }
30
- else
31
- clean_up_passwords(resource)
32
- raise_user_error_list(
33
- I18n.t('graphql_devise.registration_failed'),
34
- errors: resource.errors.full_messages
27
+ unless resource.confirmed?
28
+ resource.send_confirmation_instructions(
29
+ redirect_url: confirm_success_url,
30
+ template_path: ['graphql_devise/mailer']
35
31
  )
36
32
  end
37
- else
38
- raise_user_error(I18n.t('graphql_devise.resource_build_failed'))
39
- end
40
- end
41
33
 
42
- protected
34
+ set_auth_headers(resource) if resource.active_for_authentication?
43
35
 
44
- def confirmable_enabled?(resource)
45
- resource.respond_to?(:confirmed_at)
36
+ { authenticable: resource }
37
+ else
38
+ clean_up_passwords(resource)
39
+ raise_user_error_list(
40
+ I18n.t('graphql_devise.registration_failed'),
41
+ errors: resource.errors.full_messages
42
+ )
43
+ end
46
44
  end
47
45
 
48
- def requires_confirmation?(resource)
49
- resource.active_for_authentication? || !resource.confirmed?
50
- end
46
+ private
51
47
 
52
48
  def provider
53
49
  :email
@@ -5,6 +5,9 @@ en:
5
5
  not_authenticated: "User is not logged in."
6
6
  user_not_found: "User was not found or was not logged in."
7
7
  invalid_resource: "Errors present in the resource."
8
+ registrations:
9
+ missing_confirm_redirect_url: "Missing 'confirm_success_url' parameter. Required when confirmable module is enabled."
10
+ redirect_url_not_allowed: "Redirect to '%{redirect_url}' not allowed."
8
11
  passwords:
9
12
  update_password_error: "Unable to update user password"
10
13
  missing_passwords: "You must fill out the fields labeled 'Password' and 'Password confirmation'."
@@ -47,6 +47,10 @@ module GraphqlDevise
47
47
  resource_class.devise_modules.include?(:confirmable)
48
48
  end
49
49
 
50
+ def blacklisted_redirect_url?(redirect_url)
51
+ DeviseTokenAuth.redirect_whitelist && !DeviseTokenAuth::Url.whitelisted?(redirect_url)
52
+ end
53
+
50
54
  def current_resource
51
55
  @current_resource ||= controller.send(:set_user_by_token, resource_name)
52
56
  end
@@ -1,3 +1,3 @@
1
1
  module GraphqlDevise
2
- VERSION = '0.4.0'.freeze
2
+ VERSION = '0.4.1'.freeze
3
3
  end
@@ -2,8 +2,7 @@ class Guest < ApplicationRecord
2
2
  devise :database_authenticatable,
3
3
  :registerable,
4
4
  :recoverable,
5
- :validatable,
6
- :confirmable
5
+ :validatable
7
6
 
8
7
  include GraphqlDevise::Concerns::Model
9
8
  end
@@ -13,7 +13,7 @@ Rails.application.routes.draw do
13
13
 
14
14
  mount_graphql_devise_for(
15
15
  'Guest',
16
- only: [:login, :logout],
16
+ only: [:login, :logout, :sign_up],
17
17
  at: '/api/v1/guest/graphql_auth'
18
18
  )
19
19
 
@@ -45513,3 +45513,3070 @@ Processing by GraphqlDevise::GraphqlController#auth as HTML
45513
45513
   (0.0ms) RELEASE SAVEPOINT active_record_1
45514
45514
  Completed 200 OK in 68ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 17555)
45515
45515
   (0.3ms) rollback transaction
45516
+  (2.1ms) SELECT sqlite_version(*)
45517
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
45518
+  (0.1ms) SELECT sqlite_version(*)
45519
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
45520
+  (0.1ms) begin transaction
45521
+  (0.1ms) rollback transaction
45522
+  (0.1ms) begin transaction
45523
+  (0.1ms) SAVEPOINT active_record_1
45524
+ 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]]
45525
+ 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"]]
45526
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45527
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500
45528
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45529
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"moses.hudson@schaefer.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
45530
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "moses.hudson@schaefer.net"], ["LIMIT", 1]]
45531
+  (0.1ms) SAVEPOINT active_record_1
45532
+ 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]]
45533
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45534
+  (0.1ms) SAVEPOINT active_record_1
45535
+ 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]]
45536
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45537
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45538
+ Completed 200 OK in 96ms (Views: 0.2ms | ActiveRecord: 0.8ms | Allocations: 18584)
45539
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45540
+  (0.3ms) rollback transaction
45541
+  (0.1ms) begin transaction
45542
+  (0.2ms) SAVEPOINT active_record_1
45543
+ 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]]
45544
+ 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"]]
45545
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45546
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500
45547
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45548
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"andrew.williamson@purdy.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
45549
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "andrew.williamson@purdy.info"], ["LIMIT", 1]]
45550
+ User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]]
45551
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45552
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 2044)
45553
+  (0.4ms) rollback transaction
45554
+  (0.0ms) begin transaction
45555
+  (0.1ms) SAVEPOINT active_record_1
45556
+ 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]]
45557
+ 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"]]
45558
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45559
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500
45560
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45561
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"maryalice@greenfelderankunding.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
45562
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "maryalice@greenfelderankunding.co"], ["LIMIT", 1]]
45563
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.2ms | Allocations: 1363)
45564
+  (0.4ms) rollback transaction
45565
+  (0.0ms) begin transaction
45566
+  (0.1ms) SAVEPOINT active_record_1
45567
+ 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]]
45568
+ 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"]]
45569
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45570
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500
45571
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45572
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"willis_hagenes@beier.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
45573
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "willis_hagenes@beier.co"], ["LIMIT", 1]]
45574
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)
45575
+  (0.3ms) rollback transaction
45576
+  (0.0ms) begin transaction
45577
+  (0.1ms) SAVEPOINT active_record_1
45578
+ 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]]
45579
+ 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]]
45580
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45581
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500
45582
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45583
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"nanci@dickens.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
45584
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "nanci@dickens.info"], ["LIMIT", 1]]
45585
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1359)
45586
+  (0.3ms) rollback transaction
45587
+  (0.1ms) begin transaction
45588
+  (0.1ms) SAVEPOINT active_record_1
45589
+ 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]]
45590
+ 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"]]
45591
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45592
+ Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500
45593
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45594
+ Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"ruell@hills.org\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"}
45595
+ Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "ruell@hills.org"], ["LIMIT", 1]]
45596
+  (0.2ms) SAVEPOINT active_record_1
45597
+ 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]]
45598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45599
+ Completed 200 OK in 67ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 2401)
45600
+  (0.4ms) rollback transaction
45601
+  (0.1ms) begin transaction
45602
+  (0.1ms) SAVEPOINT active_record_1
45603
+ 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]]
45604
+ 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"]]
45605
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45606
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500
45607
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45608
+ Parameters: {"query"=>" mutation {\n guestLogin(\n email: \"jackie@kunde.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n }\n }\n"}
45609
+ Guest Load (0.2ms) SELECT "guests".* FROM "guests" WHERE "guests"."email" = ? LIMIT ? [["email", "jackie@kunde.net"], ["LIMIT", 1]]
45610
+  (0.1ms) SAVEPOINT active_record_1
45611
+ 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]]
45612
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45613
+ Completed 200 OK in 67ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2320)
45614
+  (0.4ms) rollback transaction
45615
+  (0.1ms) begin transaction
45616
+  (0.1ms) SAVEPOINT active_record_1
45617
+ 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]]
45618
+ 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"]]
45619
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45620
+  (0.1ms) SAVEPOINT active_record_1
45621
+ 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]]
45622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45623
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500
45624
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45625
+ Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"}
45626
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "markita@lind.org"], ["LIMIT", 1]]
45627
+  (0.1ms) SAVEPOINT active_record_1
45628
+ 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]]
45629
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45630
+ Completed 200 OK in 68ms (Views: 0.4ms | ActiveRecord: 0.6ms | Allocations: 1896)
45631
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45632
+  (0.5ms) rollback transaction
45633
+  (0.1ms) begin transaction
45634
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500
45635
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45636
+ Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"}
45637
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 957)
45638
+  (0.2ms) SAVEPOINT active_record_1
45639
+ 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]]
45640
+ 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"]]
45641
+  (0.2ms) RELEASE SAVEPOINT active_record_1
45642
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45643
+  (0.7ms) rollback transaction
45644
+  (0.1ms) begin transaction
45645
+  (0.1ms) SAVEPOINT active_record_1
45646
+ 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]]
45647
+ 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"]]
45648
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45649
+  (0.1ms) SAVEPOINT active_record_1
45650
+ 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]]
45651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45652
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500
45653
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45654
+ Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"}
45655
+ Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "glendora@gutkowski.com"], ["LIMIT", 1]]
45656
+  (0.1ms) SAVEPOINT active_record_1
45657
+ 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]]
45658
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45659
+ Completed 200 OK in 55ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 1825)
45660
+ Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45661
+  (0.3ms) rollback transaction
45662
+  (0.1ms) begin transaction
45663
+  (0.1ms) SAVEPOINT active_record_1
45664
+ 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]]
45665
+ 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"]]
45666
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45667
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:54 -0500
45668
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45669
+ 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"}
45670
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "sean@hermann.org"], ["provider", "email"], ["LIMIT", 1]]
45671
+ 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]]
45672
+  (0.0ms) SAVEPOINT active_record_1
45673
+ 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]]
45674
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45675
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb
45676
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 2.2ms | Allocations: 1308)
45677
+ Devise::Mailer#reset_password_instructions: processed outbound mail in 129.5ms
45678
+ Delivered mail 5da49b7b36fe3_8693ff034832020864ec@Marios-MacBook-Pro.local.mail (6.0ms)
45679
+ Date: Mon, 14 Oct 2019 10:59:55 -0500
45680
+ From: please-change-me-at-config-initializers-devise@example.com
45681
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
45682
+ To: sean@hermann.org
45683
+ Message-ID: <5da49b7b36fe3_8693ff034832020864ec@Marios-MacBook-Pro.local.mail>
45684
+ Subject: Reset password instructions
45685
+ Mime-Version: 1.0
45686
+ Content-Type: text/html;
45687
+ charset=UTF-8
45688
+ Content-Transfer-Encoding: 7bit
45689
+ email: sean@hermann.org
45690
+ provider: email
45691
+ redirect-url: http://legros.org/andrea_conroy
45692
+ client-config: default
45693
+
45694
+ <p>Hello sean@hermann.org!</p>
45695
+
45696
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.request_reset_link_msg">Request Reset Link Msg</span></p>
45697
+
45698
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=http%3A%2F%2Flegros.org%2Fandrea_conroy&amp;variables%5Btoken%5D=P2r_kRxVy1St9F_puvy1"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.password_change_link">Password Change Link</span></a></p>
45699
+
45700
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.ignore_mail_msg">Ignore Mail Msg</span></p>
45701
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.no_changes_msg">No Changes Msg</span></p>
45702
+
45703
+ Completed 200 OK in 237ms (Views: 0.1ms | ActiveRecord: 0.7ms | Allocations: 67753)
45704
+ 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
45705
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45706
+ Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://legros.org/andrea_conroy", "token"=>"P2r_kRxVy1St9F_puvy1"}}
45707
+ 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]]
45708
+  (0.1ms) SAVEPOINT active_record_1
45709
+ 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]]
45710
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45711
+ 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
45712
+ Completed 302 Found in 52ms (ActiveRecord: 0.3ms | Allocations: 2145)
45713
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45714
+  (0.3ms) rollback transaction
45715
+  (0.1ms) begin transaction
45716
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500
45717
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45718
+ 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"}
45719
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]]
45720
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1205)
45721
+  (0.0ms) rollback transaction
45722
+  (0.0ms) begin transaction
45723
+  (0.1ms) SELECT COUNT(*) FROM "users"
45724
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500
45725
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45726
+ 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"}
45727
+  (0.1ms) SAVEPOINT active_record_1
45728
+ 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]]
45729
+ 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"]]
45730
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45731
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb
45732
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.9ms | Allocations: 581)
45733
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms
45734
+ Delivered mail 5da49b7b4b1eb_8693ff03483202086524@Marios-MacBook-Pro.local.mail (1.2ms)
45735
+ Date: Mon, 14 Oct 2019 10:59:55 -0500
45736
+ From: please-change-me-at-config-initializers-devise@example.com
45737
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
45738
+ To: kaylene@durganschulist.com
45739
+ Message-ID: <5da49b7b4b1eb_8693ff03483202086524@Marios-MacBook-Pro.local.mail>
45740
+ Subject: Confirmation instructions
45741
+ Mime-Version: 1.0
45742
+ Content-Type: text/html;
45743
+ charset=UTF-8
45744
+ Content-Transfer-Encoding: 7bit
45745
+ client-config: default
45746
+ redirect-url: http://collier.co/tyisha
45747
+
45748
+ <p>Welcome kaylene@durganschulist.com!</p>
45749
+
45750
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_link_msg">Confirm Link Msg</span> </p>
45751
+
45752
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=http%3A%2F%2Fcollier.co%2Ftyisha&amp;variables%5Btoken%5D=zc_sQamxMjMsWtf6yszr"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_account_link">Confirm Account Link</span></a></p>
45753
+
45754
+ Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5463)
45755
+  (0.1ms) SELECT COUNT(*) FROM "users"
45756
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]]
45757
+ 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
45758
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45759
+ Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://collier.co/tyisha", "token"=>"zc_sQamxMjMsWtf6yszr"}}
45760
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "zc_sQamxMjMsWtf6yszr"], ["LIMIT", 1]]
45761
+  (0.1ms) SAVEPOINT active_record_1
45762
+ 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]]
45763
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45764
+ Redirected to http://collier.co/tyisha?account_confirmation_success=true
45765
+ Completed 302 Found in 8ms (ActiveRecord: 0.5ms | Allocations: 2180)
45766
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45767
+  (0.8ms) rollback transaction
45768
+  (0.0ms) begin transaction
45769
+  (0.1ms) SELECT COUNT(*) FROM "users"
45770
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500
45771
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45772
+ 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"}
45773
+  (0.1ms) SAVEPOINT active_record_1
45774
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]
45775
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
45776
+ Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.2ms | Allocations: 2713)
45777
+  (0.2ms) SELECT COUNT(*) FROM "users"
45778
+  (0.1ms) rollback transaction
45779
+  (0.1ms) begin transaction
45780
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500
45781
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45782
+ 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"}
45783
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 818)
45784
+  (0.1ms) rollback transaction
45785
+  (0.1ms) begin transaction
45786
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500
45787
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45788
+ 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"}
45789
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 818)
45790
+  (0.1ms) rollback transaction
45791
+  (0.1ms) begin transaction
45792
+  (0.1ms) SAVEPOINT active_record_1
45793
+ 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]]
45794
+ 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"]]
45795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45796
+  (0.1ms) SAVEPOINT active_record_1
45797
+ 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]]
45798
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45799
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500
45800
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45801
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
45802
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lacresha@harber.org"], ["LIMIT", 1]]
45803
+  (0.1ms) SAVEPOINT active_record_1
45804
+ 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]]
45805
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45806
+  (0.1ms) SAVEPOINT active_record_1
45807
+ 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]]
45808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45809
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45810
+ Completed 200 OK in 61ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2882)
45811
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45812
+  (0.2ms) rollback transaction
45813
+  (0.0ms) begin transaction
45814
+  (0.1ms) SAVEPOINT active_record_1
45815
+ 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]]
45816
+ 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"]]
45817
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45818
+  (0.1ms) SAVEPOINT active_record_1
45819
+ 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]]
45820
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45821
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500
45822
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45823
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
45824
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "nathan@rolfson.io"], ["LIMIT", 1]]
45825
+  (0.2ms) SAVEPOINT active_record_1
45826
+ 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]]
45827
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45828
+  (0.0ms) SAVEPOINT active_record_1
45829
+ 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]]
45830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45831
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45832
+ Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 2874)
45833
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45834
+  (0.4ms) rollback transaction
45835
+  (0.1ms) begin transaction
45836
+  (0.1ms) SAVEPOINT active_record_1
45837
+ 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]]
45838
+ 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"]]
45839
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45840
+  (0.1ms) SAVEPOINT active_record_1
45841
+ 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]]
45842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45843
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500
45844
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45845
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
45846
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lenard_sipes@friesen.co"], ["LIMIT", 1]]
45847
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45848
+ Completed 200 OK in 54ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2358)
45849
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45850
+  (0.3ms) rollback transaction
45851
+  (0.0ms) begin transaction
45852
+  (0.1ms) SAVEPOINT active_record_1
45853
+ 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]]
45854
+ 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"]]
45855
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45856
+  (0.1ms) SAVEPOINT active_record_1
45857
+ 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]]
45858
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45859
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500
45860
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45861
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
45862
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "rob@waelchi.io"], ["LIMIT", 1]]
45863
+  (0.1ms) SAVEPOINT active_record_1
45864
+ 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]]
45865
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45866
+  (0.0ms) SAVEPOINT active_record_1
45867
+ 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]]
45868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45869
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45870
+ Completed 200 OK in 53ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 2874)
45871
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45872
+  (0.7ms) rollback transaction
45873
+  (0.1ms) begin transaction
45874
+  (0.1ms) SAVEPOINT active_record_1
45875
+ 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]]
45876
+ 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"]]
45877
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45878
+  (0.1ms) SAVEPOINT active_record_1
45879
+ 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]]
45880
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45881
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:55 -0500
45882
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45883
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
45884
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "hosea.sipes@hudson.name"], ["LIMIT", 1]]
45885
+  (0.1ms) SAVEPOINT active_record_1
45886
+ 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]]
45887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45888
+  (0.0ms) SAVEPOINT active_record_1
45889
+ 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]]
45890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45891
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45892
+ Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2874)
45893
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45894
+  (0.3ms) rollback transaction
45895
+  (0.0ms) begin transaction
45896
+  (0.1ms) SAVEPOINT active_record_1
45897
+ 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]]
45898
+ 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"]]
45899
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45900
+  (0.1ms) SAVEPOINT active_record_1
45901
+ 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]]
45902
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45903
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:56 -0500
45904
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45905
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
45906
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "stefani@labadietreutel.com"], ["LIMIT", 1]]
45907
+  (0.1ms) SAVEPOINT active_record_1
45908
+ 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]]
45909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45910
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45911
+ Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2643)
45912
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45913
+  (0.7ms) rollback transaction
45914
+  (0.0ms) begin transaction
45915
+  (0.0ms) SAVEPOINT active_record_1
45916
+ 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]]
45917
+ 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"]]
45918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45919
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:56 -0500
45920
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45921
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
45922
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1164)
45923
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45924
+  (0.3ms) rollback transaction
45925
+  (0.0ms) begin transaction
45926
+  (0.1ms) SAVEPOINT active_record_1
45927
+ 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]]
45928
+ 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"]]
45929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45930
+ 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]]
45931
+  (0.0ms) SAVEPOINT active_record_1
45932
+ 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]]
45933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45934
+ 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
45935
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45936
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"mb1PtBNzyHyzJP1ApzX1\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"}
45937
+ 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]]
45938
+  (0.1ms) SAVEPOINT active_record_1
45939
+ 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]]
45940
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45941
+  (0.1ms) SAVEPOINT active_record_1
45942
+ 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]]
45943
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45944
+ Completed 200 OK in 109ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2660)
45945
+  (0.4ms) rollback transaction
45946
+  (0.0ms) begin transaction
45947
+  (0.1ms) SAVEPOINT active_record_1
45948
+ 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]]
45949
+ 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"]]
45950
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45951
+ 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]]
45952
+  (0.1ms) SAVEPOINT active_record_1
45953
+ 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]]
45954
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45955
+ 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
45956
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45957
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"VovmxSgBfV-ocUXPuCXX\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
45958
+ 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]]
45959
+  (0.1ms) SAVEPOINT active_record_1
45960
+ 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]]
45961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45962
+ 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
45963
+ Completed 302 Found in 53ms (ActiveRecord: 0.3ms | Allocations: 1916)
45964
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45965
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
45966
+  (0.2ms) rollback transaction
45967
+  (0.0ms) begin transaction
45968
+  (0.1ms) SAVEPOINT active_record_1
45969
+ 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]]
45970
+ 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"]]
45971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45972
+ 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]]
45973
+  (0.0ms) SAVEPOINT active_record_1
45974
+ 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]]
45975
+  (0.1ms) RELEASE SAVEPOINT active_record_1
45976
+ 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
45977
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45978
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"kwQpFGJqq1DTSTXhT-cM\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
45979
+ 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]]
45980
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1266)
45981
+  (0.4ms) rollback transaction
45982
+  (0.1ms) begin transaction
45983
+  (0.1ms) SAVEPOINT active_record_1
45984
+ 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]]
45985
+ 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"]]
45986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45987
+ 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]]
45988
+  (0.0ms) SAVEPOINT active_record_1
45989
+ 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]]
45990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
45991
+ 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
45992
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
45993
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"KUUkUGkfC2nURPeAZ3DDinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
45994
+ 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]]
45995
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)
45996
+  (0.3ms) rollback transaction
45997
+  (0.1ms) begin transaction
45998
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:56 -0500
45999
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46000
+ Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
46001
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 722)
46002
+  (0.1ms) rollback transaction
46003
+  (0.0ms) begin transaction
46004
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 10:59:56 -0500
46005
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46006
+ Parameters: {"query"=>" query {\n guestCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
46007
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)
46008
+  (0.0ms) rollback transaction
46009
+  (0.0ms) begin transaction
46010
+  (0.1ms) SAVEPOINT active_record_1
46011
+ 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]]
46012
+ 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"]]
46013
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46014
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb
46015
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 1.1ms | Allocations: 408)
46016
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 2.4ms
46017
+ Delivered mail 5da49b7c57cf3_8693ff0348320208669c@Marios-MacBook-Pro.local.mail (1.4ms)
46018
+ Date: Mon, 14 Oct 2019 10:59:56 -0500
46019
+ From: please-change-me-at-config-initializers-devise@example.com
46020
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
46021
+ To: lyda@pagacohara.org
46022
+ Message-ID: <5da49b7c57cf3_8693ff0348320208669c@Marios-MacBook-Pro.local.mail>
46023
+ Subject: Confirmation instructions
46024
+ Mime-Version: 1.0
46025
+ Content-Type: text/html;
46026
+ charset=UTF-8
46027
+ Content-Transfer-Encoding: 7bit
46028
+ client-config: default
46029
+ redirect-url:
46030
+
46031
+ <p>Welcome lyda@pagacohara.org!</p>
46032
+
46033
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_link_msg">Confirm Link Msg</span> </p>
46034
+
46035
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=&amp;variables%5Btoken%5D=FvoJxr8dZzVDWxGq71do"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_account_link">Confirm Account Link</span></a></p>
46036
+
46037
+ 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
46038
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46039
+ Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"FvoJxr8dZzVDWxGq71do\"\n redirectUrl: \"http://gusikowski.co/royce\"\n ) {\n email\n name\n }\n }\n"}
46040
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "FvoJxr8dZzVDWxGq71do"], ["LIMIT", 1]]
46041
+  (0.1ms) SAVEPOINT active_record_1
46042
+ 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]]
46043
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46044
+ Redirected to http://gusikowski.co/royce?account_confirmation_success=true
46045
+ Completed 302 Found in 5ms (ActiveRecord: 0.5ms | Allocations: 1789)
46046
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46047
+  (0.4ms) rollback transaction
46048
+  (0.1ms) begin transaction
46049
+  (0.1ms) SAVEPOINT active_record_1
46050
+ 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]]
46051
+ 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"]]
46052
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46053
+ 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
46054
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46055
+ Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"zJ_1EzUQfz1K6qPJ4BP--invalid\"\n redirectUrl: \"http://quigley.info/hector_fahey\"\n ) {\n email\n name\n }\n }\n"}
46056
+ 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]]
46057
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "4c3d93f35fad3aee2c6f4ca2412e3e3bd2421aa7e31e05554e9cf4f2f2cf137c"], ["LIMIT", 1]]
46058
+ Completed 200 OK in 99ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2009)
46059
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46060
+  (0.6ms) rollback transaction
46061
+  (0.1ms) begin transaction
46062
+  (0.0ms) SAVEPOINT active_record_1
46063
+ 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]]
46064
+ 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"]]
46065
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46066
+  (0.1ms) SAVEPOINT active_record_1
46067
+ 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]]
46068
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46069
+ Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-14 10:59:56 -0500
46070
+ Processing by Api::V1::GraphqlController#graphql as HTML
46071
+ Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"}
46072
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "kirby@kulatehr.org"], ["LIMIT", 1]]
46073
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46074
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46075
+ Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 9749)
46076
+  (0.3ms) rollback transaction
46077
+  (0.0ms) begin transaction
46078
+  (0.0ms) SAVEPOINT active_record_1
46079
+ 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]]
46080
+ 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"]]
46081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46082
+ Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-14 10:59:56 -0500
46083
+ Processing by Api::V1::GraphqlController#graphql as HTML
46084
+ Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"}
46085
+ Filter chain halted as :authenticate_user! rendered or redirected
46086
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)
46087
+  (0.3ms) rollback transaction
46088
+  (0.8ms) SELECT sqlite_version(*)
46089
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
46090
+  (0.0ms) SELECT sqlite_version(*)
46091
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
46092
+  (0.1ms) begin transaction
46093
+  (0.1ms) rollback transaction
46094
+  (0.0ms) begin transaction
46095
+  (0.1ms) SAVEPOINT active_record_1
46096
+ 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]]
46097
+ 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"]]
46098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46099
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500
46100
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46101
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"bernita.block@heel.info\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
46102
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bernita.block@heel.info"], ["LIMIT", 1]]
46103
+  (0.1ms) SAVEPOINT active_record_1
46104
+ 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]]
46105
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46106
+  (0.0ms) SAVEPOINT active_record_1
46107
+ 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]]
46108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46109
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46110
+ Completed 200 OK in 66ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 18579)
46111
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46112
+  (0.7ms) rollback transaction
46113
+  (0.1ms) begin transaction
46114
+  (0.1ms) SAVEPOINT active_record_1
46115
+ 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]]
46116
+ 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"]]
46117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46118
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500
46119
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46120
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"herschel@legros.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
46121
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "herschel@legros.net"], ["LIMIT", 1]]
46122
+ User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]]
46123
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46124
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 2042)
46125
+  (0.3ms) rollback transaction
46126
+  (0.1ms) begin transaction
46127
+  (0.1ms) SAVEPOINT active_record_1
46128
+ 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]]
46129
+ 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"]]
46130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46131
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500
46132
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46133
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"aaron.smith@macejkovic.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
46134
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "aaron.smith@macejkovic.biz"], ["LIMIT", 1]]
46135
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1363)
46136
+  (0.3ms) rollback transaction
46137
+  (0.0ms) begin transaction
46138
+  (0.1ms) SAVEPOINT active_record_1
46139
+ 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]]
46140
+ 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"]]
46141
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46142
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500
46143
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46144
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"miles@lang.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
46145
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "miles@lang.com"], ["LIMIT", 1]]
46146
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)
46147
+  (0.4ms) rollback transaction
46148
+  (0.0ms) begin transaction
46149
+  (0.1ms) SAVEPOINT active_record_1
46150
+ 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]]
46151
+ 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]]
46152
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46153
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500
46154
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46155
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"silva@bednar.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
46156
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "silva@bednar.name"], ["LIMIT", 1]]
46157
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1362)
46158
+  (0.3ms) rollback transaction
46159
+  (0.0ms) begin transaction
46160
+  (0.1ms) SAVEPOINT active_record_1
46161
+ 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]]
46162
+ 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"]]
46163
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46164
+ Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500
46165
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46166
+ Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"caria@flatleybeahan.biz\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"}
46167
+ Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "caria@flatleybeahan.biz"], ["LIMIT", 1]]
46168
+  (0.1ms) SAVEPOINT active_record_1
46169
+ 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]]
46170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46171
+ Completed 200 OK in 62ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2402)
46172
+  (0.5ms) rollback transaction
46173
+  (0.0ms) begin transaction
46174
+  (0.1ms) SAVEPOINT active_record_1
46175
+ 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]]
46176
+ 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"]]
46177
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46178
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500
46179
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46180
+ Parameters: {"query"=>" mutation {\n guestLogin(\n email: \"brock.kihn@ullrich.info\",\n password: \"12345678\"\n ) {\n authenticable { email }\n }\n }\n"}
46181
+ Guest Load (0.2ms) SELECT "guests".* FROM "guests" WHERE "guests"."email" = ? LIMIT ? [["email", "brock.kihn@ullrich.info"], ["LIMIT", 1]]
46182
+  (0.1ms) SAVEPOINT active_record_1
46183
+ 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]]
46184
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46185
+ Completed 200 OK in 57ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2320)
46186
+  (0.4ms) rollback transaction
46187
+  (0.0ms) begin transaction
46188
+  (0.0ms) SAVEPOINT active_record_1
46189
+ 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]]
46190
+ 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"]]
46191
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46192
+  (0.1ms) SAVEPOINT active_record_1
46193
+ 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]]
46194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46195
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500
46196
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46197
+ Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"}
46198
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "angie@murazikhamill.info"], ["LIMIT", 1]]
46199
+  (0.1ms) SAVEPOINT active_record_1
46200
+ 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]]
46201
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46202
+ Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1898)
46203
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46204
+  (0.7ms) rollback transaction
46205
+  (0.1ms) begin transaction
46206
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500
46207
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46208
+ Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"}
46209
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 957)
46210
+  (0.1ms) SAVEPOINT active_record_1
46211
+ 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]]
46212
+ 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"]]
46213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46214
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46215
+  (0.3ms) rollback transaction
46216
+  (0.1ms) begin transaction
46217
+  (0.1ms) SAVEPOINT active_record_1
46218
+ 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]]
46219
+ 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"]]
46220
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46221
+  (0.1ms) SAVEPOINT active_record_1
46222
+ 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]]
46223
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46224
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500
46225
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46226
+ Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"}
46227
+ Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "dell.brown@leschanderson.com"], ["LIMIT", 1]]
46228
+  (0.0ms) SAVEPOINT active_record_1
46229
+ 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]]
46230
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46231
+ Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1827)
46232
+ Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46233
+  (0.5ms) rollback transaction
46234
+  (0.0ms) begin transaction
46235
+  (0.1ms) SAVEPOINT active_record_1
46236
+ 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]]
46237
+ 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"]]
46238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46239
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:19 -0500
46240
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46241
+ 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"}
46242
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "marshall@gislason.io"], ["provider", "email"], ["LIMIT", 1]]
46243
+ 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]]
46244
+  (0.0ms) SAVEPOINT active_record_1
46245
+ 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]]
46246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46247
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb
46248
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.6ms | Allocations: 1308)
46249
+ Devise::Mailer#reset_password_instructions: processed outbound mail in 115.6ms
46250
+ Delivered mail 5da49bd021711_9123fcbb1c2ffd05934@Marios-MacBook-Pro.local.mail (4.1ms)
46251
+ Date: Mon, 14 Oct 2019 11:01:20 -0500
46252
+ From: please-change-me-at-config-initializers-devise@example.com
46253
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
46254
+ To: marshall@gislason.io
46255
+ Message-ID: <5da49bd021711_9123fcbb1c2ffd05934@Marios-MacBook-Pro.local.mail>
46256
+ Subject: Reset password instructions
46257
+ Mime-Version: 1.0
46258
+ Content-Type: text/html;
46259
+ charset=UTF-8
46260
+ Content-Transfer-Encoding: 7bit
46261
+ email: marshall@gislason.io
46262
+ provider: email
46263
+ redirect-url: http://bernierhilll.io/rubin
46264
+ client-config: default
46265
+
46266
+ <p>Hello marshall@gislason.io!</p>
46267
+
46268
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.request_reset_link_msg">Request Reset Link Msg</span></p>
46269
+
46270
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=http%3A%2F%2Fbernierhilll.io%2Frubin&amp;variables%5Btoken%5D=4C5Re6tsTCyTrJzEJEFx"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.password_change_link">Password Change Link</span></a></p>
46271
+
46272
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.ignore_mail_msg">Ignore Mail Msg</span></p>
46273
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.no_changes_msg">No Changes Msg</span></p>
46274
+
46275
+ Completed 200 OK in 209ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 67758)
46276
+ 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
46277
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46278
+ Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://bernierhilll.io/rubin", "token"=>"4C5Re6tsTCyTrJzEJEFx"}}
46279
+ 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]]
46280
+  (0.0ms) SAVEPOINT active_record_1
46281
+ 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]]
46282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46283
+ 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
46284
+ Completed 302 Found in 46ms (ActiveRecord: 0.2ms | Allocations: 2145)
46285
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46286
+  (0.6ms) rollback transaction
46287
+  (0.1ms) begin transaction
46288
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500
46289
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46290
+ 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"}
46291
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]]
46292
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1205)
46293
+  (0.0ms) rollback transaction
46294
+  (0.0ms) begin transaction
46295
+  (0.1ms) SELECT COUNT(*) FROM "users"
46296
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500
46297
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46298
+ 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"}
46299
+  (0.1ms) SAVEPOINT active_record_1
46300
+ 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]]
46301
+ 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"]]
46302
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46303
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb
46304
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.8ms | Allocations: 581)
46305
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 2.1ms
46306
+ Delivered mail 5da49bd031e7b_9123fcbb1c2ffd059457@Marios-MacBook-Pro.local.mail (1.1ms)
46307
+ Date: Mon, 14 Oct 2019 11:01:20 -0500
46308
+ From: please-change-me-at-config-initializers-devise@example.com
46309
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
46310
+ To: silva.johnston@bednar.com
46311
+ Message-ID: <5da49bd031e7b_9123fcbb1c2ffd059457@Marios-MacBook-Pro.local.mail>
46312
+ Subject: Confirmation instructions
46313
+ Mime-Version: 1.0
46314
+ Content-Type: text/html;
46315
+ charset=UTF-8
46316
+ Content-Transfer-Encoding: 7bit
46317
+ client-config: default
46318
+ redirect-url: http://haley.name/michael
46319
+
46320
+ <p>Welcome silva.johnston@bednar.com!</p>
46321
+
46322
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_link_msg">Confirm Link Msg</span> </p>
46323
+
46324
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=http%3A%2F%2Fhaley.name%2Fmichael&amp;variables%5Btoken%5D=Gbab1NttxFYxv3NE-uDP"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_account_link">Confirm Account Link</span></a></p>
46325
+
46326
+ Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5462)
46327
+  (0.1ms) SELECT COUNT(*) FROM "users"
46328
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]]
46329
+ 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
46330
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46331
+ Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://haley.name/michael", "token"=>"Gbab1NttxFYxv3NE-uDP"}}
46332
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "Gbab1NttxFYxv3NE-uDP"], ["LIMIT", 1]]
46333
+  (0.1ms) SAVEPOINT active_record_1
46334
+ 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]]
46335
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46336
+ Redirected to http://haley.name/michael?account_confirmation_success=true
46337
+ Completed 302 Found in 6ms (ActiveRecord: 0.4ms | Allocations: 2180)
46338
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46339
+  (0.3ms) rollback transaction
46340
+  (0.0ms) begin transaction
46341
+  (0.1ms) SELECT COUNT(*) FROM "users"
46342
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500
46343
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46344
+ 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"}
46345
+  (0.1ms) SAVEPOINT active_record_1
46346
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]
46347
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
46348
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2713)
46349
+  (0.1ms) SELECT COUNT(*) FROM "users"
46350
+  (0.0ms) rollback transaction
46351
+  (0.0ms) begin transaction
46352
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500
46353
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46354
+ 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"}
46355
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 818)
46356
+  (0.0ms) rollback transaction
46357
+  (0.0ms) begin transaction
46358
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500
46359
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46360
+ 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"}
46361
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 818)
46362
+  (0.0ms) rollback transaction
46363
+  (0.0ms) begin transaction
46364
+  (0.1ms) SAVEPOINT active_record_1
46365
+ 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]]
46366
+ 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"]]
46367
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46368
+  (0.1ms) SAVEPOINT active_record_1
46369
+ 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]]
46370
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46371
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500
46372
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46373
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
46374
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "daisy@olson.org"], ["LIMIT", 1]]
46375
+  (0.1ms) SAVEPOINT active_record_1
46376
+ 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]]
46377
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46378
+  (0.0ms) SAVEPOINT active_record_1
46379
+ 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]]
46380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46381
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46382
+  (0.0ms) SAVEPOINT active_record_1
46383
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
46384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46385
+ Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 1.0ms | Allocations: 3861)
46386
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46387
+  (0.6ms) rollback transaction
46388
+  (0.1ms) begin transaction
46389
+  (0.1ms) SAVEPOINT active_record_1
46390
+ 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]]
46391
+ 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"]]
46392
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46393
+  (0.1ms) SAVEPOINT active_record_1
46394
+ 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]]
46395
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46396
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500
46397
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46398
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
46399
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "earnest@legros.biz"], ["LIMIT", 1]]
46400
+  (0.1ms) SAVEPOINT active_record_1
46401
+ 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]]
46402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46403
+  (0.0ms) SAVEPOINT active_record_1
46404
+ 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]]
46405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46406
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46407
+  (0.0ms) SAVEPOINT active_record_1
46408
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
46409
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46410
+ Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 3773)
46411
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46412
+  (0.3ms) rollback transaction
46413
+  (0.0ms) begin transaction
46414
+  (0.1ms) SAVEPOINT active_record_1
46415
+ 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]]
46416
+ 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"]]
46417
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46418
+  (0.1ms) SAVEPOINT active_record_1
46419
+ 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]]
46420
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46421
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500
46422
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46423
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
46424
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "irwin.deckow@bins.io"], ["LIMIT", 1]]
46425
+  (0.0ms) SAVEPOINT active_record_1
46426
+ 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]]
46427
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46428
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46429
+  (0.0ms) SAVEPOINT active_record_1
46430
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
46431
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46432
+ Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 3523)
46433
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46434
+  (0.3ms) rollback transaction
46435
+  (0.1ms) begin transaction
46436
+  (0.0ms) SAVEPOINT active_record_1
46437
+ 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]]
46438
+ 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"]]
46439
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46440
+  (0.1ms) SAVEPOINT active_record_1
46441
+ 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]]
46442
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46443
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500
46444
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46445
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
46446
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lenard.grimes@gerlach.net"], ["LIMIT", 1]]
46447
+  (0.2ms) SAVEPOINT active_record_1
46448
+ 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]]
46449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46450
+  (0.0ms) SAVEPOINT active_record_1
46451
+ 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]]
46452
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46453
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46454
+  (0.0ms) SAVEPOINT active_record_1
46455
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
46456
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46457
+ Completed 200 OK in 52ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 3778)
46458
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46459
+  (0.8ms) rollback transaction
46460
+  (0.1ms) begin transaction
46461
+  (0.0ms) SAVEPOINT active_record_1
46462
+ 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]]
46463
+ 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"]]
46464
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46465
+  (0.1ms) SAVEPOINT active_record_1
46466
+ 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]]
46467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46468
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500
46469
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46470
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
46471
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "marc.grant@cronin.biz"], ["LIMIT", 1]]
46472
+  (0.1ms) SAVEPOINT active_record_1
46473
+ 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]]
46474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46475
+  (0.0ms) SAVEPOINT active_record_1
46476
+ 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]]
46477
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46478
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46479
+  (0.0ms) SAVEPOINT active_record_1
46480
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
46481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46482
+ Completed 200 OK in 53ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 3773)
46483
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46484
+  (0.6ms) rollback transaction
46485
+  (0.1ms) begin transaction
46486
+  (0.1ms) SAVEPOINT active_record_1
46487
+ 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]]
46488
+ 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"]]
46489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46490
+  (0.1ms) SAVEPOINT active_record_1
46491
+ 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]]
46492
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46493
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500
46494
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46495
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
46496
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "giovanni_von@koeppmarvin.info"], ["LIMIT", 1]]
46497
+  (0.1ms) SAVEPOINT active_record_1
46498
+ 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]]
46499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46500
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46501
+  (0.0ms) SAVEPOINT active_record_1
46502
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
46503
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46504
+ Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 3528)
46505
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46506
+  (0.8ms) rollback transaction
46507
+  (0.1ms) begin transaction
46508
+  (0.0ms) SAVEPOINT active_record_1
46509
+ 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]]
46510
+ 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"]]
46511
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46512
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:20 -0500
46513
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46514
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
46515
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1164)
46516
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46517
+  (0.3ms) rollback transaction
46518
+  (0.0ms) begin transaction
46519
+  (0.1ms) SAVEPOINT active_record_1
46520
+ 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]]
46521
+ 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"]]
46522
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46523
+ 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]]
46524
+  (0.1ms) SAVEPOINT active_record_1
46525
+ 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]]
46526
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46527
+ 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
46528
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46529
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"H_SVyWkLxzGjNynUQTBU\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"}
46530
+ 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]]
46531
+  (0.1ms) SAVEPOINT active_record_1
46532
+ 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]]
46533
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46534
+  (0.1ms) SAVEPOINT active_record_1
46535
+ 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]]
46536
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46537
+ Completed 200 OK in 106ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2657)
46538
+  (0.5ms) rollback transaction
46539
+  (0.0ms) begin transaction
46540
+  (0.0ms) SAVEPOINT active_record_1
46541
+ 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]]
46542
+ 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"]]
46543
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46544
+ 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]]
46545
+  (0.1ms) SAVEPOINT active_record_1
46546
+ 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]]
46547
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46548
+ 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
46549
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46550
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"yKTBYjyBt4GshJxKUsa9\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
46551
+ 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]]
46552
+  (0.1ms) SAVEPOINT active_record_1
46553
+ 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]]
46554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46555
+ 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
46556
+ Completed 302 Found in 54ms (ActiveRecord: 0.3ms | Allocations: 1916)
46557
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46558
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46559
+  (0.7ms) rollback transaction
46560
+  (0.1ms) begin transaction
46561
+  (0.0ms) SAVEPOINT active_record_1
46562
+ 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]]
46563
+ 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"]]
46564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46565
+ 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]]
46566
+  (0.1ms) SAVEPOINT active_record_1
46567
+ 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]]
46568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46569
+ 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
46570
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46571
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"s3jJx47Y9tC7dxaZb1yJ\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
46572
+ 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]]
46573
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.2ms | Allocations: 1266)
46574
+  (0.4ms) rollback transaction
46575
+  (0.1ms) begin transaction
46576
+  (0.1ms) SAVEPOINT active_record_1
46577
+ 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]]
46578
+ 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"]]
46579
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46580
+ 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]]
46581
+  (0.1ms) SAVEPOINT active_record_1
46582
+ 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]]
46583
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46584
+ 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
46585
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46586
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"AAJm8sVRrZyeYc8qXisiinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
46587
+ 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]]
46588
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)
46589
+  (0.3ms) rollback transaction
46590
+  (0.0ms) begin transaction
46591
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:21 -0500
46592
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46593
+ Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
46594
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)
46595
+  (0.0ms) rollback transaction
46596
+  (0.1ms) begin transaction
46597
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:01:21 -0500
46598
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46599
+ Parameters: {"query"=>" query {\n guestCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
46600
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 722)
46601
+  (0.1ms) rollback transaction
46602
+  (0.0ms) begin transaction
46603
+  (0.1ms) SAVEPOINT active_record_1
46604
+ 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]]
46605
+ 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"]]
46606
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46607
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb
46608
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.5ms | Allocations: 408)
46609
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 1.6ms
46610
+ Delivered mail 5da49bd13b961_9123fcbb1c2ffd059553@Marios-MacBook-Pro.local.mail (1.4ms)
46611
+ Date: Mon, 14 Oct 2019 11:01:21 -0500
46612
+ From: please-change-me-at-config-initializers-devise@example.com
46613
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
46614
+ To: bernard@boyer.org
46615
+ Message-ID: <5da49bd13b961_9123fcbb1c2ffd059553@Marios-MacBook-Pro.local.mail>
46616
+ Subject: Confirmation instructions
46617
+ Mime-Version: 1.0
46618
+ Content-Type: text/html;
46619
+ charset=UTF-8
46620
+ Content-Transfer-Encoding: 7bit
46621
+ client-config: default
46622
+ redirect-url:
46623
+
46624
+ <p>Welcome bernard@boyer.org!</p>
46625
+
46626
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_link_msg">Confirm Link Msg</span> </p>
46627
+
46628
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=&amp;variables%5Btoken%5D=DzsWS7gbsp17GM-nGMxi"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_account_link">Confirm Account Link</span></a></p>
46629
+
46630
+ 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
46631
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46632
+ Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"DzsWS7gbsp17GM-nGMxi\"\n redirectUrl: \"http://frami.com/gwenda\"\n ) {\n email\n name\n }\n }\n"}
46633
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "DzsWS7gbsp17GM-nGMxi"], ["LIMIT", 1]]
46634
+  (0.1ms) SAVEPOINT active_record_1
46635
+ 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]]
46636
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46637
+ Redirected to http://frami.com/gwenda?account_confirmation_success=true
46638
+ Completed 302 Found in 5ms (ActiveRecord: 0.4ms | Allocations: 1790)
46639
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46640
+  (0.4ms) rollback transaction
46641
+  (0.0ms) begin transaction
46642
+  (0.1ms) SAVEPOINT active_record_1
46643
+ 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]]
46644
+ 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"]]
46645
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46646
+ 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
46647
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46648
+ Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"FRT-en16NfbzYUiKa-oT-invalid\"\n redirectUrl: \"http://hills.biz/rogelio\"\n ) {\n email\n name\n }\n }\n"}
46649
+ 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]]
46650
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "556e7acc5cba09e133390ee0a539a87e6c96ca767e1ad88dd80bc1051190201d"], ["LIMIT", 1]]
46651
+ Completed 200 OK in 94ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2009)
46652
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46653
+  (0.8ms) rollback transaction
46654
+  (0.1ms) begin transaction
46655
+  (0.0ms) SAVEPOINT active_record_1
46656
+ 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]]
46657
+ 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"]]
46658
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46659
+  (0.1ms) SAVEPOINT active_record_1
46660
+ 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]]
46661
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46662
+ Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-14 11:01:21 -0500
46663
+ Processing by Api::V1::GraphqlController#graphql as HTML
46664
+ Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"}
46665
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "santiago_hodkiewicz@hagenes.biz"], ["LIMIT", 1]]
46666
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46667
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46668
+  (0.0ms) SAVEPOINT active_record_1
46669
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
46670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46671
+ Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 10633)
46672
+  (0.7ms) rollback transaction
46673
+  (0.1ms) begin transaction
46674
+  (0.1ms) SAVEPOINT active_record_1
46675
+ 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]]
46676
+ 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"]]
46677
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46678
+ Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-14 11:01:21 -0500
46679
+ Processing by Api::V1::GraphqlController#graphql as HTML
46680
+ Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"}
46681
+ Filter chain halted as :authenticate_user! rendered or redirected
46682
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)
46683
+  (0.3ms) rollback transaction
46684
+  (1.5ms) SELECT sqlite_version(*)
46685
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
46686
+  (0.0ms) SELECT sqlite_version(*)
46687
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
46688
+  (0.1ms) begin transaction
46689
+  (0.0ms) rollback transaction
46690
+  (0.0ms) begin transaction
46691
+  (0.1ms) SAVEPOINT active_record_1
46692
+ 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]]
46693
+ 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"]]
46694
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46695
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:10 -0500
46696
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46697
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"claud.powlowski@ryan.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
46698
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "claud.powlowski@ryan.org"], ["LIMIT", 1]]
46699
+  (0.1ms) SAVEPOINT active_record_1
46700
+ 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]]
46701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46702
+  (0.0ms) SAVEPOINT active_record_1
46703
+ 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]]
46704
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46705
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46706
+ Completed 200 OK in 81ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 18584)
46707
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46708
+  (0.6ms) rollback transaction
46709
+  (0.0ms) begin transaction
46710
+  (0.0ms) SAVEPOINT active_record_1
46711
+ 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]]
46712
+ 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"]]
46713
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46714
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:10 -0500
46715
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46716
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"ashli@robel.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
46717
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ashli@robel.co"], ["LIMIT", 1]]
46718
+ User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]]
46719
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46720
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2042)
46721
+  (0.4ms) rollback transaction
46722
+  (0.0ms) begin transaction
46723
+  (0.0ms) SAVEPOINT active_record_1
46724
+ 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]]
46725
+ 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"]]
46726
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46727
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:10 -0500
46728
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46729
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"loren@davisroob.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
46730
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "loren@davisroob.co"], ["LIMIT", 1]]
46731
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1362)
46732
+  (0.3ms) rollback transaction
46733
+  (0.1ms) begin transaction
46734
+  (0.1ms) SAVEPOINT active_record_1
46735
+ 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]]
46736
+ 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"]]
46737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46738
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:10 -0500
46739
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46740
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"remona_terry@lindgren.co\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
46741
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "remona_terry@lindgren.co"], ["LIMIT", 1]]
46742
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)
46743
+  (0.4ms) rollback transaction
46744
+  (0.1ms) begin transaction
46745
+  (0.1ms) SAVEPOINT active_record_1
46746
+ 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]]
46747
+ 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]]
46748
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46749
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:10 -0500
46750
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46751
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"patria@greenholtharvey.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
46752
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "patria@greenholtharvey.com"], ["LIMIT", 1]]
46753
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 1359)
46754
+  (0.7ms) rollback transaction
46755
+  (0.1ms) begin transaction
46756
+  (0.2ms) SAVEPOINT active_record_1
46757
+ 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]]
46758
+ 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"]]
46759
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46760
+ Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500
46761
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46762
+ Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"sharice_borer@stromanmohr.biz\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"}
46763
+ Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "sharice_borer@stromanmohr.biz"], ["LIMIT", 1]]
46764
+  (0.1ms) SAVEPOINT active_record_1
46765
+ 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]]
46766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46767
+ Completed 200 OK in 63ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2404)
46768
+  (0.6ms) rollback transaction
46769
+  (0.0ms) begin transaction
46770
+  (0.1ms) SAVEPOINT active_record_1
46771
+ 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]]
46772
+ 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"]]
46773
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46774
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500
46775
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46776
+ Parameters: {"query"=>" mutation {\n guestLogin(\n email: \"raleigh@dibbert.io\",\n password: \"12345678\"\n ) {\n authenticable { email }\n }\n }\n"}
46777
+ Guest Load (0.1ms) SELECT "guests".* FROM "guests" WHERE "guests"."email" = ? LIMIT ? [["email", "raleigh@dibbert.io"], ["LIMIT", 1]]
46778
+  (0.1ms) SAVEPOINT active_record_1
46779
+ 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]]
46780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46781
+ Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2320)
46782
+  (0.8ms) rollback transaction
46783
+  (0.1ms) begin transaction
46784
+  (0.0ms) SAVEPOINT active_record_1
46785
+ 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]]
46786
+ 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"]]
46787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46788
+  (0.1ms) SAVEPOINT active_record_1
46789
+ 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]]
46790
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46791
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500
46792
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46793
+ Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"}
46794
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lucien@feilboyle.co"], ["LIMIT", 1]]
46795
+  (0.1ms) SAVEPOINT active_record_1
46796
+ 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]]
46797
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46798
+ Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1896)
46799
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46800
+  (0.7ms) rollback transaction
46801
+  (0.1ms) begin transaction
46802
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500
46803
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46804
+ Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"}
46805
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 957)
46806
+  (0.1ms) SAVEPOINT active_record_1
46807
+ 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]]
46808
+ 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"]]
46809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46810
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46811
+  (0.3ms) rollback transaction
46812
+  (0.0ms) begin transaction
46813
+  (0.1ms) SAVEPOINT active_record_1
46814
+ 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]]
46815
+ 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"]]
46816
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46817
+  (0.1ms) SAVEPOINT active_record_1
46818
+ 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]]
46819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46820
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500
46821
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46822
+ Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"}
46823
+ Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "lelia@funkcollins.org"], ["LIMIT", 1]]
46824
+  (0.0ms) SAVEPOINT active_record_1
46825
+ 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]]
46826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46827
+ Completed 200 OK in 47ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 1825)
46828
+ Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46829
+  (0.7ms) rollback transaction
46830
+  (0.1ms) begin transaction
46831
+  (0.1ms) SAVEPOINT active_record_1
46832
+ 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]]
46833
+ 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"]]
46834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46835
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500
46836
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46837
+ 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"}
46838
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "van_buckridge@mann.org"], ["provider", "email"], ["LIMIT", 1]]
46839
+ 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]]
46840
+  (0.0ms) SAVEPOINT active_record_1
46841
+ 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]]
46842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46843
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb
46844
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.6ms | Allocations: 1308)
46845
+ Devise::Mailer#reset_password_instructions: processed outbound mail in 113.4ms
46846
+ Delivered mail 5da49c3f918fc_9883ff19743201030043@Marios-MacBook-Pro.local.mail (4.0ms)
46847
+ Date: Mon, 14 Oct 2019 11:03:11 -0500
46848
+ From: please-change-me-at-config-initializers-devise@example.com
46849
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
46850
+ To: van_buckridge@mann.org
46851
+ Message-ID: <5da49c3f918fc_9883ff19743201030043@Marios-MacBook-Pro.local.mail>
46852
+ Subject: Reset password instructions
46853
+ Mime-Version: 1.0
46854
+ Content-Type: text/html;
46855
+ charset=UTF-8
46856
+ Content-Transfer-Encoding: 7bit
46857
+ email: van_buckridge@mann.org
46858
+ provider: email
46859
+ redirect-url: http://prosaccojacobs.net/letisha
46860
+ client-config: default
46861
+
46862
+ <p>Hello van_buckridge@mann.org!</p>
46863
+
46864
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.request_reset_link_msg">Request Reset Link Msg</span></p>
46865
+
46866
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=http%3A%2F%2Fprosaccojacobs.net%2Fletisha&amp;variables%5Btoken%5D=67AvDMrCu6_z1vtzU2dy"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.password_change_link">Password Change Link</span></a></p>
46867
+
46868
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.ignore_mail_msg">Ignore Mail Msg</span></p>
46869
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.no_changes_msg">No Changes Msg</span></p>
46870
+
46871
+ Completed 200 OK in 206ms (Views: 0.1ms | ActiveRecord: 0.9ms | Allocations: 67759)
46872
+ 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
46873
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46874
+ Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://prosaccojacobs.net/letisha", "token"=>"67AvDMrCu6_z1vtzU2dy"}}
46875
+ 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]]
46876
+  (0.1ms) SAVEPOINT active_record_1
46877
+ 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]]
46878
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46879
+ 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
46880
+ Completed 302 Found in 47ms (ActiveRecord: 0.2ms | Allocations: 2145)
46881
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46882
+  (0.7ms) rollback transaction
46883
+  (0.1ms) begin transaction
46884
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500
46885
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46886
+ 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"}
46887
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]]
46888
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1205)
46889
+  (0.0ms) rollback transaction
46890
+  (0.0ms) begin transaction
46891
+  (0.1ms) SELECT COUNT(*) FROM "users"
46892
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500
46893
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46894
+ 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"}
46895
+  (0.1ms) SAVEPOINT active_record_1
46896
+ 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]]
46897
+ 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"]]
46898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46899
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb
46900
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.7ms | Allocations: 581)
46901
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 1.9ms
46902
+ Delivered mail 5da49c3fa248e_9883ff19743201030164@Marios-MacBook-Pro.local.mail (1.1ms)
46903
+ Date: Mon, 14 Oct 2019 11:03:11 -0500
46904
+ From: please-change-me-at-config-initializers-devise@example.com
46905
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
46906
+ To: zulema@vonrueden.org
46907
+ Message-ID: <5da49c3fa248e_9883ff19743201030164@Marios-MacBook-Pro.local.mail>
46908
+ Subject: Confirmation instructions
46909
+ Mime-Version: 1.0
46910
+ Content-Type: text/html;
46911
+ charset=UTF-8
46912
+ Content-Transfer-Encoding: 7bit
46913
+ client-config: default
46914
+ redirect-url: http://moenmayert.io/rodolfo.spinka
46915
+
46916
+ <p>Welcome zulema@vonrueden.org!</p>
46917
+
46918
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_link_msg">Confirm Link Msg</span> </p>
46919
+
46920
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=http%3A%2F%2Fmoenmayert.io%2Frodolfo.spinka&amp;variables%5Btoken%5D=sEAsQyiN-aoV6rPBae1o"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_account_link">Confirm Account Link</span></a></p>
46921
+
46922
+ Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 5458)
46923
+  (0.1ms) SELECT COUNT(*) FROM "users"
46924
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]]
46925
+ 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
46926
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46927
+ Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://moenmayert.io/rodolfo.spinka", "token"=>"sEAsQyiN-aoV6rPBae1o"}}
46928
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "sEAsQyiN-aoV6rPBae1o"], ["LIMIT", 1]]
46929
+  (0.6ms) SAVEPOINT active_record_1
46930
+ 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]]
46931
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46932
+ Redirected to http://moenmayert.io/rodolfo.spinka?account_confirmation_success=true
46933
+ Completed 302 Found in 10ms (ActiveRecord: 1.1ms | Allocations: 2178)
46934
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46935
+  (0.4ms) rollback transaction
46936
+  (0.2ms) begin transaction
46937
+  (0.1ms) SELECT COUNT(*) FROM "users"
46938
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500
46939
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46940
+ 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"}
46941
+  (0.1ms) SAVEPOINT active_record_1
46942
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]
46943
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
46944
+ Completed 200 OK in 10ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 2713)
46945
+  (0.1ms) SELECT COUNT(*) FROM "users"
46946
+  (0.0ms) rollback transaction
46947
+  (0.1ms) begin transaction
46948
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500
46949
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46950
+ 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"}
46951
+ Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.0ms | Allocations: 818)
46952
+  (0.1ms) rollback transaction
46953
+  (0.1ms) begin transaction
46954
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500
46955
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46956
+ 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"}
46957
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 818)
46958
+  (0.1ms) rollback transaction
46959
+  (0.0ms) begin transaction
46960
+  (0.1ms) SAVEPOINT active_record_1
46961
+ 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]]
46962
+ 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"]]
46963
+  (0.1ms) RELEASE SAVEPOINT active_record_1
46964
+  (0.1ms) SAVEPOINT active_record_1
46965
+ 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]]
46966
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46967
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500
46968
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46969
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
46970
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "genesis@bergstromfriesen.com"], ["LIMIT", 1]]
46971
+  (0.1ms) SAVEPOINT active_record_1
46972
+ 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]]
46973
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46974
+  (0.0ms) SAVEPOINT active_record_1
46975
+ 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]]
46976
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46977
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46978
+ Completed 200 OK in 59ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2885)
46979
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
46980
+  (0.6ms) rollback transaction
46981
+  (0.0ms) begin transaction
46982
+  (0.1ms) SAVEPOINT active_record_1
46983
+ 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]]
46984
+ 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"]]
46985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46986
+  (0.1ms) SAVEPOINT active_record_1
46987
+ 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]]
46988
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46989
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:11 -0500
46990
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
46991
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
46992
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "antony@blickboyle.com"], ["LIMIT", 1]]
46993
+  (0.1ms) SAVEPOINT active_record_1
46994
+ 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]]
46995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46996
+  (0.0ms) SAVEPOINT active_record_1
46997
+ 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]]
46998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46999
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47000
+ Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2874)
47001
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47002
+  (0.5ms) rollback transaction
47003
+  (0.1ms) begin transaction
47004
+  (0.1ms) SAVEPOINT active_record_1
47005
+ 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]]
47006
+ 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"]]
47007
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47008
+  (0.1ms) SAVEPOINT active_record_1
47009
+ 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]]
47010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47011
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:12 -0500
47012
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47013
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
47014
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "santos@kunzegrady.co"], ["LIMIT", 1]]
47015
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47016
+ Completed 200 OK in 51ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 2358)
47017
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47018
+  (0.8ms) rollback transaction
47019
+  (0.1ms) begin transaction
47020
+  (0.0ms) SAVEPOINT active_record_1
47021
+ 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]]
47022
+ 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"]]
47023
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47024
+  (0.1ms) SAVEPOINT active_record_1
47025
+ 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]]
47026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47027
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:12 -0500
47028
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47029
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
47030
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "marylynn.nitzsche@kuhicbruen.io"], ["LIMIT", 1]]
47031
+  (0.5ms) SAVEPOINT active_record_1
47032
+ 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]]
47033
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47034
+  (0.0ms) SAVEPOINT active_record_1
47035
+ 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]]
47036
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47037
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47038
+ Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.9ms | Allocations: 2877)
47039
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47040
+  (0.5ms) rollback transaction
47041
+  (0.0ms) begin transaction
47042
+  (0.1ms) SAVEPOINT active_record_1
47043
+ 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]]
47044
+ 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"]]
47045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47046
+  (0.1ms) SAVEPOINT active_record_1
47047
+ 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]]
47048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47049
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:12 -0500
47050
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47051
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
47052
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "germaine_marquardt@lehner.info"], ["LIMIT", 1]]
47053
+  (0.1ms) SAVEPOINT active_record_1
47054
+ 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]]
47055
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47056
+  (0.0ms) SAVEPOINT active_record_1
47057
+ 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]]
47058
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47059
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47060
+ Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2877)
47061
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47062
+  (1.1ms) rollback transaction
47063
+  (0.1ms) begin transaction
47064
+  (0.1ms) SAVEPOINT active_record_1
47065
+ 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]]
47066
+ 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"]]
47067
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47068
+  (0.1ms) SAVEPOINT active_record_1
47069
+ 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]]
47070
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47071
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:12 -0500
47072
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47073
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
47074
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "catherina@hintzrau.name"], ["LIMIT", 1]]
47075
+  (0.1ms) SAVEPOINT active_record_1
47076
+ 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]]
47077
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47078
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47079
+ Completed 200 OK in 52ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 2640)
47080
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47081
+  (0.2ms) rollback transaction
47082
+  (0.0ms) begin transaction
47083
+  (0.0ms) SAVEPOINT active_record_1
47084
+ 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]]
47085
+ 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"]]
47086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47087
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:12 -0500
47088
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47089
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
47090
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 1164)
47091
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47092
+  (0.4ms) rollback transaction
47093
+  (0.7ms) begin transaction
47094
+  (0.1ms) SAVEPOINT active_record_1
47095
+ 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]]
47096
+ 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"]]
47097
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47098
+ 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]]
47099
+  (0.0ms) SAVEPOINT active_record_1
47100
+ 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]]
47101
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47102
+ 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
47103
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47104
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"QU4Wp6LwujKrd3zsX69u\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"}
47105
+ 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]]
47106
+  (0.1ms) SAVEPOINT active_record_1
47107
+ 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]]
47108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47109
+  (0.0ms) SAVEPOINT active_record_1
47110
+ 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]]
47111
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47112
+ Completed 200 OK in 105ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2660)
47113
+  (0.5ms) rollback transaction
47114
+  (0.0ms) begin transaction
47115
+  (0.1ms) SAVEPOINT active_record_1
47116
+ 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]]
47117
+ 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"]]
47118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47119
+ 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]]
47120
+  (0.1ms) SAVEPOINT active_record_1
47121
+ 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]]
47122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47123
+ 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
47124
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47125
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"26ji4NLf9K9yZEykqgyt\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
47126
+ 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]]
47127
+  (0.1ms) SAVEPOINT active_record_1
47128
+ 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]]
47129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47130
+ 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
47131
+ Completed 302 Found in 53ms (ActiveRecord: 0.2ms | Allocations: 1918)
47132
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47133
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47134
+  (0.5ms) rollback transaction
47135
+  (0.0ms) begin transaction
47136
+  (0.1ms) SAVEPOINT active_record_1
47137
+ 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]]
47138
+ 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"]]
47139
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47140
+ 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]]
47141
+  (0.0ms) SAVEPOINT active_record_1
47142
+ 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]]
47143
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47144
+ 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
47145
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47146
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"ZVQ7fc_Usa-X_XCMjmeb\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
47147
+ 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]]
47148
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1266)
47149
+  (0.3ms) rollback transaction
47150
+  (0.1ms) begin transaction
47151
+  (0.1ms) SAVEPOINT active_record_1
47152
+ 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]]
47153
+ 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"]]
47154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47155
+ 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]]
47156
+  (0.0ms) SAVEPOINT active_record_1
47157
+ 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]]
47158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47159
+ 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
47160
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47161
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"9D3zbZtWV2m6hX-y5V_minvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
47162
+ 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]]
47163
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)
47164
+  (0.4ms) rollback transaction
47165
+  (0.0ms) begin transaction
47166
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:12 -0500
47167
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47168
+ Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
47169
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)
47170
+  (0.1ms) rollback transaction
47171
+  (0.0ms) begin transaction
47172
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-14 11:03:12 -0500
47173
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47174
+ Parameters: {"query"=>" query {\n guestCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
47175
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)
47176
+  (0.0ms) rollback transaction
47177
+  (0.0ms) begin transaction
47178
+  (0.1ms) SAVEPOINT active_record_1
47179
+ 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]]
47180
+ 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"]]
47181
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47182
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb
47183
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.6ms | Allocations: 408)
47184
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 1.8ms
47185
+ Delivered mail 5da49c40a3c74_9883ff1974320103027b@Marios-MacBook-Pro.local.mail (1.5ms)
47186
+ Date: Mon, 14 Oct 2019 11:03:12 -0500
47187
+ From: please-change-me-at-config-initializers-devise@example.com
47188
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
47189
+ To: walter@stoltenberg.net
47190
+ Message-ID: <5da49c40a3c74_9883ff1974320103027b@Marios-MacBook-Pro.local.mail>
47191
+ Subject: Confirmation instructions
47192
+ Mime-Version: 1.0
47193
+ Content-Type: text/html;
47194
+ charset=UTF-8
47195
+ Content-Transfer-Encoding: 7bit
47196
+ client-config: default
47197
+ redirect-url:
47198
+
47199
+ <p>Welcome walter@stoltenberg.net!</p>
47200
+
47201
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_link_msg">Confirm Link Msg</span> </p>
47202
+
47203
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=&amp;variables%5Btoken%5D=xNVxsYAqi7A1i1hTx2W_"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_account_link">Confirm Account Link</span></a></p>
47204
+
47205
+ 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
47206
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47207
+ Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"xNVxsYAqi7A1i1hTx2W_\"\n redirectUrl: \"http://marquardt.com/staci.raynor\"\n ) {\n email\n name\n }\n }\n"}
47208
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "xNVxsYAqi7A1i1hTx2W_"], ["LIMIT", 1]]
47209
+  (0.1ms) SAVEPOINT active_record_1
47210
+ 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]]
47211
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47212
+ Redirected to http://marquardt.com/staci.raynor?account_confirmation_success=true
47213
+ Completed 302 Found in 4ms (ActiveRecord: 0.3ms | Allocations: 1789)
47214
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47215
+  (0.3ms) rollback transaction
47216
+  (0.1ms) begin transaction
47217
+  (0.1ms) SAVEPOINT active_record_1
47218
+ 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]]
47219
+ 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"]]
47220
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47221
+ 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
47222
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47223
+ Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"bhnWyhkxdyeWWQg6kj_U-invalid\"\n redirectUrl: \"http://robel.biz/cedric.schmitt\"\n ) {\n email\n name\n }\n }\n"}
47224
+ 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]]
47225
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "8ce7f6c9d9e79882f09f63e11570bfc1622c7e914f78febb1baf2d5c847fb320"], ["LIMIT", 1]]
47226
+ Completed 200 OK in 94ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 2009)
47227
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47228
+  (0.5ms) rollback transaction
47229
+  (0.0ms) begin transaction
47230
+  (0.0ms) SAVEPOINT active_record_1
47231
+ 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]]
47232
+ 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"]]
47233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47234
+  (0.1ms) SAVEPOINT active_record_1
47235
+ 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]]
47236
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47237
+ Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-14 11:03:12 -0500
47238
+ Processing by Api::V1::GraphqlController#graphql as HTML
47239
+ Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"}
47240
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "herb@gleichnerjacobson.net"], ["LIMIT", 1]]
47241
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47242
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47243
+ Completed 200 OK in 53ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 9751)
47244
+  (0.6ms) rollback transaction
47245
+  (0.1ms) begin transaction
47246
+  (0.1ms) SAVEPOINT active_record_1
47247
+ 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]]
47248
+ 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"]]
47249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47250
+ Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-14 11:03:12 -0500
47251
+ Processing by Api::V1::GraphqlController#graphql as HTML
47252
+ Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"}
47253
+ Filter chain halted as :authenticate_user! rendered or redirected
47254
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)
47255
+  (0.3ms) rollback transaction
47256
+  (1.0ms) SELECT sqlite_version(*)
47257
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
47258
+  (0.0ms) SELECT sqlite_version(*)
47259
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
47260
+  (0.1ms) begin transaction
47261
+  (0.1ms) rollback transaction
47262
+  (0.1ms) begin transaction
47263
+  (0.1ms) SAVEPOINT active_record_1
47264
+ 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]]
47265
+ 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"]]
47266
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47267
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500
47268
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47269
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"liz@ankundingdonnelly.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
47270
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "liz@ankundingdonnelly.io"], ["LIMIT", 1]]
47271
+  (0.1ms) SAVEPOINT active_record_1
47272
+ 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]]
47273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47274
+  (0.0ms) SAVEPOINT active_record_1
47275
+ 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]]
47276
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47277
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47278
+ Completed 200 OK in 69ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 19293)
47279
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47280
+  (0.3ms) rollback transaction
47281
+  (0.0ms) begin transaction
47282
+  (0.1ms) SAVEPOINT active_record_1
47283
+ 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]]
47284
+ 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"]]
47285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47286
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500
47287
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47288
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jonathon.wilderman@rutherford.org\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
47289
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jonathon.wilderman@rutherford.org"], ["LIMIT", 1]]
47290
+ User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]]
47291
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47292
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 2044)
47293
+  (0.3ms) rollback transaction
47294
+  (0.0ms) begin transaction
47295
+  (0.1ms) SAVEPOINT active_record_1
47296
+ 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]]
47297
+ 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"]]
47298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47299
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500
47300
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47301
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"oswaldo.trantow@oconnell.name\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
47302
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "oswaldo.trantow@oconnell.name"], ["LIMIT", 1]]
47303
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1363)
47304
+  (0.3ms) rollback transaction
47305
+  (0.0ms) begin transaction
47306
+  (0.1ms) SAVEPOINT active_record_1
47307
+ 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]]
47308
+ 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"]]
47309
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47310
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500
47311
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47312
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"heide@bernhard.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
47313
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "heide@bernhard.io"], ["LIMIT", 1]]
47314
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)
47315
+  (0.3ms) rollback transaction
47316
+  (0.0ms) begin transaction
47317
+  (0.1ms) SAVEPOINT active_record_1
47318
+ 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]]
47319
+ 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]]
47320
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47321
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500
47322
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47323
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"weston@raynorabbott.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
47324
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "weston@raynorabbott.net"], ["LIMIT", 1]]
47325
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1362)
47326
+  (0.3ms) rollback transaction
47327
+  (0.0ms) begin transaction
47328
+  (0.1ms) SAVEPOINT active_record_1
47329
+ 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]]
47330
+ 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"]]
47331
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47332
+ Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500
47333
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47334
+ Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"elayne@kirlinquitzon.co\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"}
47335
+ Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "elayne@kirlinquitzon.co"], ["LIMIT", 1]]
47336
+  (0.1ms) SAVEPOINT active_record_1
47337
+ 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]]
47338
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47339
+ Completed 200 OK in 63ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2402)
47340
+  (0.5ms) rollback transaction
47341
+  (0.0ms) begin transaction
47342
+  (0.1ms) SAVEPOINT active_record_1
47343
+ 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]]
47344
+ 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"]]
47345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47346
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500
47347
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47348
+ Parameters: {"query"=>" mutation {\n guestLogin(\n email: \"barton_kunze@wildermanromaguera.net\",\n password: \"12345678\"\n ) {\n authenticable { email }\n }\n }\n"}
47349
+ Guest Load (0.1ms) SELECT "guests".* FROM "guests" WHERE "guests"."email" = ? LIMIT ? [["email", "barton_kunze@wildermanromaguera.net"], ["LIMIT", 1]]
47350
+  (0.1ms) SAVEPOINT active_record_1
47351
+ 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]]
47352
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47353
+ Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2275)
47354
+  (0.6ms) rollback transaction
47355
+  (0.1ms) begin transaction
47356
+  (0.0ms) SAVEPOINT active_record_1
47357
+ 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]]
47358
+ 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"]]
47359
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47360
+  (0.1ms) SAVEPOINT active_record_1
47361
+ 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]]
47362
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47363
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500
47364
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47365
+ Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"}
47366
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "lashunda@yundt.io"], ["LIMIT", 1]]
47367
+  (0.1ms) SAVEPOINT active_record_1
47368
+ 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]]
47369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47370
+ Completed 200 OK in 50ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1896)
47371
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47372
+  (0.6ms) rollback transaction
47373
+  (0.1ms) begin transaction
47374
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500
47375
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47376
+ Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"}
47377
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 957)
47378
+  (0.1ms) SAVEPOINT active_record_1
47379
+ 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]]
47380
+ 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"]]
47381
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47382
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47383
+  (0.3ms) rollback transaction
47384
+  (0.0ms) begin transaction
47385
+  (0.1ms) SAVEPOINT active_record_1
47386
+ 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]]
47387
+ 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"]]
47388
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47389
+  (0.1ms) SAVEPOINT active_record_1
47390
+ 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]]
47391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47392
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500
47393
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47394
+ Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"}
47395
+ Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "mia.jones@roberts.io"], ["LIMIT", 1]]
47396
+  (0.0ms) SAVEPOINT active_record_1
47397
+ 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]]
47398
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47399
+ Completed 200 OK in 48ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 1825)
47400
+ Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47401
+  (0.6ms) rollback transaction
47402
+  (0.0ms) begin transaction
47403
+  (0.1ms) SAVEPOINT active_record_1
47404
+ 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]]
47405
+ 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"]]
47406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47407
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:19 -0500
47408
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47409
+ 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"}
47410
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "rubin_zboncak@cummingsmurphy.name"], ["provider", "email"], ["LIMIT", 1]]
47411
+ 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]]
47412
+  (0.0ms) SAVEPOINT active_record_1
47413
+ 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]]
47414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47415
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb
47416
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 2.5ms | Allocations: 1308)
47417
+ Devise::Mailer#reset_password_instructions: processed outbound mail in 129.8ms
47418
+ Delivered mail 5da92254eb4c_10303fdb1ac2bfd4273fe@Marios-MacBook-Pro.local.mail (6.0ms)
47419
+ Date: Thu, 17 Oct 2019 21:24:20 -0500
47420
+ From: please-change-me-at-config-initializers-devise@example.com
47421
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
47422
+ To: rubin_zboncak@cummingsmurphy.name
47423
+ Message-ID: <5da92254eb4c_10303fdb1ac2bfd4273fe@Marios-MacBook-Pro.local.mail>
47424
+ Subject: Reset password instructions
47425
+ Mime-Version: 1.0
47426
+ Content-Type: text/html;
47427
+ charset=UTF-8
47428
+ Content-Transfer-Encoding: 7bit
47429
+ email: rubin_zboncak@cummingsmurphy.name
47430
+ provider: email
47431
+ redirect-url: http://barton.com/leo_skiles
47432
+ client-config: default
47433
+
47434
+ <p>Hello rubin_zboncak@cummingsmurphy.name!</p>
47435
+
47436
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.request_reset_link_msg">Request Reset Link Msg</span></p>
47437
+
47438
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=http%3A%2F%2Fbarton.com%2Fleo_skiles&amp;variables%5Btoken%5D=21b7Zkr7c_zASA6UPkHk"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.password_change_link">Password Change Link</span></a></p>
47439
+
47440
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.ignore_mail_msg">Ignore Mail Msg</span></p>
47441
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.no_changes_msg">No Changes Msg</span></p>
47442
+
47443
+ Completed 200 OK in 220ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 67769)
47444
+ 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
47445
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47446
+ Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://barton.com/leo_skiles", "token"=>"21b7Zkr7c_zASA6UPkHk"}}
47447
+ 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]]
47448
+  (0.1ms) SAVEPOINT active_record_1
47449
+ 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]]
47450
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47451
+ 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
47452
+ Completed 302 Found in 49ms (ActiveRecord: 0.2ms | Allocations: 2147)
47453
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47454
+  (0.8ms) rollback transaction
47455
+  (0.1ms) begin transaction
47456
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500
47457
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47458
+ 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"}
47459
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]]
47460
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1205)
47461
+  (0.0ms) rollback transaction
47462
+  (0.0ms) begin transaction
47463
+  (0.1ms) SELECT COUNT(*) FROM "users"
47464
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500
47465
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47466
+ 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"}
47467
+  (0.1ms) SAVEPOINT active_record_1
47468
+ 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]]
47469
+ 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"]]
47470
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47471
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb
47472
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.9ms | Allocations: 581)
47473
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms
47474
+ Delivered mail 5da92254203b5_10303fdb1ac2bfd4274a2@Marios-MacBook-Pro.local.mail (1.4ms)
47475
+ Date: Thu, 17 Oct 2019 21:24:20 -0500
47476
+ From: please-change-me-at-config-initializers-devise@example.com
47477
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
47478
+ To: ivy@swaniawskiwhite.name
47479
+ Message-ID: <5da92254203b5_10303fdb1ac2bfd4274a2@Marios-MacBook-Pro.local.mail>
47480
+ Subject: Confirmation instructions
47481
+ Mime-Version: 1.0
47482
+ Content-Type: text/html;
47483
+ charset=UTF-8
47484
+ Content-Transfer-Encoding: 7bit
47485
+ client-config: default
47486
+ redirect-url: http://powlowski.name/carol_stracke
47487
+
47488
+ <p>Welcome ivy@swaniawskiwhite.name!</p>
47489
+
47490
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_link_msg">Confirm Link Msg</span> </p>
47491
+
47492
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=http%3A%2F%2Fpowlowski.name%2Fcarol_stracke&amp;variables%5Btoken%5D=PYahi3Jg55TM1EzEu2HT"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_account_link">Confirm Account Link</span></a></p>
47493
+
47494
+ Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5460)
47495
+  (0.1ms) SELECT COUNT(*) FROM "users"
47496
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]]
47497
+ 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
47498
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47499
+ Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://powlowski.name/carol_stracke", "token"=>"PYahi3Jg55TM1EzEu2HT"}}
47500
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "PYahi3Jg55TM1EzEu2HT"], ["LIMIT", 1]]
47501
+  (0.1ms) SAVEPOINT active_record_1
47502
+ 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]]
47503
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47504
+ Redirected to http://powlowski.name/carol_stracke?account_confirmation_success=true
47505
+ Completed 302 Found in 7ms (ActiveRecord: 0.5ms | Allocations: 2180)
47506
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47507
+  (0.3ms) rollback transaction
47508
+  (0.0ms) begin transaction
47509
+  (0.1ms) SELECT COUNT(*) FROM "users"
47510
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500
47511
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47512
+ 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"}
47513
+  (0.1ms) SAVEPOINT active_record_1
47514
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]
47515
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
47516
+ Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.3ms | Allocations: 2712)
47517
+  (0.1ms) SELECT COUNT(*) FROM "users"
47518
+  (0.1ms) rollback transaction
47519
+  (0.1ms) begin transaction
47520
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500
47521
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47522
+ 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"}
47523
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 818)
47524
+  (0.1ms) rollback transaction
47525
+  (0.1ms) begin transaction
47526
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500
47527
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47528
+ 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"}
47529
+  (0.1ms) SAVEPOINT active_record_1
47530
+ 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]]
47531
+ 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"]]
47532
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47533
+ Completed 500 Internal Server Error in 38ms (ActiveRecord: 0.7ms | Allocations: 4813)
47534
+  (0.6ms) rollback transaction
47535
+  (0.1ms) begin transaction
47536
+  (0.1ms) SAVEPOINT active_record_1
47537
+ 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]]
47538
+ 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"]]
47539
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47540
+  (0.1ms) SAVEPOINT active_record_1
47541
+ 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]]
47542
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47543
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500
47544
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47545
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
47546
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "antonietta@leannon.name"], ["LIMIT", 1]]
47547
+  (0.1ms) SAVEPOINT active_record_1
47548
+ 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]]
47549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47550
+  (0.0ms) SAVEPOINT active_record_1
47551
+ 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]]
47552
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47553
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47554
+ Completed 200 OK in 56ms (Views: 0.1ms | ActiveRecord: 1.1ms | Allocations: 2882)
47555
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47556
+  (0.7ms) rollback transaction
47557
+  (0.1ms) begin transaction
47558
+  (0.1ms) SAVEPOINT active_record_1
47559
+ 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]]
47560
+ 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"]]
47561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47562
+  (0.1ms) SAVEPOINT active_record_1
47563
+ 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]]
47564
+  (0.3ms) RELEASE SAVEPOINT active_record_1
47565
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500
47566
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47567
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
47568
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "amy@jenkins.io"], ["LIMIT", 1]]
47569
+  (0.1ms) SAVEPOINT active_record_1
47570
+ 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]]
47571
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47572
+  (0.0ms) SAVEPOINT active_record_1
47573
+ 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]]
47574
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47575
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47576
+ Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2874)
47577
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47578
+  (0.6ms) rollback transaction
47579
+  (0.3ms) begin transaction
47580
+  (0.0ms) SAVEPOINT active_record_1
47581
+ 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]]
47582
+ 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"]]
47583
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47584
+  (0.1ms) SAVEPOINT active_record_1
47585
+ 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]]
47586
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47587
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500
47588
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47589
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
47590
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ozie@wisokyabernathy.com"], ["LIMIT", 1]]
47591
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47592
+ Completed 200 OK in 52ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2360)
47593
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47594
+  (0.6ms) rollback transaction
47595
+  (0.8ms) begin transaction
47596
+  (0.0ms) SAVEPOINT active_record_1
47597
+ 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]]
47598
+ 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"]]
47599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47600
+  (0.1ms) SAVEPOINT active_record_1
47601
+ 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]]
47602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47603
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500
47604
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47605
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
47606
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jodi@waelchi.net"], ["LIMIT", 1]]
47607
+  (0.0ms) SAVEPOINT active_record_1
47608
+ 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]]
47609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47610
+  (0.0ms) SAVEPOINT active_record_1
47611
+ 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]]
47612
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47613
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47614
+ Completed 200 OK in 50ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 2874)
47615
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47616
+  (0.5ms) rollback transaction
47617
+  (0.1ms) begin transaction
47618
+  (0.0ms) SAVEPOINT active_record_1
47619
+ 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]]
47620
+ 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"]]
47621
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47622
+  (0.1ms) SAVEPOINT active_record_1
47623
+ 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]]
47624
+  (0.2ms) RELEASE SAVEPOINT active_record_1
47625
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500
47626
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47627
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
47628
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "jayna_wolf@lemke.co"], ["LIMIT", 1]]
47629
+  (0.1ms) SAVEPOINT active_record_1
47630
+ 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]]
47631
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47632
+  (0.0ms) SAVEPOINT active_record_1
47633
+ 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]]
47634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47635
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47636
+ Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2874)
47637
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47638
+  (0.6ms) rollback transaction
47639
+  (0.1ms) begin transaction
47640
+  (0.1ms) SAVEPOINT active_record_1
47641
+ 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]]
47642
+ 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"]]
47643
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47644
+  (0.1ms) SAVEPOINT active_record_1
47645
+ 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]]
47646
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47647
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500
47648
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47649
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
47650
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "ro@runolfsdottirbeer.net"], ["LIMIT", 1]]
47651
+  (0.1ms) SAVEPOINT active_record_1
47652
+ 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]]
47653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47654
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47655
+ Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2643)
47656
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47657
+  (0.6ms) rollback transaction
47658
+  (0.1ms) begin transaction
47659
+  (0.0ms) SAVEPOINT active_record_1
47660
+ 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]]
47661
+ 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"]]
47662
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47663
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:20 -0500
47664
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47665
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
47666
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1164)
47667
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47668
+  (0.3ms) rollback transaction
47669
+  (0.0ms) begin transaction
47670
+  (0.1ms) SAVEPOINT active_record_1
47671
+ 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]]
47672
+ 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"]]
47673
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47674
+ 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]]
47675
+  (0.1ms) SAVEPOINT active_record_1
47676
+ 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]]
47677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47678
+ 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
47679
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47680
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"rfdJe9SHyAV-PeJRqgEe\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"}
47681
+ 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]]
47682
+  (0.1ms) SAVEPOINT active_record_1
47683
+ 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]]
47684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47685
+  (0.1ms) SAVEPOINT active_record_1
47686
+ 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]]
47687
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47688
+ Completed 200 OK in 105ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 2656)
47689
+  (0.5ms) rollback transaction
47690
+  (0.0ms) begin transaction
47691
+  (0.0ms) SAVEPOINT active_record_1
47692
+ 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]]
47693
+ 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"]]
47694
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47695
+ 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]]
47696
+  (0.1ms) SAVEPOINT active_record_1
47697
+ 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]]
47698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47699
+ 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
47700
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47701
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"VkMRTUS1QGZkrrpid4yS\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
47702
+ 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]]
47703
+  (0.1ms) SAVEPOINT active_record_1
47704
+ 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]]
47705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47706
+ 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
47707
+ Completed 302 Found in 54ms (ActiveRecord: 0.2ms | Allocations: 1916)
47708
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47709
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47710
+  (0.3ms) rollback transaction
47711
+  (0.0ms) begin transaction
47712
+  (0.1ms) SAVEPOINT active_record_1
47713
+ 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]]
47714
+ 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"]]
47715
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47716
+ 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]]
47717
+  (0.1ms) SAVEPOINT active_record_1
47718
+ 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]]
47719
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47720
+ 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
47721
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47722
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"nhW2dhC29Zg-AbcVz9rK\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
47723
+ 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]]
47724
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1266)
47725
+  (0.3ms) rollback transaction
47726
+  (0.0ms) begin transaction
47727
+  (0.1ms) SAVEPOINT active_record_1
47728
+ 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]]
47729
+ 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"]]
47730
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47731
+ 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]]
47732
+  (0.0ms) SAVEPOINT active_record_1
47733
+ 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]]
47734
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47735
+ 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
47736
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47737
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"qhrwDv53VGmmp5RyVtQeinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
47738
+ 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]]
47739
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1227)
47740
+  (0.3ms) rollback transaction
47741
+  (0.1ms) begin transaction
47742
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:21 -0500
47743
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47744
+ Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
47745
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)
47746
+  (0.1ms) rollback transaction
47747
+  (0.1ms) begin transaction
47748
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:24:21 -0500
47749
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47750
+ Parameters: {"query"=>" query {\n guestCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
47751
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)
47752
+  (0.1ms) rollback transaction
47753
+  (0.1ms) begin transaction
47754
+  (0.1ms) SAVEPOINT active_record_1
47755
+ 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]]
47756
+ 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"]]
47757
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47758
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb
47759
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.6ms | Allocations: 408)
47760
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 1.9ms
47761
+ Delivered mail 5da922552ae4a_10303fdb1ac2bfd4275a0@Marios-MacBook-Pro.local.mail (1.7ms)
47762
+ Date: Thu, 17 Oct 2019 21:24:21 -0500
47763
+ From: please-change-me-at-config-initializers-devise@example.com
47764
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
47765
+ To: arlie@cummings.info
47766
+ Message-ID: <5da922552ae4a_10303fdb1ac2bfd4275a0@Marios-MacBook-Pro.local.mail>
47767
+ Subject: Confirmation instructions
47768
+ Mime-Version: 1.0
47769
+ Content-Type: text/html;
47770
+ charset=UTF-8
47771
+ Content-Transfer-Encoding: 7bit
47772
+ client-config: default
47773
+ redirect-url:
47774
+
47775
+ <p>Welcome arlie@cummings.info!</p>
47776
+
47777
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_link_msg">Confirm Link Msg</span> </p>
47778
+
47779
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=&amp;variables%5Btoken%5D=dqy4ms5hs2ARABKxubco"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_account_link">Confirm Account Link</span></a></p>
47780
+
47781
+ 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
47782
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47783
+ Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"dqy4ms5hs2ARABKxubco\"\n redirectUrl: \"http://doyle.com/kati\"\n ) {\n email\n name\n }\n }\n"}
47784
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "dqy4ms5hs2ARABKxubco"], ["LIMIT", 1]]
47785
+  (0.1ms) SAVEPOINT active_record_1
47786
+ 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]]
47787
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47788
+ Redirected to http://doyle.com/kati?account_confirmation_success=true
47789
+ Completed 302 Found in 4ms (ActiveRecord: 0.3ms | Allocations: 1790)
47790
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47791
+  (0.4ms) rollback transaction
47792
+  (0.2ms) begin transaction
47793
+  (0.1ms) SAVEPOINT active_record_1
47794
+ 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]]
47795
+ 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"]]
47796
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47797
+ 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
47798
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47799
+ Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"ihBsC3_ATJ_c2A5UQwSy-invalid\"\n redirectUrl: \"http://schmidtschmidt.biz/johanne\"\n ) {\n email\n name\n }\n }\n"}
47800
+ 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]]
47801
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "caee3b404aafedb3a7b856059636eec84741e9f8e813e99bcca0cb935507908b"], ["LIMIT", 1]]
47802
+ Completed 200 OK in 97ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2009)
47803
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47804
+  (0.3ms) rollback transaction
47805
+  (0.1ms) begin transaction
47806
+  (0.0ms) SAVEPOINT active_record_1
47807
+ 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]]
47808
+ 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"]]
47809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47810
+  (0.1ms) SAVEPOINT active_record_1
47811
+ 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]]
47812
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47813
+ Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-17 21:24:21 -0500
47814
+ Processing by Api::V1::GraphqlController#graphql as HTML
47815
+ Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"}
47816
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "myrtle@mills.info"], ["LIMIT", 1]]
47817
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47818
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
47819
+ Completed 200 OK in 55ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 9749)
47820
+  (0.2ms) rollback transaction
47821
+  (0.0ms) begin transaction
47822
+  (0.0ms) SAVEPOINT active_record_1
47823
+ 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]]
47824
+ 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"]]
47825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47826
+ Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-17 21:24:21 -0500
47827
+ Processing by Api::V1::GraphqlController#graphql as HTML
47828
+ Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"}
47829
+ Filter chain halted as :authenticate_user! rendered or redirected
47830
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)
47831
+  (0.3ms) rollback transaction
47832
+  (1.0ms) SELECT sqlite_version(*)
47833
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
47834
+  (0.0ms) SELECT sqlite_version(*)
47835
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
47836
+  (0.1ms) begin transaction
47837
+  (0.1ms) SELECT COUNT(*) FROM "users"
47838
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:26:18 -0500
47839
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47840
+ 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"}
47841
+  (0.0ms) SAVEPOINT active_record_1
47842
+ 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]]
47843
+ 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"]]
47844
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47845
+ Completed 500 Internal Server Error in 53ms (ActiveRecord: 0.8ms | Allocations: 31098)
47846
+  (0.3ms) rollback transaction
47847
+  (0.8ms) SELECT sqlite_version(*)
47848
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
47849
+  (0.0ms) SELECT sqlite_version(*)
47850
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
47851
+  (0.1ms) begin transaction
47852
+  (0.1ms) SELECT COUNT(*) FROM "users"
47853
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:52:25 -0500
47854
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47855
+ 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"}
47856
+  (0.0ms) SAVEPOINT active_record_1
47857
+ 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]]
47858
+ 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"]]
47859
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47860
+  (0.1ms) SAVEPOINT active_record_1
47861
+ 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]]
47862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47863
+ Completed 200 OK in 67ms (Views: 0.2ms | ActiveRecord: 1.0ms | Allocations: 29079)
47864
+  (0.0ms) SELECT COUNT(*) FROM "users"
47865
+  (0.3ms) rollback transaction
47866
+  (1.5ms) SELECT sqlite_version(*)
47867
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
47868
+  (0.0ms) SELECT sqlite_version(*)
47869
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
47870
+  (0.1ms) begin transaction
47871
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:53:07 -0500
47872
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47873
+ 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"}
47874
+  (0.1ms) SAVEPOINT active_record_1
47875
+ 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]]
47876
+ 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"]]
47877
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47878
+  (0.1ms) SAVEPOINT active_record_1
47879
+ 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]]
47880
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47881
+ Completed 200 OK in 84ms (Views: 0.2ms | ActiveRecord: 1.3ms | Allocations: 29283)
47882
+  (0.1ms) SELECT COUNT(*) FROM "users"
47883
+  (0.1ms) SELECT COUNT(*) FROM "users"
47884
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:54:29 -0500
47885
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47886
+ 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"}
47887
+  (0.1ms) SAVEPOINT active_record_1
47888
+ 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]]
47889
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
47890
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2750)
47891
+  (0.1ms) SELECT COUNT(*) FROM "users"
47892
+  (0.3ms) rollback transaction
47893
+  (0.8ms) SELECT sqlite_version(*)
47894
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
47895
+  (0.0ms) SELECT sqlite_version(*)
47896
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
47897
+  (0.1ms) begin transaction
47898
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:54:39 -0500
47899
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47900
+ 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"}
47901
+  (0.0ms) SAVEPOINT active_record_1
47902
+ 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]]
47903
+ 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"]]
47904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47905
+  (0.1ms) SAVEPOINT active_record_1
47906
+ 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]]
47907
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47908
+ Completed 200 OK in 69ms (Views: 0.2ms | ActiveRecord: 1.1ms | Allocations: 29301)
47909
+  (0.1ms) SELECT COUNT(*) FROM "users"
47910
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:55:46 -0500
47911
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47912
+ 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"}
47913
+  (0.1ms) SAVEPOINT active_record_1
47914
+ 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]]
47915
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
47916
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2750)
47917
+  (0.1ms) SELECT COUNT(*) FROM "users"
47918
+  (0.3ms) rollback transaction
47919
+  (0.8ms) SELECT sqlite_version(*)
47920
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
47921
+  (0.0ms) SELECT sqlite_version(*)
47922
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
47923
+  (0.0ms) begin transaction
47924
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:55:53 -0500
47925
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47926
+ 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"}
47927
+  (0.0ms) SAVEPOINT active_record_1
47928
+ 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]]
47929
+ 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"]]
47930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47931
+  (0.1ms) SAVEPOINT active_record_1
47932
+ 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]]
47933
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47934
+ Completed 200 OK in 68ms (Views: 0.2ms | ActiveRecord: 1.1ms | Allocations: 29318)
47935
+  (0.1ms) SELECT COUNT(*) FROM "users"
47936
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:57:32 -0500
47937
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47938
+ 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"}
47939
+  (0.1ms) SAVEPOINT active_record_1
47940
+ 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]]
47941
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
47942
+ Completed 200 OK in 1350ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 13543)
47943
+  (0.0ms) SELECT COUNT(*) FROM "users"
47944
+  (0.2ms) rollback transaction
47945
+  (1.5ms) SELECT sqlite_version(*)
47946
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
47947
+  (0.0ms) SELECT sqlite_version(*)
47948
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
47949
+  (0.1ms) begin transaction
47950
+  (0.1ms) SELECT COUNT(*) FROM "users"
47951
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:57:42 -0500
47952
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47953
+ 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"}
47954
+  (0.1ms) SAVEPOINT active_record_1
47955
+ 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]]
47956
+ 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"]]
47957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47958
+  (0.1ms) SAVEPOINT active_record_1
47959
+ 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]]
47960
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47961
+ Completed 200 OK in 43187ms (Views: 0.2ms | ActiveRecord: 1.5ms | Allocations: 54038)
47962
+  (0.1ms) SELECT COUNT(*) FROM "users"
47963
+  (0.2ms) rollback transaction
47964
+  (1.5ms) SELECT sqlite_version(*)
47965
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
47966
+  (0.0ms) SELECT sqlite_version(*)
47967
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
47968
+  (0.1ms) begin transaction
47969
+  (0.1ms) SELECT COUNT(*) FROM "guests"
47970
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:58:40 -0500
47971
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47972
+ 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"}
47973
+  (0.1ms) SAVEPOINT active_record_1
47974
+ 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]]
47975
+ 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"]]
47976
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47977
+  (0.1ms) SAVEPOINT active_record_1
47978
+ 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]]
47979
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47980
+ Completed 200 OK in 3476ms (Views: 0.2ms | ActiveRecord: 1.4ms | Allocations: 133420)
47981
+  (0.1ms) SELECT COUNT(*) FROM "guests"
47982
+  (0.2ms) rollback transaction
47983
+  (1.0ms) SELECT sqlite_version(*)
47984
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
47985
+  (0.0ms) SELECT sqlite_version(*)
47986
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
47987
+  (0.1ms) begin transaction
47988
+  (0.1ms) SELECT COUNT(*) FROM "guests"
47989
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 21:58:59 -0500
47990
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
47991
+ 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"}
47992
+  (0.1ms) SAVEPOINT active_record_1
47993
+ 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]]
47994
+ 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"]]
47995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47996
+  (0.1ms) SAVEPOINT active_record_1
47997
+ 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]]
47998
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47999
+ Completed 200 OK in 73ms (Views: 0.2ms | ActiveRecord: 1.1ms | Allocations: 28234)
48000
+  (0.1ms) SELECT COUNT(*) FROM "guests"
48001
+  (0.3ms) rollback transaction
48002
+  (1.4ms) SELECT sqlite_version(*)
48003
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]]
48004
+  (0.1ms) SELECT sqlite_version(*)
48005
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
48006
+  (0.1ms) begin transaction
48007
+  (0.0ms) rollback transaction
48008
+  (0.0ms) begin transaction
48009
+  (0.1ms) SAVEPOINT active_record_1
48010
+ 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]]
48011
+ 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"]]
48012
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48013
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500
48014
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48015
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jeneva_auer@lehner.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
48016
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jeneva_auer@lehner.com"], ["LIMIT", 1]]
48017
+  (0.1ms) SAVEPOINT active_record_1
48018
+ 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]]
48019
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48020
+  (0.0ms) SAVEPOINT active_record_1
48021
+ 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]]
48022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48023
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48024
+ Completed 200 OK in 80ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 19229)
48025
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48026
+  (0.2ms) rollback transaction
48027
+  (0.0ms) begin transaction
48028
+  (0.0ms) SAVEPOINT active_record_1
48029
+ 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]]
48030
+ 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"]]
48031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48032
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500
48033
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48034
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"indira@litteltowne.net\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
48035
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "indira@litteltowne.net"], ["LIMIT", 1]]
48036
+ User Update All (0.1ms) UPDATE "users" SET "failed_attempts" = COALESCE("failed_attempts", 0) + ? WHERE "users"."id" = ? [["failed_attempts", 1], ["id", 1]]
48037
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48038
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 2042)
48039
+  (0.3ms) rollback transaction
48040
+  (0.0ms) begin transaction
48041
+  (0.0ms) SAVEPOINT active_record_1
48042
+ 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]]
48043
+ 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"]]
48044
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48045
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500
48046
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48047
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"wes_mraz@corwinnitzsche.biz\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
48048
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "wes_mraz@corwinnitzsche.biz"], ["LIMIT", 1]]
48049
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1363)
48050
+  (0.3ms) rollback transaction
48051
+  (0.1ms) begin transaction
48052
+  (0.1ms) SAVEPOINT active_record_1
48053
+ 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]]
48054
+ 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"]]
48055
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48056
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500
48057
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48058
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"jeffie@rathkling.io\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
48059
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jeffie@rathkling.io"], ["LIMIT", 1]]
48060
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1381)
48061
+  (0.4ms) rollback transaction
48062
+  (0.1ms) begin transaction
48063
+  (0.1ms) SAVEPOINT active_record_1
48064
+ 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]]
48065
+ 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]]
48066
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48067
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500
48068
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48069
+ Parameters: {"query"=>" mutation {\n userLogin(\n email: \"pat@tremblayquigley.com\",\n password: \"12345678\"\n ) {\n user { email name signInCount }\n }\n }\n"}
48070
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "pat@tremblayquigley.com"], ["LIMIT", 1]]
48071
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1359)
48072
+  (0.4ms) rollback transaction
48073
+  (0.1ms) begin transaction
48074
+  (0.1ms) SAVEPOINT active_record_1
48075
+ 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]]
48076
+ 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"]]
48077
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48078
+ Started POST "/api/v1/admin/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500
48079
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48080
+ Parameters: {"query"=>" mutation {\n adminLogin(\n email: \"landon_kshlerin@reichertgusikowski.com\",\n password: \"12345678\"\n ) {\n authenticable { email customField }\n }\n }\n"}
48081
+ Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT ? [["email", "landon_kshlerin@reichertgusikowski.com"], ["LIMIT", 1]]
48082
+  (0.1ms) SAVEPOINT active_record_1
48083
+ 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]]
48084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48085
+ Completed 200 OK in 62ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2404)
48086
+  (0.4ms) rollback transaction
48087
+  (0.0ms) begin transaction
48088
+  (0.1ms) SAVEPOINT active_record_1
48089
+ 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]]
48090
+ 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"]]
48091
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48092
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500
48093
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48094
+ Parameters: {"query"=>" mutation {\n guestLogin(\n email: \"arden@gleichner.name\",\n password: \"12345678\"\n ) {\n authenticable { email }\n }\n }\n"}
48095
+ Guest Load (0.2ms) SELECT "guests".* FROM "guests" WHERE "guests"."email" = ? LIMIT ? [["email", "arden@gleichner.name"], ["LIMIT", 1]]
48096
+  (0.1ms) SAVEPOINT active_record_1
48097
+ 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]]
48098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48099
+ Completed 200 OK in 58ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 2273)
48100
+  (0.3ms) rollback transaction
48101
+  (0.0ms) begin transaction
48102
+  (0.0ms) SAVEPOINT active_record_1
48103
+ 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]]
48104
+ 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"]]
48105
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48106
+  (0.1ms) SAVEPOINT active_record_1
48107
+ 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]]
48108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48109
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500
48110
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48111
+ Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"}
48112
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "raul@koelpinweinat.name"], ["LIMIT", 1]]
48113
+  (0.1ms) SAVEPOINT active_record_1
48114
+ 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]]
48115
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48116
+ Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 1896)
48117
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48118
+  (0.6ms) rollback transaction
48119
+  (0.1ms) begin transaction
48120
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500
48121
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48122
+ Parameters: {"query"=>" mutation {\n userLogout {\n authenticable { email }\n }\n }\n"}
48123
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 957)
48124
+  (0.1ms) SAVEPOINT active_record_1
48125
+ 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]]
48126
+ 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"]]
48127
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48128
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48129
+  (0.6ms) rollback transaction
48130
+  (0.1ms) begin transaction
48131
+  (0.1ms) SAVEPOINT active_record_1
48132
+ 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]]
48133
+ 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"]]
48134
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48135
+  (0.1ms) SAVEPOINT active_record_1
48136
+ 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]]
48137
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48138
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500
48139
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48140
+ Parameters: {"query"=>" mutation {\n adminLogout {\n authenticable { email }\n }\n }\n"}
48141
+ Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."uid" = ? LIMIT ? [["uid", "harland@lemke.biz"], ["LIMIT", 1]]
48142
+  (0.1ms) SAVEPOINT active_record_1
48143
+ 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]]
48144
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48145
+ Completed 200 OK in 49ms (Views: 0.1ms | ActiveRecord: 0.3ms | Allocations: 1825)
48146
+ Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48147
+  (0.6ms) rollback transaction
48148
+  (0.0ms) begin transaction
48149
+  (0.1ms) SAVEPOINT active_record_1
48150
+ 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]]
48151
+ 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"]]
48152
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48153
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500
48154
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48155
+ 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"}
48156
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "anneliese@saueremmerich.com"], ["provider", "email"], ["LIMIT", 1]]
48157
+ 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]]
48158
+  (0.0ms) SAVEPOINT active_record_1
48159
+ 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]]
48160
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48161
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb
48162
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/reset_password_instructions.html.erb (Duration: 1.7ms | Allocations: 1308)
48163
+ Devise::Mailer#reset_password_instructions: processed outbound mail in 111.6ms
48164
+ Delivered mail 5da92adfddbab_1e803fe85e02bfd0757f8@Marios-MacBook-Pro.local.mail (4.6ms)
48165
+ Date: Thu, 17 Oct 2019 22:00:47 -0500
48166
+ From: please-change-me-at-config-initializers-devise@example.com
48167
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
48168
+ To: anneliese@saueremmerich.com
48169
+ Message-ID: <5da92adfddbab_1e803fe85e02bfd0757f8@Marios-MacBook-Pro.local.mail>
48170
+ Subject: Reset password instructions
48171
+ Mime-Version: 1.0
48172
+ Content-Type: text/html;
48173
+ charset=UTF-8
48174
+ Content-Transfer-Encoding: 7bit
48175
+ email: anneliese@saueremmerich.com
48176
+ provider: email
48177
+ redirect-url: http://hackett.name/drema
48178
+ client-config: default
48179
+
48180
+ <p>Hello anneliese@saueremmerich.com!</p>
48181
+
48182
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.request_reset_link_msg">Request Reset Link Msg</span></p>
48183
+
48184
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=http%3A%2F%2Fhackett.name%2Fdrema&amp;variables%5Btoken%5D=PtQuhUkQyLzd3Jrvr2u7"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.password_change_link">Password Change Link</span></a></p>
48185
+
48186
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.ignore_mail_msg">Ignore Mail Msg</span></p>
48187
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.reset_password_instructions.no_changes_msg">No Changes Msg</span></p>
48188
+
48189
+ Completed 200 OK in 204ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 67764)
48190
+ 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
48191
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48192
+ Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userCheckPasswordToken(resetPasswordToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://hackett.name/drema", "token"=>"PtQuhUkQyLzd3Jrvr2u7"}}
48193
+ 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]]
48194
+  (0.0ms) SAVEPOINT active_record_1
48195
+ 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]]
48196
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48197
+ 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
48198
+ Completed 302 Found in 44ms (ActiveRecord: 0.2ms | Allocations: 2147)
48199
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48200
+  (0.7ms) rollback transaction
48201
+  (0.1ms) begin transaction
48202
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500
48203
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48204
+ 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"}
48205
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? LIMIT ? [["uid", "nothere@gmail.com"], ["provider", "email"], ["LIMIT", 1]]
48206
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1205)
48207
+  (0.0ms) rollback transaction
48208
+  (0.0ms) begin transaction
48209
+  (0.1ms) SELECT COUNT(*) FROM "users"
48210
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500
48211
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48212
+ 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"}
48213
+  (0.1ms) SAVEPOINT active_record_1
48214
+ 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]]
48215
+ 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"]]
48216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48217
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb
48218
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.9ms | Allocations: 581)
48219
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 2.6ms
48220
+ Delivered mail 5da92adfee062_1e803fe85e02bfd075820@Marios-MacBook-Pro.local.mail (1.2ms)
48221
+ Date: Thu, 17 Oct 2019 22:00:47 -0500
48222
+ From: please-change-me-at-config-initializers-devise@example.com
48223
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
48224
+ To: ayana.waelchi@kubschmitt.io
48225
+ Message-ID: <5da92adfee062_1e803fe85e02bfd075820@Marios-MacBook-Pro.local.mail>
48226
+ Subject: Confirmation instructions
48227
+ Mime-Version: 1.0
48228
+ Content-Type: text/html;
48229
+ charset=UTF-8
48230
+ Content-Transfer-Encoding: 7bit
48231
+ redirect-url: http://veumreynolds.co/lucius_frami
48232
+ client-config: default
48233
+
48234
+ <p>Welcome ayana.waelchi@kubschmitt.io!</p>
48235
+
48236
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_link_msg">Confirm Link Msg</span> </p>
48237
+
48238
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=http%3A%2F%2Fveumreynolds.co%2Flucius_frami&amp;variables%5Btoken%5D=jsS12FEtdmZ2B9ExXw48"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_account_link">Confirm Account Link</span></a></p>
48239
+
48240
+ Completed 200 OK in 10ms (Views: 0.1ms | ActiveRecord: 0.6ms | Allocations: 5454)
48241
+  (0.1ms) SELECT COUNT(*) FROM "users"
48242
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]]
48243
+ 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
48244
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48245
+ Parameters: {"query"=>"query($token:String!,$redirectUrl:String!){userConfirmAccount(confirmationToken:$token,redirectUrl:$redirectUrl){email}}", "variables"=>{"redirectUrl"=>"http://veumreynolds.co/lucius_frami", "token"=>"jsS12FEtdmZ2B9ExXw48"}}
48246
+ User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "jsS12FEtdmZ2B9ExXw48"], ["LIMIT", 1]]
48247
+  (0.1ms) SAVEPOINT active_record_1
48248
+ 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]]
48249
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48250
+ Redirected to http://veumreynolds.co/lucius_frami?account_confirmation_success=true
48251
+ Completed 302 Found in 10ms (ActiveRecord: 1.6ms | Allocations: 2180)
48252
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48253
+  (0.3ms) rollback transaction
48254
+  (0.0ms) begin transaction
48255
+  (0.1ms) SELECT COUNT(*) FROM "users"
48256
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:47 -0500
48257
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48258
+ 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"}
48259
+  (0.1ms) SAVEPOINT active_record_1
48260
+ User Exists? (0.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND "users"."provider" = ? LIMIT ? [["email", ""], ["provider", "email"], ["LIMIT", 1]]
48261
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
48262
+ Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.8ms | Allocations: 2710)
48263
+  (0.1ms) SELECT COUNT(*) FROM "users"
48264
+  (0.1ms) rollback transaction
48265
+  (0.1ms) begin transaction
48266
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500
48267
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48268
+ 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"}
48269
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 818)
48270
+  (0.1ms) rollback transaction
48271
+  (0.1ms) begin transaction
48272
+  (0.1ms) SELECT COUNT(*) FROM "guests"
48273
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500
48274
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48275
+ 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"}
48276
+  (0.1ms) SAVEPOINT active_record_1
48277
+ 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]]
48278
+ 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"]]
48279
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48280
+  (0.1ms) SAVEPOINT active_record_1
48281
+ 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]]
48282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48283
+ Completed 200 OK in 68ms (Views: 0.6ms | ActiveRecord: 1.0ms | Allocations: 2629)
48284
+  (0.1ms) SELECT COUNT(*) FROM "guests"
48285
+  (0.5ms) rollback transaction
48286
+  (0.0ms) begin transaction
48287
+  (0.1ms) SAVEPOINT active_record_1
48288
+ 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]]
48289
+ 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"]]
48290
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48291
+  (0.1ms) SAVEPOINT active_record_1
48292
+ 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]]
48293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48294
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500
48295
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48296
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
48297
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "julius@botsforddooley.co"], ["LIMIT", 1]]
48298
+  (0.1ms) SAVEPOINT active_record_1
48299
+ 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]]
48300
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48301
+  (0.0ms) SAVEPOINT active_record_1
48302
+ 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]]
48303
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48304
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48305
+ Completed 200 OK in 52ms (Views: 0.1ms | ActiveRecord: 0.4ms | Allocations: 2885)
48306
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48307
+  (0.6ms) rollback transaction
48308
+  (0.1ms) begin transaction
48309
+  (0.1ms) SAVEPOINT active_record_1
48310
+ 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]]
48311
+ 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"]]
48312
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48313
+  (0.1ms) SAVEPOINT active_record_1
48314
+ 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]]
48315
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48316
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500
48317
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48318
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
48319
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "genaro@marquardt.name"], ["LIMIT", 1]]
48320
+  (0.1ms) SAVEPOINT active_record_1
48321
+ 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]]
48322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48323
+  (0.0ms) SAVEPOINT active_record_1
48324
+ 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]]
48325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48326
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48327
+ Completed 200 OK in 51ms (Views: 0.2ms | ActiveRecord: 0.4ms | Allocations: 2874)
48328
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48329
+  (0.6ms) rollback transaction
48330
+  (0.1ms) begin transaction
48331
+  (0.0ms) SAVEPOINT active_record_1
48332
+ 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]]
48333
+ 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"]]
48334
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48335
+  (0.1ms) SAVEPOINT active_record_1
48336
+ 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]]
48337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48338
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500
48339
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48340
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"\"\n ) {\n authenticable { email }\n }\n }\n"}
48341
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "tristan_skiles@erdman.info"], ["LIMIT", 1]]
48342
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48343
+ Completed 200 OK in 50ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2360)
48344
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48345
+  (0.6ms) rollback transaction
48346
+  (0.1ms) begin transaction
48347
+  (0.0ms) SAVEPOINT active_record_1
48348
+ 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]]
48349
+ 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"]]
48350
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48351
+  (0.1ms) SAVEPOINT active_record_1
48352
+ 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]]
48353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48354
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500
48355
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48356
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
48357
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "dalton@batz.name"], ["LIMIT", 1]]
48358
+  (0.1ms) SAVEPOINT active_record_1
48359
+ 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]]
48360
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48361
+  (0.0ms) SAVEPOINT active_record_1
48362
+ 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]]
48363
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48364
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48365
+ Completed 200 OK in 50ms (Views: 0.3ms | ActiveRecord: 0.4ms | Allocations: 2874)
48366
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48367
+  (0.6ms) rollback transaction
48368
+  (0.1ms) begin transaction
48369
+  (0.0ms) SAVEPOINT active_record_1
48370
+ 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]]
48371
+ 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"]]
48372
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48373
+  (0.1ms) SAVEPOINT active_record_1
48374
+ 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]]
48375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48376
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500
48377
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48378
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
48379
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "sherrill@littlesenger.biz"], ["LIMIT", 1]]
48380
+  (0.1ms) SAVEPOINT active_record_1
48381
+ 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]]
48382
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48383
+  (0.0ms) SAVEPOINT active_record_1
48384
+ 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]]
48385
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48386
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48387
+ Completed 200 OK in 51ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2877)
48388
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48389
+  (0.6ms) rollback transaction
48390
+  (0.1ms) begin transaction
48391
+  (0.0ms) SAVEPOINT active_record_1
48392
+ 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]]
48393
+ 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"]]
48394
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48395
+  (0.1ms) SAVEPOINT active_record_1
48396
+ 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]]
48397
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48398
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500
48399
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48400
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
48401
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "loria@rempelcummerata.org"], ["LIMIT", 1]]
48402
+  (0.0ms) SAVEPOINT active_record_1
48403
+ 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]]
48404
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48405
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48406
+ Completed 200 OK in 50ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 2643)
48407
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48408
+  (0.6ms) rollback transaction
48409
+  (0.0ms) begin transaction
48410
+  (0.0ms) SAVEPOINT active_record_1
48411
+ 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]]
48412
+ 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"]]
48413
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48414
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:48 -0500
48415
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48416
+ Parameters: {"query"=>" mutation {\n userUpdatePassword(\n password: \"safePassw0rd!\",\n passwordConfirmation: \"safePassw0rd!\",\n currentPassword: \"current_password\"\n ) {\n authenticable { email }\n }\n }\n"}
48417
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 1164)
48418
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48419
+  (0.3ms) rollback transaction
48420
+  (0.1ms) begin transaction
48421
+  (0.1ms) SAVEPOINT active_record_1
48422
+ 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]]
48423
+ 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"]]
48424
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48425
+ 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]]
48426
+  (0.1ms) SAVEPOINT active_record_1
48427
+ 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]]
48428
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48429
+ 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
48430
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48431
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"xskS2ZVU2TivUP79ic5m\",\n redirectUrl: \"\"\n ) {\n email\n }\n }\n"}
48432
+ 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]]
48433
+  (0.1ms) SAVEPOINT active_record_1
48434
+ 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]]
48435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48436
+  (0.1ms) SAVEPOINT active_record_1
48437
+ 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]]
48438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48439
+ Completed 200 OK in 103ms (Views: 0.1ms | ActiveRecord: 0.5ms | Allocations: 2658)
48440
+  (0.4ms) rollback transaction
48441
+  (0.0ms) begin transaction
48442
+  (0.0ms) SAVEPOINT active_record_1
48443
+ 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]]
48444
+ 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"]]
48445
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48446
+ 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]]
48447
+  (0.0ms) SAVEPOINT active_record_1
48448
+ 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]]
48449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48450
+ 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
48451
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48452
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"GyWG41YJtu-XvS_KAFzK\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
48453
+ 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]]
48454
+  (0.1ms) SAVEPOINT active_record_1
48455
+ 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]]
48456
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48457
+ 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
48458
+ Completed 302 Found in 50ms (ActiveRecord: 0.3ms | Allocations: 1916)
48459
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48460
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48461
+  (0.6ms) rollback transaction
48462
+  (0.1ms) begin transaction
48463
+  (0.0ms) SAVEPOINT active_record_1
48464
+ 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]]
48465
+ 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"]]
48466
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48467
+ 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]]
48468
+  (0.0ms) SAVEPOINT active_record_1
48469
+ 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]]
48470
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48471
+ 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
48472
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48473
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"K1cg7xQAhuW6zyUSqgf6\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
48474
+ 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]]
48475
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1266)
48476
+  (0.3ms) rollback transaction
48477
+  (0.0ms) begin transaction
48478
+  (0.0ms) SAVEPOINT active_record_1
48479
+ 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]]
48480
+ 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"]]
48481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48482
+ 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]]
48483
+  (0.1ms) SAVEPOINT active_record_1
48484
+ 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]]
48485
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48486
+ 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
48487
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48488
+ Parameters: {"query"=>" query {\n userCheckPasswordToken(\n resetPasswordToken: \"xGEge-BnCBeesAvQZncpinvalid\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
48489
+ 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]]
48490
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1224)
48491
+  (0.3ms) rollback transaction
48492
+  (0.1ms) begin transaction
48493
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:49 -0500
48494
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48495
+ Parameters: {"query"=>" query {\n adminCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
48496
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)
48497
+  (0.1ms) rollback transaction
48498
+  (0.1ms) begin transaction
48499
+ Started POST "/api/v1/graphql_auth" for 127.0.0.1 at 2019-10-17 22:00:49 -0500
48500
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48501
+ Parameters: {"query"=>" query {\n guestCheckPasswordToken(\n resetPasswordToken: \"not_important\",\n redirectUrl: \"https://google.com\"\n ) {\n email\n }\n }\n"}
48502
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 722)
48503
+  (0.1ms) rollback transaction
48504
+  (0.1ms) begin transaction
48505
+  (0.1ms) SAVEPOINT active_record_1
48506
+ 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]]
48507
+ 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"]]
48508
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48509
+ Rendering /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb
48510
+ Rendered /Users/mcelicalderon/dev/graphql_devise/app/views/graphql_devise/mailer/confirmation_instructions.html.erb (Duration: 0.6ms | Allocations: 408)
48511
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 1.7ms
48512
+ Delivered mail 5da92ae14778_1e803fe85e02bfd0759b9@Marios-MacBook-Pro.local.mail (1.7ms)
48513
+ Date: Thu, 17 Oct 2019 22:00:49 -0500
48514
+ From: please-change-me-at-config-initializers-devise@example.com
48515
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
48516
+ To: ashley@koeppshanahan.co
48517
+ Message-ID: <5da92ae14778_1e803fe85e02bfd0759b9@Marios-MacBook-Pro.local.mail>
48518
+ Subject: Confirmation instructions
48519
+ Mime-Version: 1.0
48520
+ Content-Type: text/html;
48521
+ charset=UTF-8
48522
+ Content-Transfer-Encoding: 7bit
48523
+ client-config: default
48524
+ redirect-url:
48525
+
48526
+ <p>Welcome ashley@koeppshanahan.co!</p>
48527
+
48528
+ <p><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_link_msg">Confirm Link Msg</span> </p>
48529
+
48530
+ <p><a href="http://localhost:3000/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&amp;variables%5BredirectUrl%5D=&amp;variables%5Btoken%5D=Dz1Xrwmxq39qJzgCE7ye"><span class="translation_missing" title="translation missing: en.graphql_devise.mailer.confirmation_instructions.confirm_account_link">Confirm Account Link</span></a></p>
48531
+
48532
+ 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
48533
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48534
+ Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"Dz1Xrwmxq39qJzgCE7ye\"\n redirectUrl: \"http://schmidtnicolas.com/agustin\"\n ) {\n email\n name\n }\n }\n"}
48535
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "Dz1Xrwmxq39qJzgCE7ye"], ["LIMIT", 1]]
48536
+  (0.1ms) SAVEPOINT active_record_1
48537
+ 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]]
48538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48539
+ Redirected to http://schmidtnicolas.com/agustin?account_confirmation_success=true
48540
+ Completed 302 Found in 4ms (ActiveRecord: 0.3ms | Allocations: 1789)
48541
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48542
+  (0.3ms) rollback transaction
48543
+  (0.1ms) begin transaction
48544
+  (0.1ms) SAVEPOINT active_record_1
48545
+ 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]]
48546
+ 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"]]
48547
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48548
+ 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
48549
+ Processing by GraphqlDevise::GraphqlController#auth as HTML
48550
+ Parameters: {"query"=>" {\n userConfirmAccount(\n confirmationToken: \"qtt8LHMgvEw2X9DzLaie-invalid\"\n redirectUrl: \"http://fisher.co/mayme.cartwright\"\n ) {\n email\n name\n }\n }\n"}
48551
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "qtt8LHMgvEw2X9DzLaie-invalid"], ["LIMIT", 1]]
48552
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT ? [["confirmation_token", "c29a49c59d9dbd6fe9334dfd69ef7d2740c532d6c9cf834eab871e1b043ef0be"], ["LIMIT", 1]]
48553
+ Completed 200 OK in 91ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 2009)
48554
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48555
+  (0.6ms) rollback transaction
48556
+  (0.1ms) begin transaction
48557
+  (0.1ms) SAVEPOINT active_record_1
48558
+ 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]]
48559
+ 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"]]
48560
+  (0.1ms) RELEASE SAVEPOINT active_record_1
48561
+  (0.1ms) SAVEPOINT active_record_1
48562
+ 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]]
48563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48564
+ Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-17 22:00:49 -0500
48565
+ Processing by Api::V1::GraphqlController#graphql as HTML
48566
+ Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"}
48567
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT ? [["uid", "alec@bayer.com"], ["LIMIT", 1]]
48568
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48569
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
48570
+ Completed 200 OK in 54ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 9749)
48571
+  (0.6ms) rollback transaction
48572
+  (0.1ms) begin transaction
48573
+  (0.0ms) SAVEPOINT active_record_1
48574
+ 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]]
48575
+ 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"]]
48576
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48577
+ Started POST "/api/v1/graphql" for 127.0.0.1 at 2019-10-17 22:00:49 -0500
48578
+ Processing by Api::V1::GraphqlController#graphql as HTML
48579
+ Parameters: {"query"=>" query {\n user(\n id: 1\n ) {\n id\n email\n }\n }\n"}
48580
+ Filter chain halted as :authenticate_user! rendered or redirected
48581
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 168)
48582
+  (0.3ms) rollback transaction