cayleygraph/cayley · error

Could not parse PropertyPath: %v

Error message

Could not parse PropertyPath: %v

What it means

Error "Could not parse PropertyPath: %v" thrown in cayleygraph/cayley.

Source

Thrown at query/linkedql/errors.go:10

package linkedql

import "fmt"

func formatMultiError(errors []error) error {
	joinedErr := ""
	for _, err := range errors {
		joinedErr += "; " + err.Error()
	}
	return fmt.Errorf("Could not parse PropertyPath: %v", joinedErr)
}

View on GitHub (pinned to 81dcd7d73e)

When it happens

Trigger: Thrown at query/linkedql/errors.go:10 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of cayleygraph/cayley@81dcd7d73e (2026-09-06). Data as JSON: /api/errors/484f2de7adc51d89. Report an issue: GitHub.