We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a83e3e6 commit 1b60399Copy full SHA for 1b60399
1 file changed
relationship.go
@@ -51,6 +51,13 @@ func (client *Client) ListRelationshipDefinitions(variables *PayloadVariables) (
51
}
52
if variables == nil {
53
variables = client.InitialPageVariablesPointer()
54
+ } else {
55
+ if (*variables)["first"] == nil {
56
+ (*variables)["first"] = 100
57
+ }
58
+ if (*variables)["after"] == nil {
59
+ (*variables)["after"] = ""
60
61
62
if (*variables)["componentType"] == nil {
63
(*variables)["componentType"] = &IdentifierInput{}
0 commit comments