Logo
NeoArc Studio

Getting Started with gRPC

Create a gRPC API projection with services and RPC methods. Reference Protocol Buffer messages from a shared schema projection.

gRPC APIs in NeoArc Studio are authored as API projections with apiType: 'grpc'. The projection captures the proto package, server and channel configuration, auth, and a list of services and methods. Request and response messages live in a schema projection as proto-flagged entities (isProtoMessage: true) so multiple gRPC APIs can share them.

Create a gRPC projection

Import an existing proto file

Already have .proto files? Use the Import Proto action from the gRPC API home. NeoArc parses the proto IDL and creates service, method, and schema-projection entries automatically. Multi-file imports resolve cross-file type references. The imported schema projection lands next to the gRPC projection and is linked as a source.

Key concepts