(b []byte)
| 210 | } |
| 211 | |
| 212 | func remoteCursorValue(b []byte) string { |
| 213 | var wrapper struct { |
| 214 | Cursor string `json:"cursor"` |
| 215 | } |
| 216 | if err := json.Unmarshal(b, &wrapper); err != nil { |
| 217 | return "" |
| 218 | } |
| 219 | return wrapper.Cursor |
| 220 | } |
| 221 | |
| 222 | func mergeRemoteRootFields(data []byte, extra map[string]json.RawMessage) ([]byte, error) { |
| 223 | var m map[string]json.RawMessage |