Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

fix(property): No visibility for extension #115

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ public Map<String, Object> getVariables() {
public List<Class> getScalars() {
return scalars;
}

public Property getProperty() {
return property;
}

public void setRequestMethod(GraphQLTemplate.GraphQLMethod requestMethod) {
this.requestMethod = requestMethod;
Expand Down
2 changes: 1 addition & 1 deletion nodes/src/main/java/io/aexp/nodes/graphql/Property.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import java.util.List;
import java.util.Map;

final class Property {
public final class Property {

private String resourceName;
private GraphQLTemplate.GraphQLMethod method;
Expand Down