質問編集履歴
2
見やすく修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -133,6 +133,9 @@
|
|
133
133
|
end
|
134
134
|
end
|
135
135
|
end
|
136
|
+
|
137
|
+
|
138
|
+
auth-api/app/graphql/types/business_type.rb
|
136
139
|
module Types
|
137
140
|
class BusinessType < Types::BaseObject
|
138
141
|
key fields: 'id'
|
1
見やすく修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
|
16
16
|
### 発生している問題・分からないこと
|
17
|
-
```
|
17
|
+
```ruby
|
18
18
|
auth-api/app/graphql/types/user_type.rb
|
19
19
|
module Types
|
20
20
|
class UserType < Types::BaseObject
|
@@ -110,6 +110,10 @@
|
|
110
110
|
[]
|
111
111
|
end
|
112
112
|
end
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
|
113
117
|
auth-api/app/graphql/types/user_business_relation_type.rb
|
114
118
|
module Types
|
115
119
|
class UserBusinessRelationType < Types::BaseObject
|
@@ -149,6 +153,8 @@
|
|
149
153
|
end
|
150
154
|
```
|
151
155
|
|
156
|
+
|
157
|
+
|
152
158
|
```ruby
|
153
159
|
business-manage-api/app/graphql/types/business_type.rb
|
154
160
|
# business-api の BusinessType
|
@@ -169,6 +175,9 @@
|
|
169
175
|
field :updated_at, GraphQL::Types::ISO8601DateTime, null: false
|
170
176
|
end
|
171
177
|
end
|
178
|
+
|
179
|
+
|
180
|
+
|
172
181
|
business-manage-api/app/graphql/types/user_business_relation_type.rb
|
173
182
|
module Types
|
174
183
|
class UserBusinessRelationType < Types::BaseObject
|
@@ -186,6 +195,9 @@
|
|
186
195
|
end
|
187
196
|
end
|
188
197
|
end
|
198
|
+
|
199
|
+
|
200
|
+
|
189
201
|
/Users/masatakakitano/Desktop/cloud-ver2/business-manage-api/app/graphql/types/user_type.rb
|
190
202
|
module Types
|
191
203
|
class UserType < Types::BaseObject
|