You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: kobby-gradle-plugin/src/test/resources/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/build.gradle.kts.txt
Copy file name to clipboardExpand all lines: kobby-gradle-plugin/src/test/resources/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/expected/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/kobby/kotlin/adapter/ktor/CountryCompositeKtorAdapter.kt.txt
Copy file name to clipboardExpand all lines: kobby-gradle-plugin/src/test/resources/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/expected/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/kobby/kotlin/adapter/ktor/CountrySimpleKtorAdapter.kt.txt
Copy file name to clipboardExpand all lines: kobby-gradle-plugin/src/test/resources/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/expected/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/kobby/kotlin/country.kt.txt
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -130,16 +130,14 @@ public fun interface CountryReceiver<out T> {
130
130
131
131
public interface CountryResponse {
132
132
/**
133
-
* GraphQL response errors access function generated for adapters with extended API. To enable
134
-
* GraphQL error propagation to the entity layer, set Kobby configuration property
135
-
* `adapter.throwException` to `false`.
133
+
* GraphQL response errors access function generated for adapters with extended API.
136
134
*/
137
-
public fun __errors(): List<CountryError>
135
+
public fun myErrors(): List<CountryError>
138
136
139
137
/**
140
138
* GraphQL response extensions access function generated for adapters with extended API.
Copy file name to clipboardExpand all lines: kobby-gradle-plugin/src/test/resources/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/expected/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/kobby/kotlin/entity/Mutation.kt.txt
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -30,16 +30,14 @@ public interface Mutation : CountryResponse {
30
30
public val createCountry: Country
31
31
32
32
/**
33
-
* GraphQL response errors access function generated for adapters with extended API. To enable
34
-
* GraphQL error propagation to the entity layer, set Kobby configuration property
35
-
* `adapter.throwException` to `false`.
33
+
* GraphQL response errors access function generated for adapters with extended API.
36
34
*/
37
-
override fun __errors(): List<CountryError>
35
+
override fun myErrors(): List<CountryError>
38
36
39
37
/**
40
38
* GraphQL response extensions access function generated for adapters with extended API.
Copy file name to clipboardExpand all lines: kobby-gradle-plugin/src/test/resources/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/expected/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/kobby/kotlin/entity/Query.kt.txt
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -30,16 +30,14 @@ public interface Query : CountryResponse {
30
30
public val countries: List<Country>
31
31
32
32
/**
33
-
* GraphQL response errors access function generated for adapters with extended API. To enable
34
-
* GraphQL error propagation to the entity layer, set Kobby configuration property
35
-
* `adapter.throwException` to `false`.
33
+
* GraphQL response errors access function generated for adapters with extended API.
36
34
*/
37
-
override fun __errors(): List<CountryError>
35
+
override fun myErrors(): List<CountryError>
38
36
39
37
/**
40
38
* GraphQL response extensions access function generated for adapters with extended API.
Copy file name to clipboardExpand all lines: kobby-gradle-plugin/src/test/resources/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/expected/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/kobby/kotlin/entity/Subscription.kt.txt
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -30,16 +30,14 @@ public interface Subscription : CountryResponse {
30
30
public val countryCreated: Country
31
31
32
32
/**
33
-
* GraphQL response errors access function generated for adapters with extended API. To enable
34
-
* GraphQL error propagation to the entity layer, set Kobby configuration property
35
-
* `adapter.throwException` to `false`.
33
+
* GraphQL response errors access function generated for adapters with extended API.
36
34
*/
37
-
override fun __errors(): List<CountryError>
35
+
override fun myErrors(): List<CountryError>
38
36
39
37
/**
40
38
* GraphQL response extensions access function generated for adapters with extended API.
Copy file name to clipboardExpand all lines: kobby-gradle-plugin/src/test/resources/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/expected/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/kobby/kotlin/entity/impl/MutationImpl.kt.txt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -70,9 +70,9 @@ internal class MutationImpl(
70
70
append(')')
71
71
}
72
72
73
-
override fun __errors(): List<CountryError> = __innerErrors
73
+
override fun myErrors(): List<CountryError> = __innerErrors
74
74
75
-
override fun __extensions(): Map<String, Any?> = __innerExtensions
75
+
override fun myExtensions(): Map<String, Any?> = __innerExtensions
76
76
77
77
override fun __context(): CountryContext = __innerContext
Copy file name to clipboardExpand all lines: kobby-gradle-plugin/src/test/resources/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/expected/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/kobby/kotlin/entity/impl/QueryImpl.kt.txt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -71,9 +71,9 @@ internal class QueryImpl(
71
71
append(')')
72
72
}
73
73
74
-
override fun __errors(): List<CountryError> = __innerErrors
74
+
override fun myErrors(): List<CountryError> = __innerErrors
75
75
76
-
override fun __extensions(): Map<String, Any?> = __innerExtensions
76
+
override fun myExtensions(): Map<String, Any?> = __innerExtensions
77
77
78
78
override fun __context(): CountryContext = __innerContext
Copy file name to clipboardExpand all lines: kobby-gradle-plugin/src/test/resources/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/expected/io/github/ermadmi78/kobby/testcases/adapter_throw_exception/kobby/kotlin/entity/impl/SubscriptionImpl.kt.txt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -69,9 +69,9 @@ internal class SubscriptionImpl(
69
69
append(')')
70
70
}
71
71
72
-
override fun __errors(): List<CountryError> = __innerErrors
72
+
override fun myErrors(): List<CountryError> = __innerErrors
73
73
74
-
override fun __extensions(): Map<String, Any?> = __innerExtensions
74
+
override fun myExtensions(): Map<String, Any?> = __innerExtensions
75
75
76
76
override fun __context(): CountryContext = __innerContext
0 commit comments