diff --git a/docs/content/reference/field-collection.md b/docs/content/reference/field-collection.md index 6b14efe9c7..a45bddc147 100644 --- a/docs/content/reference/field-collection.md +++ b/docs/content/reference/field-collection.md @@ -112,7 +112,7 @@ func GetPreloadString(prefix, name string) string { So if we call these helpers in our resolver: ```golang func (r *queryResolver) FlowBlocks(ctx context.Context) ([]*FlowBlock, error) { - preloads := getPreloads(ctx) + preloads := GetPreloads(ctx) ``` it will result in the following string slice: ```