fieldQualifier indicates that the qualification is a well-defined field with a known field type. When the field type is known this can be used to improve the speed and efficiency of field resolution.
| 1172 | // field type. When the field type is known this can be used to improve the speed and |
| 1173 | // efficiency of field resolution. |
| 1174 | type fieldQualifier struct { |
| 1175 | id int64 |
| 1176 | Name string |
| 1177 | FieldType *types.FieldType |
| 1178 | adapter types.Adapter |
| 1179 | optional bool |
| 1180 | } |
| 1181 | |
| 1182 | // ID is an implementation of the Qualifier interface method. |
| 1183 | func (q *fieldQualifier) ID() int64 { |
nothing calls this directly
no outgoing calls
no test coverage detected