This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [ | |
# {rabbit, | |
# [## | |
## Network Connectivity | |
## ==================== | |
## | |
## By default, RabbitMQ will listen on all interfaces, using | |
## the standard (reserved) AMQP port. | |
## | |
## {tcp_listeners, [5672]}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyObjectType : ObjectGraphType<MyObject> | |
{ | |
public MyObjectType() | |
{ | |
Field(t => t.Code); | |
} | |
public override FieldType AddField(FieldType fieldType) | |
{ | |
//var type_ = fieldType.Resolver.GetType().GetTypeInfo().GenericTypeArguments[0]; | |
Type type = fieldType.Resolver.GetType().GetGenericArguments()[0]; |