Skip to content

Commit

Permalink
0.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
moonpart committed Apr 29, 2021
1 parent 01cf7c4 commit 86db5fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions AmondoSDK/AmondoSDK/Managers/Data/API.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1100,7 +1100,7 @@ public final class GetTilesQuery: GraphQLQuery {
public let operationDefinition: String =
"""
query GetTiles($imprintId: ID!) {
tiles(imprintId: $imprintId) {
tiles(imprintId: $imprintId, where: {deleted: false}) {
__typename
id
username
Expand Down Expand Up @@ -1144,7 +1144,7 @@ public final class GetTilesQuery: GraphQLQuery {

public let operationName: String = "GetTiles"

public let operationIdentifier: String? = "df915959f641e964a06f612c9cbca498ba72526d5aa5c9fe22e9ede48f5627b1"
public let operationIdentifier: String? = "9ad1b26969102dff936f6ad2a71ff4d6e4de14d544374324e0340e57de701473"

public var imprintId: GraphQLID

Expand All @@ -1161,7 +1161,7 @@ public final class GetTilesQuery: GraphQLQuery {

public static var selections: [GraphQLSelection] {
return [
GraphQLField("tiles", arguments: ["imprintId": GraphQLVariable("imprintId")], type: .nonNull(.list(.nonNull(.object(Tile.selections))))),
GraphQLField("tiles", arguments: ["imprintId": GraphQLVariable("imprintId"), "where": ["deleted": false]], type: .nonNull(.list(.nonNull(.object(Tile.selections))))),
]
}

Expand Down
2 changes: 1 addition & 1 deletion AmondoSDK/AmondoSDK/Managers/Data/GetTiles.graphql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
query GetTiles($imprintId: ID!) {
tiles(imprintId: $imprintId){
tiles(imprintId: $imprintId, where:{deleted:false}){
id
username
url
Expand Down

0 comments on commit 86db5fe

Please sign in to comment.