Pablo Scandalo
02/08/2019, 9:29 PMtype Audit {
createDate: String!
}
type ServiceClient {
id: ID!
userName: String!
password: String!
auditInfo: Audit --> this property disappear
}
But when I run the graphqlgen command I have the next result:
export interface ServiceClient {
id: string
userName: string
password: string
}
export interface Audit {
createDate: string
}
How you can see, the interface ServiceClient lost the auditInfo property and I don't know why.
I was reading the documentation and I don´t know why It has this behavior.
Can you help me?
Thanks you very much!Harshit
02/09/2019, 2:48 PM